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