]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge pull request #3470 from rabuzarus/201705016_-_fix_doxyfile
[friendica.git] / view / theme / frio / css / style.css
1 /*
2 To change this license header, choose License Headers in Project Properties.
3 To change this template file, choose Tools | Templates
4 and open the template in the editor.
5 */
6 /*
7     Created on : 17.02.2016, 23:55:45
8     Author     : rabuzarus
9 */
10
11 /* Imports */
12 /*@import url("frameworks/bootstrap/css/bootstrap.min.css");
13 @import url("frameworks/bootstrap/css/bootstrap-theme.min.css");
14 @import url("frameworks/font-awesome/css/font-awesome.min.css");
15 @import url("frameworks/jasny/css/jasny-bootstrap.min.css");
16 @import url("frameworks/bootstrap-select/css/bootstrap-select.min.css");
17 @import url("frameworks/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css");
18 @import url("frameworks/ekko-lightbox/ekko-lightbox.min.css");
19 @import url("frameworks/justifiedGallery/justifiedGallery.min.css");
20 @import url("frameworks/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css");
21 @import url("font/open_sans/open-sans.css");
22 @import url("css/hovercard.css");*/
23
24
25 body {
26     padding-top: 110px;
27     background-color: $bgcolor;
28     background-image: url("$background_image");
29     background-size: $background_size_img;
30     background-attachment: fixed;
31     color: #777;
32     /*color: #555;*/
33     font-family: 'Open Sans',sans-serif;
34 }
35 body a {
36     /*color: #555;*/
37     /*color: #6fdbe8;*/
38     color: $link_color;
39     text-decoration: none;
40 }
41 /* Anchors incorrectly display with a fixed top menu. This global rule offsets all
42  * anchors so that accessing them with a # link will actually scroll the associated
43  * content in the visible part of the page.
44  *
45  * anchor.top should be the opposite of body.padding-top
46  */
47 body a[name]:not([href]) {
48     display: block;
49     position: relative;
50     top: -110px;
51     visibility: hidden;
52 }
53
54 body a:hover, .btn-link:hover,
55 body a:focus, .btn-link:focus,
56 body a:active, .btn-link:active,
57 body a.active, .btn-link.active {
58     /*color: #59d6e4;*/
59     color: $link_hover_color;
60     text-decoration: none;
61     outline: none;
62 }
63
64 .wall-item-container a:hover {
65     text-decoration: underline;
66 }
67
68 hr {
69     margin-top: 10px;
70     margin-bottom: 10px;
71 }
72 aside hr,
73 section hr {
74     border-color: rgba(238, 238, 238, $contentbg_transp);
75 }
76 iframe, img {
77     max-width: 100%;
78 }
79 blockquote {
80     font-size: inherit;
81 }
82 .clear {
83     clear: both;
84 }
85 .no-padding {
86     padding: 0;
87 }
88 .fakelink {
89     cursor: pointer;
90 }
91 .hidden {
92     display: none !important;
93 }
94 .minimize {
95     max-height: 0px !important;
96     overflow: hidden !important;
97 }
98 code {
99     white-space: pre-wrap;
100 }
101 .help-content-wrapper code, .help-aside-wrapper code {display: inline}
102
103 /*
104 * standard page elements
105 */
106 #back-to-top {
107     display: none;
108     cursor: pointer;
109     color: white;
110     position: fixed;
111     z-index: 49;
112     right: 20px;
113     bottom: 20px;
114     opacity: 1;
115     font-size: 2.9em;
116     padding: 0 12px 0 12px;
117     border-radius: 10px;
118     background-color: #aaa;
119     line-height: 1.5;
120 }
121
122 #item-delete-selected {
123     cursor: pointer;
124     color: white;
125     position: fixed;
126     z-index: 49;
127     right: 20px;
128     top: 100px;
129     opacity: 0.8;
130     font-size: 2.9em;
131     padding: 0 12px 0 12px;
132     border-radius: 10px;
133     background-color: $link_color;
134     line-height: 1.5;
135     display: none;
136 }
137
138 #toggle_mobile_link {
139     display: none;
140 }
141
142 /*
143 * Overwriting and Extend Bootstrap
144 */
145 .label, .label a {
146     color: #fff;
147 }
148
149 /* Buttons */
150
151 .btn {
152     float: none;
153     border: none;
154     -webkit-box-shadow: none;
155     box-shadow: none;
156     -moz-box-shadow: none;
157     background-image: none;
158     text-shadow: none;
159     border-radius: 3px;
160     outline: 0!important;
161     margin-bottom: 0;
162     font-size: 14px;
163     font-weight: 600;
164     padding: 8px 16px;
165     color: inherit;
166 }
167 a.btn:hover {
168     color: #333;
169 }
170
171 .btn-default {
172     background: #ededed;
173     color: #7a7a7a;
174 }
175 .btn-sm {
176     padding: 4px 8px;
177     font-size: 12px;
178 }
179 .btn-small {
180     padding: 6px 10px;
181     font-size: 12px;
182     line-height: 1.5;
183     border-radius: 3px;
184 }
185 .btn-xs {
186     padding: 1px 5px;
187     font-size: 12px;
188 }
189 .btn-primary {
190     background: $nav_bg;
191     color: $btn_primary_color !important;
192 }
193 .btn-primary:hover, .btn-primary:focus {
194     background: $btn_primary_hover_color;
195     text-decoration: none;
196 }
197 .btn-primary:active, .btn-primary.active {
198     outline: 0;
199     background: $btn_primary_hover_color !important;
200 }
201
202 .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
203 .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover,
204 .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
205 .open>.dropdown-toggle.btn-primary:hover,.btn-primary.active, .btn-primary:active,
206 .open>.dropdown-toggle.btn-primary {
207     background: $btn_primary_hover_color;
208     border-color: none;
209 }
210
211 .btn-link {
212     border: 0;
213     color: $link_color;
214     padding-left: 0;
215     padding-right: 0;
216 }
217 .btn-clear,
218 .btn-clear:active {
219     border: 0;
220     background: transparent;
221     box-shadow: none;
222 }
223 .btn-eventnav, btn-eventnav:hover {
224     font-size: 16px;
225     background: none;
226     background-color: transparent;
227     padding: 0 14px;
228 }
229 .btn-separator {
230     border-left: 1px solid #777;
231 }
232 /*.btn-info {
233     background: #6fdbe8;
234     color: #fff!important;
235 }
236 .btn-info:hover, .btn-info:focus {
237     background: #59d6e4!important;
238     text-decoration: none;
239 }
240 .btn-info:active, .btn-info.active {
241     outline: 0;
242     background: #59d6e4;
243 }*/
244
245 .btn-main {
246     background: $link_color;
247     color: #fff!important;
248 }
249 .btn-main:hover, .btn-main:focus {
250     background: $link_hover_color !important;
251     text-decoration: none;
252 }
253 .btn-main:active, .btn-main.active {
254     outline: 0;
255     background: $link_hover_color;
256 }
257 .toggle.btn {
258     border: 1px solid transparent;
259 }
260 .toggle.btn-xs {
261     min-width: 45px;
262 }
263 .toggle.off {
264     border-color: #ccc;
265 }
266 .toggle .toggle-off,
267 .toggle .toggle-off:hover {
268     color: #ccc;
269     background-color: #eee;
270     box-shadow: none;
271 }
272 .toggle.off .toggle-handle {
273     background-color: #eee;
274 }
275 .toggle-handle {
276     background-color: #fff;
277     border-width: 0 1px;
278     border: 1px solid transparent;
279     border-color: #ccc;
280 }
281 .field.yesno:hover .toggle {
282     border-color: $link_hover_color;
283     transition: all 0.25s ease-in-out;
284 }
285 .field.yesno:hover .toggle-handle {
286     background-color: #fff;
287     transition: all 0.25s ease-in-out;
288 }
289
290 .form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn {
291     padding: .275rem .75rem;
292     /*font-size: .875rem;*/
293     line-height: 1.5;
294     height: 30px;
295     border-radius: .2rem;
296 }
297 /* Bootstrap media class fix/hack
298  * This is a test. I thought it does have some
299  * issues in some corner cases. Maybe we remove
300  * once more
301  * https://github.com/twbs/bootstrap/issues/6053
302  */
303 .media, .media-body {
304     overflow: visible;
305 }
306 .media .media-body {
307     display: table-cell;
308     width: 10000px;
309     *width: auto;
310     *zoom: 1;
311 }
312 .media:before, .media:after {
313     content: "";
314     display: table;
315 }
316 .media:after {
317     clear: both;
318 }
319
320 /* Badges */
321 .badge {
322     vertical-align: baseline;
323     background-color: $link_color;
324     border-radius: 4px;
325     z-index: 1;
326 }
327 aside .badge {
328     opacity: 0.7;
329 }
330
331 /* disabled elements */
332 .community-content-wrapper > h3, .network-content-wrapper > .section-title-wrapper {
333     display:none;
334 }
335
336 header #site-location {
337     display: none;
338 }
339 header #banner {
340     position: fixed;
341     top: 0px;
342 /*    width: 33%;
343     margin-left: 33%;
344     margin-right: 33%;*/
345     left:49%;
346     right: 49%;
347     z-index: 1040;
348     margin-top: 14px;
349     text-align: center;
350     text-shadow: 1px 1px 2px rgba(0,0,0,.5);
351     font-size: 14px;
352     font-family: tahoma, "Lucida Sans", sans;
353     color: #fff;
354     font-weight: bold;
355     whitespace: nowrap;
356     padding-left: 55px;
357 }
358 header #banner #logo-img,
359 .navbar-brand #logo-img {
360     /*mask: url('network#m1');*/
361     /*mask-image: url('img/friendica-25.png');*/
362     -webkit-mask-image: url('img/friendica-25.png');
363     background-color: $nav_icon_color;
364     height: 25px;
365     width: 25px;
366     margin-left: auto;
367     margin-right: auto;
368 }
369
370 #navbrand-container {
371     display: flex;
372 }
373 #navbrand-container #navbar-brand-text {
374     padding-left: 5px;
375 }
376
377 /* NavBar */
378 .topbar {
379     position: fixed;
380     display: block;
381     height: 50px;
382     width: 100%;
383     padding-left: 15px;
384     padding-right: 15px
385 }
386 .topbar ul.nav {
387     float: left
388 }
389 .topbar ul.nav>li {
390     float: left
391 }
392 @media (min-width: 992px) {
393 .topbar ul.nav>li>a {
394     padding-top: 15px;
395     padding-bottom: 15px;
396     line-height: 20px
397 }
398 }
399 @media (max-width: 991px) {
400     .topbar ul.nav>li>a { padding-left: 10px; padding-right: 10px; };
401 }
402 .topbar .dropdown-footer {
403     margin: 10px
404 }
405 .topbar .dropdown-header {
406     font-size: 16px;
407     padding: 3px 10px;
408     margin-bottom: 10px;
409     font-weight: 300;
410     color: #bebebe
411 }
412 .topbar .dropdown-header .dropdown-header-link {
413     position: absolute;
414     top: 2px;
415     right: 10px
416 }
417 .topbar .dropdown-header .dropdown-header-link a,
418 .topbar .dropdown-header .dropdown-header-link .btn-link {
419     /*color: #6fdbe8!important;*/
420     color: $link_color !important;
421     font-size: 12px;
422     font-weight: 400
423 }
424 .topbar .dropdown-header:hover {
425     color: #bebebe
426 }
427 #topbar-first,
428 nav.navbar {
429     background-color: $nav_bg;
430     top: 0;
431     z-index: 1030;
432     color: $nav_icon_color;
433 }
434 #topbar-first .nav>li>a:hover,
435 #topbar-first .nav>li>a:focus,
436 #topbar-first .nav>.open>a,
437 nav.navbar .nav>li>a:hover,
438 nav.navbar .nav>li>a:focus{
439     background-color: $nav_icon_hover_color;
440 }
441 #topbar-first .nav>.account {
442     height: 50px;
443     margin-left: 20px
444 }
445 #topbar-first .nav>.account img {
446     margin-left: 10px;
447     height: 32px;
448     width: 32px;
449     border-radius: 3px;
450 }
451 #topbar-first .nav>.account .dropdown-toggle {
452     padding: 10px 5px 0px;
453     line-height: 1.1em;
454     text-align: left
455 }
456 #topbar-first .nav>.account .dropdown-toggle span {
457     font-size: 12px
458 }
459 #topbar-first .topbar-brand {
460     position: relative;
461     z-index: 2
462 }
463 #topbar-first .topbar-actions {
464     position: relative;
465     z-index: 3
466 }
467 #topbar-first .topbar-nav {
468     /*position: absolute;*/
469     left: 0;
470     right: 0;
471     text-align: center;
472     z-index: 1
473 }
474 #topbar-first .topbar-nav .nav-segment {
475     position: relative;
476     text-align: left
477 }
478 #topbar-first .topbar-nav .nav-segment>a {
479 /*    padding: 5px 10px;
480     margin: 10px 2px;*/
481     display: inline-block;
482 /*    border-radius: 2px;*/
483     text-decoration: none;
484     text-align: left
485 }
486 #topbar-first .topbar-nav .nav-segment .nav-notify {
487     position: absolute;
488     top: 4px;
489     right: -2px;
490     background-color: #ff8989;
491
492 /*    text-transform: uppercase;
493     display: inline-block;
494     padding: 3px 5px 4px;
495     font-weight: 600;
496     font-size: 10px!important;
497     color: #fff!important;
498     vertical-align: baseline;
499     white-space: nowrap;
500     text-shadow: none;
501     display: none;*/
502 }
503 #topbar-first #intro-update{
504     cursor: pointer;
505 }
506 #topbar-first .topbar-nav .arrow:after {
507     position: absolute;
508     display: block;
509     width: 0;
510     height: 0;
511     border-color: transparent;
512     border-style: solid;
513     border-width: 10px;
514     content: " ";
515     top: 1px;
516     margin-left: -10px;
517     border-top-width: 0;
518     border-bottom-color: #fff;
519     z-index: 1035
520 }
521 #topbar-first .topbar-nav .arrow {
522     position: absolute;
523     display: block;
524     width: 0;
525     height: 0;
526     border-color: transparent;
527     border-style: solid;
528     z-index: 1001;
529     border-width: 11px;
530     left: 50%;
531     margin-left: -18px;
532     border-top-width: 0;
533     border-bottom-color: rgba(0, 0, 0, .15);
534     top: -19px;
535     z-index: 1035
536 }
537 #topbar-first .topbar-nav .dropdown-menu {
538     width: 350px;
539     margin-left: -148px
540 }
541 #topbar-first .topbar-nav .dropdown-menu ul.media-list {
542     max-height: 400px;
543     overflow: auto
544 }
545 #topbar-first .topbar-nav .dropdown-menu li {
546     position: relative
547 }
548 #topbar-first .topbar-nav .dropdown-menu li i.approval {
549     position: absolute;
550     left: 2px;
551     top: 36px;
552     font-size: 14px
553 }
554 #topbar-first .topbar-nav .dropdown-menu li i.accepted {
555     color: #5cb85c
556 }
557 #topbar-first .topbar-nav .dropdown-menu li i.declined {
558     color: #d9534f
559 }
560 #topbar-first .topbar-nav .dropdown-menu li .media {
561     position: relative
562 }
563 #topbar-first .topbar-nav .dropdown-menu li .media .img-space {
564     position: absolute;
565     top: 14px;
566     left: 14px
567 }
568 #topbar-first .dropdown-footer {
569     margin: 10px 10px 5px
570 }
571 #topbar-first a, #topbar-first .btn-link,
572 nav.navbar a, nav.navbar .btn-link {
573     color: $nav_icon_color;
574 }
575 #topbar-first .caret {
576     border-top-color: #bebebe
577 }
578 #topbar-first .btn-group>a {
579     background-color: #7f9baa
580 }
581 #topbar-first .btn-enter {
582     background-color: #7f9baa;
583     margin: 6px 0
584 }
585 #topbar-first .btn-enter:hover {
586     background-color: #89a2b0
587 }
588 .navbar-fixed-top ul.nav.navbar-nav.navbar-right {
589     display: flex;
590 }
591
592
593 /* Notification Menu */
594 #topbar-first #nav-notifications-menu {
595     max-height: 400px;
596 }
597 #topbar-first #nav-notifications-menu a {
598     color: #555;
599     padding: 0;
600 }
601 #topbar-first #nav-notifications-menu li.notif-entry {
602     color: #555;
603     padding: 10px;
604     border-bottom: 1px solid #eee;
605     position: relative;
606     border-left: 3px solid #fff;
607     font-size: 12px;
608 }
609
610 #topbar-first #nav-notifications-menu li.notify-unseen {
611     border-left: 3px solid #f3fcfd;
612     background-color: #f3fcfd;
613 }
614 #topbar-first #nav-notifications-menu li.notif-entry:hover {
615     background-color: #f7f7f7;
616     /*border-left: 3px solid #6fdbe8;*/
617     border-left: 3px solid $link_color;
618 }
619 /*#topbar-first #nav-notifications-menu i.accepted {
620     color: #6fdbe8!important
621 }
622 #topbar-first #nav-notifications-menu i.declined {
623     color: #ff8989!important
624 }*/
625 #topbar-first #nav-notifications-menu li.placeholder {
626     border-bottom: none
627 }
628 #topbar-first #nav-notifications-menu .media .media-body {
629     font-size: 13px!important;
630     font-weight: 600!important;
631     cursor: pointer;
632 }
633 #topbar-first #nav-notifications-menu .media .media-body .contactname {
634     font-weight: bold;
635 }
636 #topbar-first #nav-notifications-menu .media .media-body .label {
637     padding: .1em .5em
638 }
639 #topbar-first #nav-notifications-menu li.notif-entry .media-object a img {
640     height: 32px;
641     width: 32px;
642     border-radius: 3px;
643 }
644 /* The Top Nav Bar user menu */
645 #topbar-first .account .user-title {
646     text-align: right;
647     margin-top: 7px;
648 }
649 #topbar-first .account .user-title span {
650     color: $nav_icon_color;
651 }
652 #topbar-first .account #main-menu .nav-notify {
653     position: absolute;
654     top: 4px;
655     right: -2px;
656     background-color: #ff8989;
657 }
658 #myNavmenu li,
659 #myNavmenu a {
660     background-color: $nav_bg;
661     color: $nav_icon_color;
662 }
663 #myNavmenu li.nav-sitename {
664     font-weight: bold;
665 }
666 #topbar-first .dropdown.account > a,
667 #topbar-first .dropdown.account.open > a,
668 #topbar-first .dropdown.account > button,
669 #topbar-first .dropdown.account.open > button,
670 #topbar-first .dropdown.account > :hover,
671 #topbar-first .dropdown.account.open > :hover {
672     background-color: $nav_bg;
673 }
674 #topbar-first .dropdown.account li#nav-sitename {
675     padding-left: 15px;
676     padding-right: 15px;
677     font-weight: bold;
678     word-break: break-word;
679 }
680 #topbar-first .dropdown.account li#nav-sitename:hover {
681     border: none;
682     background-color: $nav_bg;
683 }
684 /* Nav Search */
685 #topbar-first #search-box .navbar-form {
686     margin: 0px;
687     padding: 10px 15px;
688 }
689 #search-mobile .navbar-form {
690     margin: 0;
691 }
692 #topbar-first #search-box .form-search {
693     height: 25px;
694     font-size: 13px;
695     background-position: 8px 4px;
696 }
697 #topbar-first #search-box .btn {
698     font-size: 10px;
699     padding: 1px 8px;
700 }
701
702 /* second topbar */
703 #topbar-second {
704     height: 40px;
705     top: 50px;
706     background-color: #fff;
707     z-index: 1029;
708     background-image: none;
709     -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
710     -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
711     box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
712     border-bottom: 1px solid #d4d4d4
713 }
714 #topbar-second > .container {
715     height: 100%;
716 }
717 @media screen and (max-width: 767px) {
718     #topbar-second > .container,
719     #topbar-second #navbar-button {
720     padding: 0;
721     }
722 }
723 #topbar-second .dropdown-menu {
724     padding-top: 0;
725     padding-bottom: 0
726 }
727 #topbar-second .dropdown-menu .divider {
728     margin: 0
729 }
730 #topbar-second #space-menu-dropdown,
731 #topbar-second #search-menu-dropdown {
732     width: 400px
733 }
734 #topbar-second #space-menu-dropdown .media-list,
735 #topbar-second #search-menu-dropdown .media-list {
736     max-height: 400px;
737     overflow: auto
738 }
739 @media screen and (max-width: 768px) {
740     #topbar-second #space-menu-dropdown .media-list,
741     #topbar-second #search-menu-dropdown .media-list {
742         max-height: 200px
743     }
744 }
745 #topbar-second #space-menu-dropdown form,
746 #topbar-second #search-menu-dropdown form {
747     margin: 10px
748 }
749 #topbar-second #space-menu-dropdown .search-reset,
750 #topbar-second #search-menu-dropdown .search-reset {
751     position: absolute;
752     color: #999;
753     margin: 10px;
754     top: 8px;
755     right: 10px;
756     display: none;
757     cursor: pointer
758 }
759 #topbar-second .nav>li>a {
760     padding: 6px 13px 0;
761     text-decoration: none;
762     text-shadow: none;
763     font-weight: 600;
764     font-size: 10px;
765     text-transform: uppercase;
766     text-align: center;
767     min-height: 49px
768 }
769 #topbar-second .nav>li>a:hover,
770 #topbar-second .nav>li>a:active,
771 #topbar-second .nav>li>a:focus {
772     /*border-bottom: 3px solid #6fdbe8;*/
773     border-bottom: 3px solid $link_color;
774     background-color: #f7f7f7;
775     color: #555;
776     text-decoration: none
777 }
778 #topbar-second .nav>li>a i {
779     font-size: 14px
780 }
781 #topbar-second .nav>li>a .caret {
782     border-top-color: #7a7a7a
783 }
784 #topbar-second .nav>li>ul>li>a {
785     border-left: 3px solid #fff;
786     background-color: #fff;
787     color: #555
788 }
789 #topbar-second .nav>li>ul>li>a:hover,
790 #topbar-second .nav>li>ul>li>a.active {
791     /*border-left: 3px solid #6fdbe8;*/
792     border-left: 3px solid $link_color;
793     background-color: #f7f7f7;
794     color: #555
795 }
796 #topbar-second .nav>li.active>a {
797     min-height: 46px
798 }
799 #topbar-second .nav>li>a#space-menu {
800     padding-right: 13px;
801     border-right: 1px solid #ededed
802 }
803 #topbar-second .nav>li>a#search-menu {
804     padding-top: 15px
805 }
806 #topbar-second .nav>li>a:hover,
807 #topbar-second .nav .open>a,
808 #topbar-second .nav>li.active {
809     /*border-bottom: 3px solid #6fdbe8;*/
810     border-left: 3px solid $link_color;
811     background-color: #f7f7f7;
812     color: #555
813 }
814 #topbar-second .nav>li.active>a:hover {
815     border-bottom: none
816 }
817 #topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p {
818     color: #bebebe;
819     font-size: 11px;
820     margin: 0;
821     font-weight: 400
822 }
823 #topbar-second #nav-short-info .heading {
824     margin-left: -14px;
825     overflow: hidden;
826     white-space: nowrap;
827     padding-right: 20px;
828     text-overflow: ellipsis;
829 }
830 #topbar-second #tabmenu .heading {
831     overflow: hidden;
832     text-overflow: ellipsis;
833     white-space: nowrap;
834     color: $link_color;
835     text-align: center;
836 }
837
838 /* Dropdown Menus */
839 .nav > li > .btn-link {
840     position: relative;
841     display: block;
842     padding: 10px 15px;
843 }
844 .nav > li > .btn-link:focus,
845 .nav > li > .btn-link:hover {
846     text-decoration: none;
847     background-color: #eee;
848 }
849 .nav .open > .btn-link,
850 .nav .open > .btn-link:focus,
851 .nav .open > .btn-link:hover {
852     background-color: #eee;
853     border-color: #337ab7;
854 }
855 .nav-pills > li > .btn-link {
856     border-radius: 4px;
857 }
858 .nav-pills .dropdown-menu,
859 .nav-tabs .dropdown-menu,
860 .account .dropdown-menu,
861 .contact-photo-wrapper .dropdown-menu {
862     background-color: $nav_bg;
863     border: none
864 }
865 .nav-pills .dropdown-menu li.divider,
866 .nav-tabs .dropdown-menu li.divider,
867 .account .dropdown-menu li.divider,
868 .contact-photo-wrapper .dropdown-menu li.divider {
869     background-color: $menu_background_hover_color;
870     border-bottom: none;
871     margin: 9px 1px!important
872 }
873 .nav-pills .dropdown-menu li,
874 .nav-tabs .dropdown-menu li,
875 .account .dropdown-menu li,
876 .contact-photo-wrapper .dropdown-menu li {
877     border-left: 3px solid $nav_bg;
878 }
879 .nav-pills .dropdown-menu li a, .nav-pills .dropdown-menu li .btn-link,
880 .nav-tabs .dropdown-menu li a, .nav-tabs .dropdown-menu li .btn-link,
881 .account .dropdown-menu li a, .account .dropdown-menu li .btn-link,
882 .contact-photo-wrapper .dropdown-menu li a, .contact-photo-wrapper .dropdown-menu li .btn-link {
883     color: $nav_icon_color;
884     font-weight: 400;
885     font-size: 13px;
886     padding: 4px 15px;
887     text-transform: capitalize;
888     width: 100%;
889     text-align: left;
890 }
891 .nav-pills .dropdown-menu li a i, .nav-pills .dropdown-menu li .btn-link i,
892 .nav-tabs .dropdown-menu li a i, .nav-tabs .dropdown-menu li .btn-link i,
893 .account .dropdown-menu li a i, .account .dropdown-menu li .btn-link i,
894 .contact-photo-wrapper .dropdown-menu li a i, .contact-photo-wrapper .dropdown-menu li .btn-link i {
895     margin-right: 5px;
896     font-size: 14px;
897     display: inline-block;
898     width: 14px
899 }
900 .nav-pills .dropdown-menu li a:hover, .nav-pills .dropdown-menu li .btn-link:hover,
901 .nav-tabs .dropdown-menu li a:hover, .nav-tabs .dropdown-menu li .btn-link:hover,
902 .account .dropdown-menu li a:hover, .account .dropdown-menu li .btn-link:hover,
903 .contact-photo-wrapper .dropdown-menu li a:hover, .contact-photo-wrapper .dropdown-menu li .btn-link:hover,
904 .nav-pills .dropdown-menu li a:visited, .nav-pills .dropdown-menu li .btn-link:visited,
905 .nav-tabs .dropdown-menu li a:visited, .nav-tabs .dropdown-menu li .btn-link:visited,
906 .account .dropdown-menu li a:visited, .account .dropdown-menu li .btn-link:visited,
907 .contact-photo-wrapper .dropdown-menu li a:visited, .contact-photo-wrapper .dropdown-menu li .btn-link:visited,
908 .nav-pills .dropdown-menu li a:hover, .nav-pills .dropdown-menu li .btn-link:hover,
909 .nav-tabs .dropdown-menu li a:hover, .nav-tabs .dropdown-menu li .btn-link:hover,
910 .account .dropdown-menu li a:hover, .account .dropdown-menu li .btn-link:hover,
911 .contact-photo-wrapper .dropdown-menu li a:hover, .contact-photo-wrapper .dropdown-menu li .btn-link:hover,
912 .nav-pills .dropdown-menu li a:focus, .nav-pills .dropdown-menu li .btn-link:focus,
913 .nav-tabs .dropdown-menu li a:focus, .nav-tabs .dropdown-menu li .btn-link:focus,
914 .account .dropdown-menu li a:focus, .account .dropdown-menu li .btn-link:focus,
915 .contact-photo-wrapper .dropdown-menu li a:focus, .contact-photo-wrapper .dropdown-menu li .btn-link:focus {
916     background: 0 0
917 }
918 .nav-pills .dropdown-menu li:hover,
919 .nav-tabs .dropdown-menu li:hover,
920 .account .dropdown-menu li:hover,
921 .contact-photo-wrapper .dropdown-menu li:hover,
922 .nav-pills .dropdown-menu li.selected,
923 .nav-tabs .dropdown-menu li.selected,
924 .account .dropdown-menu li.selected,
925 .contact-photo-wrapper .dropdown-menu li.selected {
926     /*border-left: 3px solid #6fdbe8;*/
927     border-left: 3px solid $link_color;
928     color: #fff!important;
929     background-color: $menu_background_hover_color !important;
930 }
931 .nav-pills.preferences .dropdown .dropdown-toggle,
932 .nav-pills.preferences > li > .btn {
933     color: #bebebe;
934 }
935 .nav-pills.preferences .dropdown.open .dropdown-toggle,
936 .nav-pills.preferences .dropdown.open .dropdown-toggle:hover {
937     background-color: $nav_bg;
938 }
939
940 .nav-pills.preferences .dropdown .dropdown-toggle,
941 .nav-pills.preferences > li > .btn {
942     padding: 2px 10px;
943 }
944
945
946 /*
947  * Aside
948  *
949  */
950
951 aside .widget,
952 .nav-container .widget {
953     border: none;
954     color: #777;
955     /*background-color: #fff;*/
956     background-color: rgba(255,255,255,$contentbg_transp);
957     box-shadow: 0 0 3px #dadada;
958     -webkit-box-shadow: 0 0 3px #dadada;
959     -moz-box-shadow: 0 0 3px #dadada;
960     border-radius: 4px;
961     position: relative;
962     margin-bottom: 20px;
963     padding: 10px;
964     font-size: 13px;
965 }
966 aside .widget h3,
967 .nav-container .widget h3 {
968     font-weight: bold;
969     font-size: 16px;
970     margin: 0;
971     padding-bottom: 20px;
972 }
973
974 aside .widget ul,
975 .nav-container .widget ul {
976     padding: 0px;
977     margin-top: 0px;
978     margin-bottom: 0px;
979     margin-left: -10px;
980     margin-right: -10px;
981     /*padding-left: 10px;*/
982     list-style: none;
983 }
984
985 aside .widget li,
986 .nav-container .widget li {
987     padding-top: 2px;
988     padding-bottom: 2px;
989     padding-left: 20px;
990     padding-right: 20px;
991 }
992 aside .widget li:hover,
993 aside .widget li.selected,
994 .nav-container .widget li:hover {
995     z-index: 2;
996     color: #555;
997     /*background-color: #f7f7f7;*/
998     background-color: rgba(247, 247, 247, $contentbg_transp);
999     /*border-left: 3px solid #6fdbe8!important;*/
1000     border-left: 3px solid $link_color !important;
1001     padding-left: 17px;
1002 }
1003 aside .widget li a,
1004 aside .widget li a:hover {
1005     color: #555;
1006 }
1007
1008 /* forumlist widget */
1009 aside #datebrowse-sidebar .posted-date-selector-months{
1010     margin-left: 0;
1011     margin-bottom: 10px;
1012     width: 100%
1013 }
1014 aside #datebrowse-sidebar .posted-date-selector-months li{
1015     padding-left: 30px;
1016 }
1017 aside #datebrowse-sidebar .posted-date-selector-months li:hover{
1018     padding-left: 27px;
1019 }
1020
1021 /* vcard / h-card */
1022 aside .vcard #profile-photo-wrapper{
1023     margin: 0;
1024 }
1025 aside .vcard img.u-photo,
1026 aside img.vcard-photo {
1027     width: 100%;
1028     border-radius: 3px;
1029 }
1030 aside .vcard .tool .action{
1031     position: absolute;
1032     top:20px;
1033     right: 20px;
1034     font-size: 32px;
1035     width: 45px;
1036     height: 45px;
1037     background: rgba(0,0,0,.50);
1038     text-align: center;
1039     border-radius: 3px;
1040     opacity: 0;
1041     -webkit-transition: all 0.25s ease-in-out;
1042     -moz-transition: all 0.25s ease-in-out;
1043     -o-transition: all 0.25s ease-in-out;
1044     -ms-transition: all 0.25s ease-in-out;
1045     transition: all 0.25s ease-in-out;
1046 }
1047 aside .vcard .tool a {
1048 color: rgba(255,255,255,.85);
1049 }
1050 aside .vcard #profile-photo-wrapper:hover .tool .action {
1051     opacity: 1;
1052 }
1053 aside .vcard .profile-header {
1054     margin-bottom: 20px;
1055 }
1056 aside .vcard .fn {
1057     font-size: 20px;
1058     font-weight: bold;
1059 }
1060 aside .vcard .p-addr {
1061     font-style: italic;
1062     overflow: hidden;
1063     text-overflow: ellipsis;
1064     white-space: nowrap;
1065     padding-bottom: 2px;
1066 }
1067
1068 aside .vcard .detail {
1069     display: table;
1070     padding: 5px 0;
1071 }
1072 aside .xmpp {
1073     display: table;
1074 }
1075 aside .vcard .icon {
1076     display: table-cell;
1077     padding-right: 10px;
1078 }
1079 #profile-extra-links {
1080     margin-bottom: 20px;
1081 }
1082 aside .vcard #dfrn-request-link-button,
1083 aside .vcard #wallmessage-link-botton {
1084     width: 50%;
1085     margin: 0 0 0 -5px;
1086     float: left;
1087     padding: 0 5px;
1088 }
1089 aside .vcard #dfrn-request-link,
1090 aside .vcard #wallmessage-link {
1091     width: 100%;
1092 }
1093 /* vcard-short-info */
1094 #vcard-short-info,
1095 #nav-short-info .contact-wrapper {
1096     margin-top: 2px;
1097     height: 40px;
1098     white-space: nowrap;
1099     overflow: hidden;
1100     padding-right: 20px;
1101     margin-left: -14px;
1102 }
1103 #vcard-short-photo-wrapper img,
1104 #nav-short-info .contact-wrapper img {
1105     height: 34px;
1106     width: 34px;
1107     border-radius: 3px;
1108 }
1109 #vcard-short-desc,
1110 #nav-short-info .contact-wrapper .media-body {
1111     display: block;
1112     height: 34px;
1113     width: 100%;
1114     text-overflow: ellipsis;
1115 }
1116 #vcard-short-desc > .media-heading,
1117 #vcard-short-desc > .vcard-short-addr,
1118 #nav-short-info .contact-wrapper .media-heading,
1119 #nav-short-info .contact-wrapper #contact-entry-url-network {
1120     text-overflow: ellipsis;
1121     overflow: hidden;
1122 }
1123 #vcard-short-desc > .media-heading,
1124 #nav-short-info .contact-wrapper .media-heading {
1125     margin-bottom: 1px;
1126     font-weight: bold;
1127 }
1128 #nav-short-info .contact-wrapper .media-heading a {
1129     color: #555;
1130     font-size: 14px !important;
1131 }
1132 #vcard-short-desc > .vcard-short-addr,
1133 #nav-short-info .contact-wrapper #contact-entry-url-network {
1134     color: #777;
1135     font-size: 12px;
1136 }
1137 .network-content-wrapper > #viewcontact_wrapper-network,
1138 #nav-short-info .contact-wrapper .contact-photo-overlay,
1139 #nav-short-info .contact-wrapper .contact-actions{
1140     display: none
1141 }
1142
1143 aside #peoplefind-sidebar input,
1144 aside #follow-sidebar input {
1145     height: 30px;
1146     background-position: 10px 5px;
1147 }
1148 aside #peoplefind-sidebar .form-group-search .form-button-search,
1149 aside #follow-sidebar .form-group-search .form-button-search {
1150     padding: 2px 8px;
1151 }
1152
1153 aside #group-sidebar .group-edit-tool,
1154 aside #saved-search-list .savedsearchdrop {
1155     opacity: 0.1;
1156     transition: all 0.25s ease-in-out;
1157 }
1158 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
1159 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
1160     opacity: 0.8;
1161     transition: all 0.25s ease-in-out;
1162 }
1163 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
1164 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
1165     opacity: 1;
1166 }
1167 aside #group-sidebar li .group-checkbox {
1168     margin: 0;
1169 }
1170 aside #group-sidebar li .group-edit-tool {
1171     padding-right: 10px;
1172 }
1173 aside #group-sidebar li .group-edit-tool:first-child {
1174     padding-right: 0px;
1175 }
1176
1177 /* contact block widget */
1178 #contact-block .contact-block-content {
1179     clear: both;
1180     overflow: auto;
1181     height: auto;
1182 }
1183 #contact-block .contact-block-div {
1184     float: left;
1185     margin: 0px 5px 5px 0px;
1186 /*    height: 90px;
1187     width: 90px;*/
1188 }
1189 #contact-block contact-block-link {
1190
1191 }
1192 #contact-block .contact-block-img {
1193     height: 75px;
1194     width: 75px;
1195     border-radius: 4px;
1196 }
1197 /* Section */
1198 section ul.tabs {
1199     display: none !important;
1200 }
1201
1202 /* Jot */
1203 section #jotOpen {
1204     display: none;
1205 }
1206 #jotOpen {
1207     margin-top: 3px;
1208     float: right;
1209 }
1210 #jot-content {
1211     display: none;
1212 }
1213 .jothidden {
1214     /*display: none;*/
1215 }
1216 #jot-modal .modal-header a, #jot-modal .modal-header .btn-link,
1217 #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link {
1218     color: #555;
1219     text-transform: capitalize;
1220 }
1221 #jot-modal .modal-header {
1222     border-bottom: none;
1223 }
1224 #jot-title-wrap, #jot-category-wrap {
1225     margin-bottom: 5px;
1226 }
1227 #jot-text-wrap {
1228     margin-top: 20px;
1229 }
1230 #jot-text-wrap textarea {
1231     min-height: 100px;
1232 }
1233 #profile-jot-wrapper button#jot-submit {
1234     margin-top: 5px;
1235 }
1236 #profile-jot-wrapper #character-counter {
1237     padding: 10px 15px;
1238 }
1239
1240 /* ACL */
1241 /*#jot-modal-body {
1242     height: auto;
1243     max-height: calc(100vh - 130px);
1244     overflow-y: hidden;
1245 }*/
1246 #acl-search {
1247     margin-top: 20px;
1248     /*padding: 8px;*/
1249     /*border: 1px solid #ccc;*/
1250     width: 100%;
1251 }
1252 #acl-list {
1253     display: block;
1254     border: 1px solid #ccc;
1255     overflow: auto;
1256     clear: both;
1257     min-height: 62px;
1258     margin-top: 20px;
1259     padding: 10px 10px 0px 0px;
1260     -webkit-border-radius: 4px;
1261     -moz-border-radius: 4px;
1262     border-radius: 4px;
1263 }
1264 #acl-list-content {
1265     overflow-y: auto;
1266     max-height: calc(100vh - 330px);
1267     height: auto !important;
1268 }
1269 .acl-list-item {
1270     width: 48%;
1271     width: calc(50% - 10px);
1272     border: 1px solid #ccc;
1273     margin: 0px 0px 10px 10px;
1274     padding: 5px;
1275     float: left;
1276     -webkit-border-radius: 4px;
1277     -moz-border-radius: 4px;
1278     border-radius: 4px;
1279 }
1280 .acl-list-item img {
1281     width: 40px;
1282     height: 40px;
1283     float: left;
1284     margin-right: 5px;
1285     -webkit-border-radius: 4px;
1286     -moz-border-radius: 4px;
1287     border-radius: 4px;
1288 }
1289 .acl-list-item p {
1290     margin: 0px;
1291     white-space: nowrap;
1292     overflow: hidden;
1293     text-overflow: ellipsis;
1294 }
1295 .acl-list-item.groupshow {
1296     background-color: #8DB255
1297 }
1298 .acl-list-item.grouphide {
1299     background-color: #E68364;
1300 }
1301 .acl-button-show, .acl-button-hide {
1302     float: right;
1303     margin-left: 5px;
1304 }
1305 #acl-showall.selected {
1306     background-color: #4CAF50;
1307     color: #fff;
1308 }
1309 .acl-button-show.selected {
1310     background-color: #4CAF50;
1311     color: #fff;
1312 }
1313 .acl-button-hide.selected {
1314     background-color: #F44336;
1315     color: #fff;
1316 }
1317
1318 /* Filebrowser */
1319 .fbrowser .breadcrumb {
1320     margin-bottom: 0px;
1321 }
1322 .fbrowser .path a:before {
1323     content: "";
1324     padding: 0;
1325 }
1326 .fbrowser .breadcrumb > li:last-of-type a{
1327     color: #777;
1328     pointer-events: none;
1329     cursor: default;
1330 }
1331 .fbrowser .folders {
1332     box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
1333     padding-right: 1px;
1334 }
1335 .fbrowser .folders ul {
1336     padding: 0px;
1337     margin-left: -15px;
1338     margin-bottom: 0px;
1339     overflow-y: auto;
1340     min-width: 100px;
1341     max-height: calc(100vh - 210px);
1342     line-height: 1.3;
1343 }
1344 @media (min-width: 768px) {
1345     .fbrowser .folders ul {
1346         max-height: calc(100vh - 255px);
1347     }
1348 }
1349 .fbrowser .folders li {
1350     padding-left: 20px;
1351     padding-right: 10px;
1352     padding-top: 3px;
1353     padding-bottom: 3px;
1354 }
1355 .fbrowser .folders li:hover {
1356     z-index: 2;
1357     color: #555;
1358     background-color: rgba(247, 247, 247, $contentbg_transp);
1359     border-left: 3px solid $link_color !important;
1360     padding-left: 17px;
1361 }
1362 .fbrowser .folders li a,
1363 .fbrowser .folders li a:hover {
1364     color: #555;
1365     font-size: 13px;
1366 }
1367 .fbrowser .folders + .list {
1368     padding-left: 10px;
1369 }
1370 .fbrowser .fbrowser-content-container {
1371     overflow-y: auto;
1372     max-height: calc(100vh - 175px);
1373 }
1374 @media (min-width: 768px) {
1375     .fbrowser .fbrowser-content-container {
1376         max-height: calc(100vh - 220px);
1377     }
1378 }
1379 .fbrowser.image .photo-album-image-wrapper {
1380     box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
1381 }
1382 .fbrowser .profile-rotator-wrapper {
1383     min-height: 200px;
1384 }
1385 .fbrowser .fa-spin {
1386    position: absolute;
1387    left: 45%;
1388    top: 40%;
1389    font-size: 48px;
1390    margin:0px auto;
1391 }
1392
1393 /*
1394 /* Stream
1395 */
1396 .panel {
1397     border: none;
1398     /*background-color: #fff;*/
1399     background-color: rgba(255,255,255,$contentbg_transp);
1400     box-shadow: 0 0 3px #dadada;
1401     -webkit-box-shadow: 0 0 3px #dadada;
1402     -moz-box-shadow: 0 0 3px #dadada;
1403     border-radius: 4px;
1404     position: relative;
1405 }
1406 .panel.panel-inline {
1407     margin-left: -15px;
1408     margin-right: -15px;
1409     margin-top: 15px;
1410     padding: 15px;
1411 }
1412 .panel .panel-body {
1413     padding: 15px;
1414     font-size: 14px;
1415 }
1416 .panel .panel-body .wall-item-content {
1417     color: #555;
1418 }
1419 .tread-wrapper .media {
1420     overflow: visible;
1421     word-wrap: break-word;
1422 }
1423
1424 /* Thread hover effects */
1425 .wall-item-container .wall-item-content a,
1426 .wall-item-container a,
1427 .wall-item-container .fakelink,
1428 .toplevel_item .fakelink,
1429 .toplevel_item .wall-item-container .wall-item-responses a {
1430     color: #555;
1431     -webkit-transition: all 0.25s ease-in-out;
1432     -moz-transition: all 0.25s ease-in-out;
1433     -o-transition: all 0.25s ease-in-out;
1434     -ms-transition: all 0.25s ease-in-out;
1435     transition: all 0.25s ease-in-out;
1436 }
1437
1438 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1439 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1440 .toplevel_item:hover .wall-item-content a,
1441 .toplevel_item:hover .wall-item-name,
1442 .wall-item-container:hover .wall-item-content a,
1443 .wall-item-container:hover .wall-item-name,
1444 .wall-item-container:hover .wall-item-location a {
1445     /*color: #6fdbe8;*/
1446     color: $link_color;
1447     -webkit-transition: all 0.25s ease-in-out;
1448     -moz-transition: all 0.25s ease-in-out;
1449     -o-transition: all 0.25s ease-in-out;
1450     -ms-transition: all 0.25s ease-in-out;
1451     transition: all 0.25s ease-in-out;
1452 }
1453
1454 /* wall items */
1455 .wall-item-container {
1456     position: relative;
1457 }
1458
1459 /* wall items contact photo */
1460 .contact-photo {
1461     height: 48px;
1462     width: 48px;
1463     border-radius: 3px;
1464     /*maybe some adional stuff is needed for the different screen sizes */
1465 }
1466 .contact-photo-image-wrapper {
1467     width: 100%;
1468     height: 100%;
1469     overflow: hidden;
1470     position: relative;
1471     text-align: center;
1472 }
1473 .contact-photo-overlay {
1474     width: 100%;
1475     height: 100%;
1476     position: absolute;
1477     overflow: hidden;
1478     top: 0;
1479     left: 0;
1480     border-radius: 3px;
1481     background:rgba(0,0,0,.50);
1482     text-align:center;
1483     opacity:0;
1484     -webkit-transition: opacity .25s ease;
1485     -moz-transition: opacity .25s ease;
1486 }
1487 .contact-photo-overlay:hover {
1488     opacity: 1;
1489 }
1490 .contact-photo-overlay-content {
1491     font-size: 26px;
1492     text-shadow: 1px 1px 1px #ccc;
1493     color:rgba(255,255,255,.85);
1494     height: 100%;
1495     vertical-align: bottom;
1496 }
1497 .contact-photo-xs{
1498     height: 38px;
1499     width: 38px;
1500     border-radius: 3px;
1501 }
1502 .wwto .contact-photo {
1503     width: auto;
1504     height: 25px;
1505     font-size: 8.8px;
1506     padding: 3.6px 0;
1507     border-radius: 2px;
1508     position: absolute;
1509     top: 30px;
1510     left: 30px;
1511     display: inline-block;
1512 }
1513
1514 /* wall items action dropdown menu */
1515 .nav-pills.preferences {
1516     position: absolute;
1517     right: 15px;
1518     top: 10px;
1519 }
1520 .comment .nav-pills.preferences {
1521     right: 0px;
1522     top: 0px;
1523 }
1524 .wall-item-network {
1525     font-size: 13px;
1526 }
1527
1528 /* wall items contact info */
1529 .media .media-body {
1530     font-size: 13px;
1531 }
1532 .media .media-body h4.media-heading {
1533     font-size: 14px;
1534     font-weight: 500;
1535     color: #555;
1536 }
1537 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1538     display: block;
1539 }
1540 .media .contact-info-comment {
1541     display: table-cell;
1542 }
1543 .media .contact-info-xs h5,
1544 .media .contact-info-comment {
1545     margin: 0 0 5px;
1546 }
1547 .media-heading {
1548     margin: 0 0 5px;
1549 }
1550 .wall-item-name,
1551 .shared-author {
1552     font-size: 15px;
1553     font-weight: bold;
1554 }
1555 .wall-item-name.xs {
1556     font-weight: 700;
1557     font-size: 14px;
1558 }
1559
1560 /* The lock symbol popup */
1561 #panel {
1562     position: absolute;
1563     list-style: none;
1564     background-color: $nav_bg;
1565     border: none;
1566     border-radius: 3px;
1567     float: left;
1568     min-width: 160px;
1569     max-width: 220px;
1570     padding: 10px ;
1571     margin: 2px 0 0;
1572     font-size: 14px;
1573     text-align: left;
1574     color: $nav_icon_color;
1575     z-index: 1000;
1576 }
1577
1578 /* wall items content */
1579 .wall-item-content {
1580     word-break: break-word;
1581 }
1582 .wall-item-content img {
1583     max-height: 480px;
1584     object-fit: contain;
1585 }
1586 .wall-item-body > img,
1587 .wall-item-body > a > img {
1588     border-radius: 3px;
1589 }
1590 .wall-item-body .body-attach > a {
1591     color: #555;
1592     display: inline-block;
1593 }
1594 .wall-item-body .body-attach > a div {
1595     color: #555;
1596     width: 20px;
1597 }
1598
1599 /* wall-item content elements */
1600 .shared-wrapper,
1601 .vevent {
1602     padding: 10px;
1603     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1604 }
1605 @media screen and (max-width: 767px) {
1606     .shared-wrapper,
1607     .vevent {
1608     margin-left: 0px;
1609     margin-right: 0px;
1610     }
1611 }
1612 .shared-wrapper:hover,
1613 .vevent:hover {
1614     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1615 }
1616 .shared_header {
1617     margin-left: 0px;
1618     margin-top: 0px;
1619     padding-top: 0px;
1620     margin-bottom: 10px;
1621     border-top: none;
1622     color: inherit;
1623 }
1624 blockquote.shared_content {
1625     padding: 0px;
1626     margin-left: 0px;
1627     color: inherit;
1628 }
1629 code > .hl-main {
1630     padding: 10px 10px 1px 0;
1631 }
1632 .hl-main ol {
1633     line-height: 1.7;
1634 }
1635 .wall-item-tags,
1636 .itemedited {
1637     margin-top: 10px;
1638     font-size: 13px;
1639 }
1640
1641 .wall-item-tags a {
1642     color: #555;
1643 }
1644
1645 .wall-item-tags a:hover {
1646     text-decoration: none;
1647 }
1648 .wall-item-bottom .label,
1649 .wall-item-bottom .label a {
1650     color: #fff;
1651 }
1652
1653 /* item social action buttons */
1654 .wall-item-actions {
1655     margin-top: 15px;
1656 }
1657 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1658     font-size: 13px;
1659     color: #555;
1660     margin-bottom: 0;
1661 }
1662 .wall-item-actions .active {
1663     font-weight: bold;
1664 }
1665 .wall-item-actions .active:hover {
1666     color: $link_color;
1667 }
1668 .wall-item-actions-left {
1669     display: table-cell;
1670     vertical-align: middle;
1671 }
1672 .wall-item-actions-right {
1673     display: flex;
1674 }
1675 .wall-item-actions .checkbox {
1676     margin: 0;
1677     margin-left: 20px;
1678 }
1679 .wall-item-actions .button-event {
1680     padding-left: 5px;
1681     padding-right: 5px;
1682 }
1683 .wall-item-actions .button-comments,
1684 .wall-item-actions .button-votes,
1685 .wall-item-actions .button-likes {
1686     text-transform: capitalize;
1687 }
1688 .wall-item-actions button:hover {
1689     color: #555;
1690     text-decoration: underline;
1691 }
1692 .wall-item-actions .separator {
1693         margin: 0 .3em;
1694 }
1695
1696 /* wall item hover effects */
1697 .wall-item-container .wall-item-links,
1698 .wall-item-container .wall-item-actions,
1699 .wall-item-container .body-attach > a {
1700     opacity: 0.3;
1701     -webkit-transition: all 0.25s ease-in-out;
1702     -moz-transition: all 0.25s ease-in-out;
1703     -o-transition: all 0.25s ease-in-out;
1704     -ms-transition: all 0.25s ease-in-out;
1705     transition: all 0.25s ease-in-out;
1706 }
1707 .wall-item-container:hover .wall-item-links,
1708 .wall-item-container:hover .wall-item-actions,
1709 .wall-item-container:hover .body-attach > a {
1710     opacity: 0.6;
1711     -webkit-transition: all 0.25s ease-in-out;
1712     -moz-transition: all 0.25s ease-in-out;
1713     -o-transition: all 0.25s ease-in-out;
1714     -ms-transition: all 0.25s ease-in-out;
1715     transition: all 0.25s ease-in-out;
1716 }
1717 .wall-item-container .wall-item-body .body-attach > a:hover {
1718     opacity: 1;
1719 }
1720
1721 /*
1722 /* Comments
1723 */
1724 .well {
1725     border: none;
1726     box-shadow: none;
1727     /*background-color: #ededed;*/
1728     background-color: rgba(237, 237, 237, $contentbg_transp);
1729     background-image: none;
1730     margin-bottom: 1px;
1731 }
1732 .well-small {
1733     padding: 10px;
1734     border-radius: 3px;
1735 }
1736 .well hr {
1737     margin: 15px 0 10px;
1738     border-top: 1px solid #d9d9d9;
1739 }
1740 .wall-entry .well {
1741     margin-bottom: 0;
1742 }
1743 .comment-container {
1744     margin-top: 10px;
1745     margin-bottom: 0px;
1746     border-top-left-radius: 3px;
1747     border-top-right-radius: 3px;
1748     border-bottom-right-radius: 0px;
1749     border-bottom-left-radius: 0px;
1750 }
1751 .comment .media {
1752     position: relative!important;
1753     margin-top: 0;
1754 }
1755 .hide-comments-outer-wrapper {
1756 /*    text-align: center;
1757     margin-top: -18px;*/
1758 }
1759 .hide-comments-total {
1760     cursor: pointer;
1761 }
1762
1763 /*
1764 * Comment Box
1765 */
1766 .thread_level_2 .wall-item-comment-wrapper {
1767     padding-right: 5px;
1768 }
1769 .comment-edit-submit-wrapper {
1770     margin-bottom: 25px;
1771 }
1772 .comment-edit-submit-wrapper a,
1773 .comment-edit-submit-wrapper a:hover {
1774     padding-top: 5px !important;
1775     padding-bottom: 5px !important;
1776 }
1777 .comment-icon-list > li > .icon,
1778 .comment-icon-list > li > .icon:hover {
1779     color: #555;
1780     background-color: transparent;
1781 }
1782
1783 /* acpopup  + textcompletion*/
1784 .acpopup {
1785     /* max-height: 150px; */
1786     background-color: #ffffff;
1787     border-radius: 4px;
1788     overflow: auto;
1789     z-index: 100000;
1790     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1791 }
1792 nav .acpopup {
1793     /*top: 35px !important;*/
1794     margin-left: -23px;
1795 }
1796 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1797  at the beginning of this file to get rid of the !important */
1798 .textcomplete-item > a {
1799     color: #555 !important;
1800     padding: 5px 20px !important;
1801 }
1802 .textcomplete-item.active > a {
1803     background-color: rgb(247, 247, 247) !important;
1804     background-image: none !important;
1805     border-left: 3px solid $link_color;
1806     padding-left: 17px !important;
1807 }
1808 .textcomplete-item a .forum {
1809     color: $link_color;
1810 }
1811 img.acpopup-img {
1812     border-radius: 4px;
1813  }
1814
1815
1816 /* The wall-item thread levels */
1817 /*.wall-item-container.thread_level_3 {
1818   margin-left: 80px;
1819   width: calc(100% - 90px);
1820 }
1821 .wall-item-container.thread_level_4 {
1822   margin-left: 95px;
1823   width: calc(100% - 105px);
1824 }
1825 .wall-item-container.thread_level_5 {
1826   margin-left: 110px;
1827   width: calc(100% - 120px);
1828 }
1829 .wall-item-container.thread_level_6 {
1830   margin-left: 125px;
1831   width: calc(100% - 135px);
1832 }
1833 .wall-item-container.thread_level_7 {
1834   margin-left: 140px;
1835   width: calc(100% - 150px);
1836 }*/
1837
1838 .wall-item-container.thread_level_3,
1839 .wall-item-container.thread_level_4,
1840 .wall-item-container.thread_level_5,
1841 .wall-item-container.thread_level_6,
1842 .wall-item-container.thread_level_7 {
1843   margin-left: 15px;
1844
1845 }
1846 /* Menubar Tabs */
1847 section > .tabbar-wrapper {
1848 /* The tabbar shouldn't' be visibile inside
1849 the section element. Only after we have
1850 moved it to the nav through js */
1851     display: none !important;
1852 }
1853 #tabmenu,
1854 .tabbar-wrapper,
1855 .tabbar,
1856 .tabbar > li {
1857     height: 100%;
1858     /*margin-left: -15px;*/
1859     padding: 0;
1860 }
1861 #tabmenu .search-heading {
1862     overflow: hidden;
1863     text-overflow: ellipsis;
1864     white-space: nowrap;
1865 }
1866 ul.tabs {
1867     list-style: none;
1868     height: 100%;
1869     padding: 0;
1870     padding-top: 10px;
1871     margin: 0;
1872 }
1873 ul.tabs li {
1874     float: left;
1875     margin: 0;
1876     padding: 0;
1877     /*border-bottom: 0 solid #6fdbe8;*/
1878     border-bottom: 0 solid $link_color;
1879     font-size: 13px;
1880     height: 102%;
1881     transition: all .15s ease;
1882 }
1883 /*ul.tabs.visible-xs > li.active {
1884     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1885 }*/
1886 ul.tabs li a {
1887     margin-left: 10px;
1888     margin-right: 10px;
1889     /*color: #6fdbe8;*/
1890     color: $link_color !important;
1891 }
1892 ul.tabs li:hover, ul.tabs li.active {
1893     border-bottom-width: 4px;
1894 }
1895 ul.tabbar ul.tabs-extended li.active {
1896     width: 100%;
1897     border-bottom-width: 2px;
1898 }
1899 ul.tabbar ul.tabs-extended li.active a {
1900     background: none;
1901 }
1902 ul.dropdown-menu li:hover {
1903     border-bottom-width: 0;
1904 }
1905
1906
1907 /* Dropdown Menu */
1908 .dropdown-menu li a,
1909 .dropdown-menu li .btn-link {
1910     font-size: 13px!important;
1911     font-weight: 600!important;
1912 }
1913 .dropdown-menu li > :hover,
1914 .dropdown-menu li > :visited,
1915 .dropdown-menu li > :focus {
1916     background: 0 0;
1917 }
1918
1919 .dropdown-menu li:first-child {
1920     margin-top: 3px;
1921 }
1922
1923 /* Notificaiotn badges */
1924 .nav-notify .show {
1925     display: block;
1926 }
1927
1928 /* Media Classes */
1929 .media .time,
1930 .media .shared-time,
1931 .media .location,
1932 .media .location a {
1933     font-size: 11px;
1934     color: #bebebe;
1935 }
1936 .media-list > li {
1937     padding: 10px;
1938     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1939     position: relative;
1940 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
1941     border-left: 3px solid rgba(255,255,255,0);
1942     font-size: 12px;
1943 }
1944 .media-list > li:hover,
1945 .media-list > li.selected,
1946 .media-list > li.active {
1947     border-left: 3px solid $link_color;
1948     background-color: rgba(247, 247, 247, $contentbg_transp);
1949 }
1950
1951 /* Forms */
1952 .form-control {
1953     border: 2px solid #ededed;
1954     box-shadow: none;
1955 }
1956 .form-control:focus {
1957     /*border: 2px solid #6fdbe8;*/
1958     border: 2px solid $link_color;
1959     outline: 0;
1960     box-shadow: none;
1961 }
1962
1963
1964 .checkbox input[type="checkbox"]:focus + label::before,
1965 .checkbox input[type="radio"]:focus + label::before {
1966     /*border: 2px solid #6fdbe8;*/
1967     border: 2px solid $link_color;
1968     outline: 0;
1969     box-shadow: none;
1970 }
1971
1972 /* Search form */
1973 .form-control.form-search {
1974     border-radius: 30px;
1975     background-image: url(img/icon_search16x16.png);
1976     background-repeat: no-repeat;
1977     background-position: 10px 8px;
1978     padding-left: 34px;
1979 }
1980 .form-group-search {
1981     position: relative;
1982     width: 100%;
1983 }
1984
1985 .form-group-search .form-button-search {
1986     position: absolute;
1987     top: 4px;
1988     right: 4px;
1989     border-radius: 30px;
1990 }
1991 .search-input.form-control.form-search {
1992     width: 100%;
1993 }
1994 .search-heading {
1995     text-align: center;
1996     color: $link_color;
1997     font-size: 20px;
1998 }
1999 .search-content-wrapper > #search-header-wrapper {
2000     display: none;
2001 }
2002 .search-content-wrapper > .section-title-wrapper {
2003     display: none;
2004 }
2005 #navbar-button > #search-save-form > #search-save {
2006     margin-top: 3px;
2007 }
2008 /* Section-Content-Wrapper */
2009 #search-header-wrapper {
2010     padding: 15px;
2011     padding-bottom: 20px;
2012     margin-bottom: 20px;
2013     border: none;
2014     /*background-color: #fff;*/
2015     background-color: rgba(255,255,255,$contentbg_transp);
2016     border-radius: 4px;
2017     position: relative;
2018     /*overflow: hidden;*/
2019     color: #555;
2020     box-shadow: 0 0 3px #dadada;
2021     -webkit-box-shadow: 0 0 3px #dadada;
2022     -moz-box-shadow: 0 0 3px #dadada;
2023 }
2024
2025 /* *******
2026  * PAGES
2027  *********/
2028
2029 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2030  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2031 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2032 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2033 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
2034 .admin-content-wrapper, .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
2035 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2036 .profperm-content-wrapper {
2037     min-height: calc(100vh - 150px);
2038     padding: 15px;
2039     padding-bottom: 20px;
2040     margin-bottom: 20px;
2041     border: none;
2042     /*background-color: #fff;*/
2043     background-color: rgba(255,255,255,$contentbg_transp);
2044     border-radius: 4px;
2045     position: relative;
2046     /*overflow: hidden;*/
2047     color: #555;
2048     box-shadow: 0 0 3px #dadada;
2049     -webkit-box-shadow: 0 0 3px #dadada;
2050     -moz-box-shadow: 0 0 3px #dadada;
2051 }
2052
2053 .section-title-wrapper {
2054     overflow: hidden;
2055 }
2056 /* Profile-page */
2057 #profile-content-standard,
2058 #profile-content-advanced {
2059     overflow: hidden;
2060 }
2061 #profile-menu {
2062     margin-top: 20px;
2063     margin-bottom: 20px;
2064 }
2065 .contact-block-div.forumlist-profile-advanced {
2066     float: left;
2067 }
2068
2069 /* contacts page */
2070 ul.viewcontact_wrapper {
2071     margin-left: -15px;
2072     margin-right: -15px;
2073 }
2074 ul.viewcontact_wrapper > li {
2075     padding-left: 15px;
2076 }
2077 .contact-wrapper {
2078 /*    padding: 10px;
2079     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2080     position: relative;*/
2081     /*border-left: 3px solid white;*/
2082 }
2083 .contact-wrapper .contact-photo-wrapper button {
2084     padding: 0;
2085 }
2086 .contact-wrapper.media {
2087     overflow: visible;
2088     word-wrap: break-word;
2089     margin-top: 0;
2090 }
2091 /* bootstrap hack for .media */
2092 .contact-wrapper.media .media-body {
2093     display: table-cell;
2094     width: 10000px;
2095     *width: auto;
2096     *zoom: 1;
2097 }
2098 .contact-wrapper.media:before, .media:after {
2099     content: "";
2100     display: table;
2101 }
2102 .contact-wrapper.media:after {
2103     clear: both;
2104 }
2105 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2106     height: 80px;
2107     width: 80px;
2108 }
2109 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2110     height: 48px;
2111     width: 48px;
2112 }
2113 .contact-wrapper .contact-photo-overlay-content.xl {
2114     font-size: 48px;
2115 }
2116 .contact-wrapper .contact-photo-menu {
2117     top: auto;
2118 }
2119
2120 .contact-entry-desc {
2121     color: #555;
2122 }
2123 .contact-entry-checkbox {
2124     margin-top: -20px;
2125 }
2126 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2127     font-weight: bold !important;
2128     color: $link_color;
2129     font-size: 15px !important;
2130 }
2131 .contact-wrapper .contact-actions {
2132     display: flex;
2133 }
2134 .contact-wrapper .contact-action-link,
2135 .contact-wrapper .contact-action-link:hover,
2136 .textcomplete-item .contact-wrapper .contact-action-link {
2137     padding: 0 5px;
2138     color: #555;
2139     border: 0;
2140 }
2141 .contact-wrapper .contact-action-link {
2142     opacity: 0.1;
2143     transition: all 0.25s ease-in-out;
2144 }
2145 ul li:hover .contact-wrapper .contact-action-link {
2146     opacity: 0.8;
2147     transition: all 0.25s ease-in-out;
2148 }
2149 ul li:hover .contact-wrapper .contact-action-link:hover {
2150     opacity: 1;
2151 }
2152 #contacts-search-wrapper,
2153 #directory-search-wrapper{
2154     padding: 10px 0;
2155 }
2156 #contact-drop-confirm .contact-actions,
2157 #contact-drop-confirm .contact-photo-overlay,
2158 #contact-drop-confirm .contact-photo-menu {
2159     display: none;
2160 }
2161 #contact-drop-confirm #confirm-form {
2162     margin-top: 20px;
2163 }
2164
2165 /* contact-edit */
2166 #contact-edit-actions {
2167     position: absolute;
2168 }
2169 #contact-edit-status-wrapper {
2170     border: none;
2171     background-color: #E1F5FE;
2172     margin: 15px -15px;
2173 }
2174 #contact-edit-tools {
2175     margin-left: -15px;
2176     margin-right: -15px;
2177 }
2178 #contact-edit-tools > .panel {
2179     padding-left: 15px;
2180     padding-right: 15px;
2181 }
2182 #contact-edit-settings {
2183     display: block;
2184     margin: 0;
2185 }
2186
2187 /* directory page */
2188 #directory-search-heading {
2189     padding-top: 10px;
2190 }
2191
2192 /* group edit page */
2193 .group-actions {
2194     margin-top: 20px;
2195     margin-bottom: 10px;
2196     font-size: 30px;
2197 }
2198 .group-actions button,
2199 .group-actions a {
2200     font-size: 18px;
2201 }
2202 #group-edit-wrapper {
2203     display: none;
2204 }
2205 #group-update-wrapper .contact-photo-overlay {
2206     display: none;
2207 }
2208 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2209     height: 100%;
2210     margin-top: -10px;
2211     display: flex;
2212 }
2213 #group-update-wrapper .viewcontact_wrapper .contact-action-link {
2214     opacity: 0.8;
2215     font-size: 20px;
2216     line-height: 50px;
2217 }
2218 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2219     opacity: 1;
2220 }
2221 #group-update-wrapper .shortmode {
2222     height: 53px;
2223     overflow: hidden;
2224 }
2225 #group-update-wrapper .shortmode .contact-photo {
2226     height: 32px;
2227     width: 32px;
2228 }
2229 #group-update-wrapper .shortmode .media {
2230     overflow: hidden;
2231 }
2232 #group-update-wrapper .shortmode .contact-entry-desc {
2233     font-size: 12px !important;
2234 }
2235 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2236     margin: 0;
2237 }
2238 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2239     font-size: 13px !important;
2240     white-space: nowrap;
2241 }
2242 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2243 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2244     display: none;
2245 }
2246
2247 /* private mail */
2248 .message-content-wrapper > li {
2249 /* we need this overwriting because we have no template file
2250    for the general mail page /message
2251 */
2252     list-style-type: none;
2253 }
2254 .mail-thread {
2255     max-height: calc(100vh - 200px);
2256 }
2257 #mail-conversation {
2258     overflow-y: auto;
2259     max-height: calc(100vh - 400px);
2260     max-height: auto;
2261     /*height: 500px;*/
2262     margin-bottom: 0px;
2263     padding: 0 15px;
2264 }
2265 #mail-conversation.can-reply {
2266 /*    border-bottom-left-radius: 0px;
2267     border-bottom-right-radius: 0px;*/
2268 }
2269 .mail-conv-wrapper .media .contact-photo-wrapper img {
2270     height: 48px;
2271     width: 48px;
2272 }
2273 .mail-thread #prvmail-to-label,
2274 .mail-thread #prvmail-subject-label {
2275     display: none;
2276 }
2277 .mail-thread #prvmail-message-label > label {
2278     display:none;
2279 }
2280 .mail-thread #prvmail-message-label textarea {
2281 /*    border-top: none;
2282     margin-top: -10px;
2283     border-top-left-radius: 0px;
2284     border-top-right-radius: 0px;*/
2285     max-height: 120px;
2286 }
2287 .mail-conv-wrapper {
2288     padding: 15px 0;
2289     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2290 }
2291 #message-sidebar {
2292     height: calc(100vh - 150px);
2293 }
2294 #message-preview {
2295     /*padding: 0 10px;*/
2296     height: calc(100% - 20px);
2297 }
2298 #message-preview ul {
2299     margin: 0px;
2300 }
2301 #message-preview .media-list li {
2302     padding: 0px 10px;
2303     border: none;
2304 }
2305 #message-preview .media-list li:hover {
2306     border-left: none !important;
2307 }
2308 #message-preview .media-list li a {
2309     color: $link_color;
2310 }
2311 .mail-list-outside-wrapper {
2312     padding: 5px 0;
2313     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2314 }
2315 .mail-list-outside-wrapper .contact-photo-wrapper img {
2316     height: 48px;
2317     width: 48px;
2318 }
2319
2320 #prvmail-end {
2321     clear:both;
2322 }
2323 /* photos */
2324 .photo-album-actions {
2325     margin-bottom: 10px;
2326 }
2327 .photo-album-actions .photos-order-link {
2328     float: right;
2329 }
2330 /* poke */
2331 #poke-desc {
2332     margin: 5px 0 30px;
2333 }
2334 #poke-wrapper-end {
2335     clear: both;
2336 }
2337
2338 /* Events page */
2339
2340 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2341     color: $link_hover_color;
2342 }
2343 .fc .fc-list-item-title a {
2344     color: $link_color;
2345 }
2346 .fc .fc-list-item-title a[href]:hover {
2347     color: $link_hover_color;
2348     text-decoration: none;
2349 }
2350 /*.event-date-wrapper.medium .event-hover-short-month {
2351     color: $link_color;
2352 }*/
2353 .event-wrapper .event-owner {
2354   margin-bottom: 15px;
2355 }
2356 .event-wrapper .event-owner img {
2357     display: block;
2358 }
2359 .event-owner img {
2360     margin-right: 5px;
2361     height: 48px;
2362     width:  48;
2363     border-radius: 3px;
2364 }
2365 .event-wrapper .vevent {
2366     margin-left: 0;
2367     margin-right: 0;
2368     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2369 }
2370 .event-wrapper .event-buttons {
2371     margin-top: 15px;
2372 }
2373 #event-form-wrapper {
2374     padding-top: 5px;
2375 }
2376 #event-edit-form-wrapper {
2377     padding-top: 15px;
2378 }
2379 #event-nav a {
2380     color: #555;
2381 }
2382 #event-edit-form-wrapper #event-edit-time {
2383     padding: 10px 0;
2384 }
2385 .event-buttons .plink-event-link {
2386     margin-left: 20px;
2387 }
2388 /* Profiles Page */
2389 .profile-listing-table {
2390     display: table;
2391     width: 100%;
2392 }
2393 .profile-listing-row {
2394     display: table-row;
2395 }
2396 .profile-listing-cell {
2397     display: table-cell;
2398 }
2399 .profile-listing-photo {
2400     width: 48px;
2401     height: 48px;
2402     margin: 10px 0px;
2403 }
2404 #profile-listing-new-link-wrapper {
2405     margin-bottom: 20px;
2406 }
2407 .panel-group-settings {
2408     margin-left: -15px;
2409     margin-right: -15px;
2410 }
2411 .panel-group-settings > .panel {
2412     padding-left: 15px;
2413     padding-right: 15px;
2414 }
2415 .profiles-content-wrapper #profile-photo-upload-section {
2416     display: none;
2417     margin-left: -15px;
2418     margin-right: -15px;
2419     margin-top: 15px;
2420     padding: 15px;
2421 }
2422 #profile-photo-upload-close {
2423     font-size: 14px;
2424 }
2425
2426 /* Settings */
2427 .section-subtitle-wrapper {
2428     padding: 1px 10px;
2429 }
2430 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2431     font-family: FontAwesome;
2432     content: "\f0d7";
2433     padding-right: 5px;
2434 }
2435 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2436     font-family: FontAwesome;
2437     content: "\f0da";
2438 }
2439 #settings-nick-wrapper {
2440     margin-bottom: 20px;
2441 }
2442 .group {
2443     margin-left: 20px;
2444 }
2445
2446 /* Intro Notifications */
2447 ul.notif-network-list {
2448     margin-left: -15px;
2449     margin-right: -15px;
2450 }
2451 ul.notif-network-list > li {
2452     padding-left: 15px;
2453     padding-right: 15px;
2454 }
2455 .intro-wrapper.media {
2456     overflow: visible;
2457     word-wrap: break-word;
2458     margin-top: 0;
2459 }
2460 .intro-photo-wrapper img.intro-photo {
2461     height:80px;
2462     width: 80px;
2463     border-radius: 4px;
2464 }
2465 .intro-actions {
2466     display: flex;
2467 }
2468 .intro-enty-name h4 {
2469     font-size: 15px !important;
2470 }
2471 .intro-wrapper button.intro-action-link {
2472     opacity: 0.1;
2473     transition: all 0.25s ease-in-out;
2474 }
2475 .intro-wrapper button.intro-action-link,
2476 .intro-wrapper button.intro-action-link:hover {
2477     padding-right: 5px;
2478     padding-left: 5px;
2479     color: #555;
2480 }
2481 ul li:hover .intro-wrapper button.intro-action-link {
2482     opacity: 0.8;
2483     transition: all 0.25s ease-in-out;
2484 }
2485 ul li:hover .intro-wrapper button.intro-action-link:hover {
2486     opacity: 1;
2487 }
2488 .intro-action-buttons {
2489     margin-top: 15px;
2490     /*display: none;*/
2491     max-height: 0px;
2492     overflow: hidden;
2493     transition: max-height 0.1s ease-out;
2494 }
2495 ul.notif-network-list > li:hover .intro-action-buttons {
2496     /*display: block;*/
2497     max-height: 30px;
2498     transition: max-height 0.1s ease-in;
2499 }
2500 .intro-desc-label, .intro-url-label, .intro-network-label,
2501 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2502 .intro-about-label, .intro-knowyou-label {
2503     font-weight: bold;
2504 }
2505 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2506 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2507 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2508 .intro-contact-info.xs .intro-knowyou-label {
2509     display: block;
2510     margin-top: 5px
2511 }
2512
2513 /* Notifications Page */
2514 ul.notif-network-list li.unseen {
2515     background-color: #f3fcfd;
2516 }
2517 .notif-item img.notif-image {
2518     height: 48px;
2519     width: 48px;
2520     border-radius: 4px;
2521 }
2522 .notif-item .notif-desc-wrapper {
2523     height: 48px;
2524 }
2525 .notif-item .notif-desc-wrapper a {
2526     height: 100%;
2527     display: block;
2528     color: #555;
2529     font-size: 13px;
2530     font-weight: 600;
2531 }
2532
2533 /* Search Page */
2534
2535 /* This is a little bit hacky. Since the search page is used for diferent
2536 content types we can't apply the generic-page-wrapper class.
2537 So we apply the css of the generic-page-wrapper class to the ul element with some
2538 little modifications to emulate a standard page template */
2539 .search-content-wrapper > ul.viewcontact_wrapper {
2540     min-height: calc(100vh - 150px);
2541     padding-top: 15px;
2542     padding-bottom: 20px;
2543     margin: 0;
2544     margin-bottom: 20px;
2545     border: none;
2546     /*background-color: #fff;*/
2547     background-color: rgba(255,255,255,$contentbg_transp);
2548     border-radius: 4px;
2549     position: relative;
2550     /*overflow: hidden;*/
2551     color: #555;
2552     box-shadow: 0 0 3px #dadada;
2553     -webkit-box-shadow: 0 0 3px #dadada;
2554     -moz-box-shadow: 0 0 3px #dadada;
2555 }
2556
2557 /* Help Page */
2558 section.help-content-wrapper h1 {
2559     padding-bottom: 0.3em;
2560     font-size: 1.8em;
2561     border-bottom: 1px solid #ddd;
2562 }
2563 section.help-content-wrapper h2 {
2564     padding-bottom: 0.3em;
2565     font-size: 1.5em;
2566     border-bottom: 1px solid #ddd;
2567 }
2568 section.help-content-wrapper h3 {
2569     font-size: 1.2em;
2570 }
2571 section.help-content-wrapper h4 {
2572     font-size: 1em;
2573 }
2574 section.help-content-wrapper h1,
2575 section.help-content-wrapper h2,
2576 section.help-content-wrapper h3,
2577 section.help-content-wrapper h4,
2578 section.help-content-wrapper h5,
2579 section.help-content-wrapper h6 {
2580     margin-top: 24px;
2581     margin-bottom: 16px;
2582     font-weight: 600;
2583     line-height: 1.25;
2584 }
2585 section.help-content-wrapper p {
2586     margin: 0.4em 0;
2587 }
2588 section.help-content-wrapper p,
2589 section.help-content-wrapper a,
2590 section.help-content-wrapper li {
2591     line-height: 1.6;
2592     font-size: 0.96em;
2593 }
2594
2595 /*
2596 * Overwriting for transparency and other colors
2597 */
2598 main .nav-tabs>li.active>a,
2599 main .nav-tabs>li.active>a:focus,
2600 main .nav-tabs>li.active>a:hover {
2601     background-color: rgba(255,255,255,$contentbg_transp);
2602 }
2603
2604 /*
2605  * Modal
2606  */
2607 .modal hr {
2608     border-color: #eee;
2609 }
2610
2611 /*
2612  * Framework overwrite
2613  */
2614
2615 /* jRange */
2616 .theme-frio .back-bar {
2617     height: 5px !important;
2618     border-radius: 2px;
2619     background-color: #eeeeee;
2620     background-color: #e7e7e7;
2621     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2622     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2623     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2624     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2625     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2626     background-repeat: repeat-x;
2627     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2628 }
2629 .theme-frio .back-bar .selected-bar {
2630     border-radius: 2px;
2631     background-color: $link_color;
2632 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2633     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2634     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2635     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2636     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2637     background-repeat: repeat-x;
2638     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2639 }
2640 .theme-frio .back-bar .pointer {
2641     width: 14px !important;
2642     height: 14px !important;
2643     top: -5px;
2644     -webkit-box-sizing: border-box;
2645     -moz-box-sizing: border-box;
2646     box-sizing: border-box;
2647     border-radius: 10px;
2648     border: 1px solid #AAA;
2649     background-color: #e7e7e7 !important;
2650     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2651     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2652     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2653     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2654     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2655     background-repeat: repeat-x;
2656     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2657 }
2658 .theme-frio .back-bar .pointer-label {
2659     color: #999;
2660 }
2661
2662 /* textcomplete for contact filtering*/
2663 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
2664     position: relative !important;
2665     top: inherit !important;
2666     bottom: inherit !important;
2667     left: inherit !important;
2668     padding: 0;
2669     margin-left: -15px;
2670     margin-right: -15px;
2671     background-color: transparent;
2672     box-shadow: none;
2673     border: none;
2674 }
2675 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
2676     padding-left: 15px;
2677     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2678 }
2679 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
2680     display: none;
2681 }
2682 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
2683 .textcomplete-item > a {
2684     padding: 0 !important;
2685     border-left: none;
2686     background-color: transparent !important;
2687 }
2688 /* this is a little hack for texcomplete contact filter
2689 There are for some reasons empty <a> tags. I don't know why */
2690 .textcomplete-item .contact-wrapper a {
2691     padding: 0;
2692 }
2693
2694 /* hovercard fix */
2695 body .tread-wrapper .hovercard a,
2696 body .tread-wrapper .hovercard a:hover {
2697     color: $link_color;
2698 }
2699 body .tread-wrapper .hovercard:hover .hover-card-content a {
2700     color: $link_color !important;
2701 }
2702
2703 /* Pagination improvements */
2704 .pagination {
2705     text-align: center;
2706     display: block;
2707 }
2708 .pagination > li > a,
2709 .pagination > li > span {
2710     color: $link_color;
2711     float: none;
2712 }
2713 .pagination>li>a:hover,
2714 .pagination>li>span:hover {
2715     color: $link_hover_color;
2716 }
2717 .pagination > .active > a,
2718 .pagination > .active > a:focus,
2719 .pagination > .active > a:hover,
2720 .pagination > .active > span,
2721 .pagination > .active > span:focus,
2722 .pagination > .active > span:hover {
2723     background-color: $link_color;
2724     border-color: $link_color;
2725     border-radius: 3px;
2726 }
2727 .pagination li.pager_n a {
2728     margin-left: 3px;
2729     border-radius: 3px;
2730 }
2731 .pagination .pager_prev a {
2732     margin-left: -5px;
2733     margin-right: 4px;
2734     border-top-right-radius: 3px;
2735     border-bottom-right-radius: 3px;
2736 }
2737 .pagination .pager_next a {
2738     margin-left: 4px;
2739     margin-right: -5px;
2740     border-top-left-radius: 3px;
2741     border-bottom-left-radius: 3px;
2742 }
2743 .pager .next > a,
2744 .pager .previous > a {
2745     float: none;
2746     border-radius: 3px;
2747 }
2748 .pagination .disabled > a,
2749 .pager .disabled > a {
2750     display: none;
2751 }
2752
2753 /*
2754  * some temporary workarounds until this will solved
2755  * elsewhere (e.g. new templates)
2756  */
2757 section .profile-match-wrapper {
2758     float: left;
2759 }