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