]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
fix max-height for screens bigger than 768px
[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 @media (min-width: 768px) {
1332     .fbrowser .folders ul {
1333         max-height: calc(100vh - 255px);
1334     }
1335 }
1336 .fbrowser .folders li {
1337     padding-left: 20px;
1338     padding-right: 10px;
1339     padding-top: 3px;
1340     padding-bottom: 3px;
1341 }
1342 .fbrowser .folders li:hover {
1343     z-index: 2;
1344     color: #555;
1345     background-color: rgba(247, 247, 247, $contentbg_transp);
1346     border-left: 3px solid $link_color !important;
1347     padding-left: 17px;
1348 }
1349 .fbrowser .folders li a,
1350 .fbrowser .folders li a:hover {
1351     color: #555;
1352     font-size: 13px;
1353 }
1354 .fbrowser .folders + .list {
1355     padding-left: 10px;
1356 }
1357 .fbrowser .fbrowser-content-container {
1358     overflow-y: auto;
1359     max-height: calc(100vh - 175px);
1360 }
1361 @media (min-width: 768px) {
1362     .fbrowser .fbrowser-content-container {
1363         max-height: calc(100vh - 220px);
1364     }
1365 }
1366 .fbrowser.image .photo-album-image-wrapper img {
1367     border: 1px solid #ddd;
1368 }
1369 .fbrowser .profile-rotator-wrapper {
1370     min-height: 200px;
1371 }
1372 .fbrowser .fa-spin {
1373    position: absolute;
1374    left: 45%;
1375    top: 40%;
1376    font-size: 48px;
1377    margin:0px auto;
1378 }
1379
1380 /*
1381 /* Stream
1382 */
1383 .panel {
1384     border: none;
1385     /*background-color: #fff;*/
1386     background-color: rgba(255,255,255,$contentbg_transp);
1387     box-shadow: 0 0 3px #dadada;
1388     -webkit-box-shadow: 0 0 3px #dadada;
1389     -moz-box-shadow: 0 0 3px #dadada;
1390     border-radius: 4px;
1391     position: relative;
1392 }
1393 .panel .panel-body {
1394     padding: 15px;
1395     font-size: 14px;
1396 }
1397 .panel .panel-body .wall-item-content {
1398     color: #555;
1399 }
1400 .tread-wrapper .media {
1401     overflow: visible;
1402     word-wrap: break-word;
1403 }
1404
1405 /* Thread hover effects */
1406 .wall-item-container .wall-item-content a,
1407 .wall-item-container a,
1408 .wall-item-container .fakelink,
1409 .toplevel_item .fakelink,
1410 .toplevel_item .wall-item-container .wall-item-responses a {
1411     color: #555;
1412     -webkit-transition: all 0.25s ease-in-out;
1413     -moz-transition: all 0.25s ease-in-out;
1414     -o-transition: all 0.25s ease-in-out;
1415     -ms-transition: all 0.25s ease-in-out;
1416     transition: all 0.25s ease-in-out;
1417 }
1418
1419 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1420 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1421 .toplevel_item:hover .wall-item-content a,
1422 .toplevel_item:hover .wall-item-name,
1423 .wall-item-container:hover .wall-item-content a,
1424 .wall-item-container:hover .wall-item-name,
1425 .wall-item-container:hover .wall-item-location a {
1426     /*color: #6fdbe8;*/
1427     color: $link_color;
1428     -webkit-transition: all 0.25s ease-in-out;
1429     -moz-transition: all 0.25s ease-in-out;
1430     -o-transition: all 0.25s ease-in-out;
1431     -ms-transition: all 0.25s ease-in-out;
1432     transition: all 0.25s ease-in-out;
1433 }
1434
1435 /* wall items */
1436 .wall-item-container {
1437     position: relative;
1438 }
1439
1440 /* wall items contact photo */
1441 .contact-photo {
1442     height: 48px;
1443     width: 48px;
1444     border-radius: 3px;
1445     /*maybe some adional stuff is needed for the different screen sizes */
1446 }
1447 .contact-photo-image-wrapper {
1448     width: 100%;
1449     height: 100%;
1450     overflow: hidden;
1451     position: relative;
1452     text-align: center;
1453 }
1454 .contact-photo-overlay {
1455     width: 100%;
1456     height: 100%;
1457     position: absolute;
1458     overflow: hidden;
1459     top: 0;
1460     left: 0;
1461     border-radius: 3px;
1462     background:rgba(0,0,0,.50);
1463     text-align:center;
1464     opacity:0;
1465     -webkit-transition: opacity .25s ease;
1466     -moz-transition: opacity .25s ease;
1467 }
1468 .contact-photo-overlay:hover {
1469     opacity: 1;
1470 }
1471 .contact-photo-overlay-content {
1472     font-size: 26px;
1473     text-shadow: 1px 1px 1px #ccc;
1474     color:rgba(255,255,255,.85);
1475     height: 100%;
1476     vertical-align: bottom;
1477 }
1478 .contact-photo-xs{
1479     height: 38px;
1480     width: 38px;
1481     border-radius: 3px;
1482 }
1483 .wwto .contact-photo {
1484     width: auto;
1485     height: 25px;
1486     font-size: 8.8px;
1487     padding: 3.6px 0;
1488     border-radius: 2px;
1489     position: absolute;
1490     top: 30px;
1491     left: 30px;
1492     display: inline-block;
1493 }
1494
1495 /* wall items action dropdown menu */
1496 .nav-pills.preferences {
1497     position: absolute;
1498     right: 15px;
1499     top: 10px;
1500 }
1501 .comment .nav-pills.preferences {
1502     right: 0px;
1503     top: 0px;
1504 }
1505 .wall-item-network {
1506     font-size: 13px;
1507 }
1508
1509 /* wall items contact info */
1510 .media .media-body {
1511     font-size: 13px;
1512 }
1513 .media .media-body h4.media-heading {
1514     font-size: 14px;
1515     font-weight: 500;
1516     color: #555;
1517 }
1518 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1519     display: block;
1520 }
1521 .media .contact-info-comment {
1522     display: table-cell;
1523 }
1524 .media .contact-info-xs h5,
1525 .media .contact-info-comment {
1526     margin: 0 0 5px;
1527 }
1528 .media-heading {
1529     margin: 0 0 5px;
1530 }
1531 .wall-item-name,
1532 .shared-author {
1533     font-size: 15px;
1534     font-weight: bold;
1535 }
1536 .wall-item-name.xs {
1537     font-weight: 700;
1538     font-size: 14px;
1539 }
1540
1541 /* The lock symbol popup */
1542 #panel {
1543     position: absolute;
1544     list-style: none;
1545     background-color: $nav_bg;
1546     border: none;
1547     border-radius: 3px;
1548     float: left;
1549     min-width: 160px;
1550     max-width: 220px;
1551     padding: 10px ;
1552     margin: 2px 0 0;
1553     font-size: 14px;
1554     text-align: left;
1555     color: $nav_icon_color;
1556     z-index: 1000;
1557 }
1558
1559 /* wall items content */
1560 .wall-item-content {
1561     word-break: break-word;
1562 }
1563 .wall-item-content img {
1564     max-height: 480px;
1565     object-fit: contain;
1566 }
1567 .wall-item-body > img,
1568 .wall-item-body > a > img {
1569     border-radius: 3px;
1570 }
1571 .wall-item-body .body-attach > a {
1572     color: #555;
1573     display: inline-block;
1574 }
1575 .wall-item-body .body-attach > a div {
1576     color: #555;
1577     width: 20px;
1578 }
1579
1580 /* wall-item content elements */
1581 .shared-wrapper,
1582 .vevent {
1583     padding: 10px;
1584     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1585 }
1586 @media screen and (max-width: 767px) {
1587     .shared-wrapper,
1588     .vevent {
1589     margin-left: 0px;
1590     margin-right: 0px;
1591     }
1592 }
1593 .shared-wrapper:hover,
1594 .vevent:hover {
1595     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1596 }
1597 .shared_header {
1598     margin-left: 0px;
1599     margin-top: 0px;
1600     padding-top: 0px;
1601     margin-bottom: 10px;
1602     border-top: none;
1603     color: inherit;
1604 }
1605 blockquote.shared_content {
1606     padding: 0px;
1607     margin-left: 0px;
1608     color: inherit;
1609 }
1610 code > .hl-main {
1611     padding: 10px 10px 1px 0;
1612 }
1613 .hl-main ol {
1614     line-height: 1.7;
1615 }
1616 .wall-item-tags,
1617 .itemedited {
1618     margin-top: 10px;
1619     font-size: 13px;
1620 }
1621
1622 .wall-item-tags a {
1623     color: #555;
1624 }
1625
1626 .wall-item-tags a:hover {
1627     text-decoration: none;
1628 }
1629 .wall-item-bottom .label,
1630 .wall-item-bottom .label a {
1631     color: #fff;
1632 }
1633
1634 /* item social action buttons */
1635 .wall-item-actions {
1636     margin-top: 15px;
1637 }
1638 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1639     font-size: 13px;
1640     color: #555;
1641     margin-bottom: 0;
1642 }
1643 .wall-item-actions .active {
1644     font-weight: bold;
1645 }
1646 .wall-item-actions .active:hover {
1647     color: $link_color;
1648 }
1649 .wall-item-actions-left {
1650     display: table-cell;
1651     vertical-align: middle;
1652 }
1653 .wall-item-actions-right {
1654     display: flex;
1655 }
1656 .wall-item-actions .checkbox {
1657     margin: 0;
1658     margin-left: 20px;
1659 }
1660 .wall-item-actions .button-event {
1661     padding-left: 5px;
1662     padding-right: 5px;
1663 }
1664 .wall-item-actions .button-comments,
1665 .wall-item-actions .button-votes,
1666 .wall-item-actions .button-likes {
1667     text-transform: capitalize;
1668 }
1669 .wall-item-actions button:hover {
1670     color: #555;
1671     text-decoration: underline;
1672 }
1673 .wall-item-actions .separator {
1674         margin: 0 .3em;
1675 }
1676
1677 /* wall item hover effects */
1678 .wall-item-container .wall-item-links,
1679 .wall-item-container .wall-item-actions,
1680 .wall-item-container .body-attach > a {
1681     opacity: 0.3;
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:hover .wall-item-links,
1689 .wall-item-container:hover .wall-item-actions,
1690 .wall-item-container:hover .body-attach > a {
1691     opacity: 0.6;
1692     -webkit-transition: all 0.25s ease-in-out;
1693     -moz-transition: all 0.25s ease-in-out;
1694     -o-transition: all 0.25s ease-in-out;
1695     -ms-transition: all 0.25s ease-in-out;
1696     transition: all 0.25s ease-in-out;
1697 }
1698 .wall-item-container .wall-item-body .body-attach > a:hover {
1699     opacity: 1;
1700 }
1701
1702 /*
1703 /* Comments
1704 */
1705 .well {
1706     border: none;
1707     box-shadow: none;
1708     /*background-color: #ededed;*/
1709     background-color: rgba(237, 237, 237, $contentbg_transp);
1710     background-image: none;
1711     margin-bottom: 1px;
1712 }
1713 .well-small {
1714     padding: 10px;
1715     border-radius: 3px;
1716 }
1717 .well hr {
1718     margin: 15px 0 10px;
1719     border-top: 1px solid #d9d9d9;
1720 }
1721 .wall-entry .well {
1722     margin-bottom: 0;
1723 }
1724 .comment-container {
1725     margin-top: 10px;
1726     margin-bottom: 0px;
1727     border-top-left-radius: 3px;
1728     border-top-right-radius: 3px;
1729     border-bottom-right-radius: 0px;
1730     border-bottom-left-radius: 0px;
1731 }
1732 .comment .media {
1733     position: relative!important;
1734     margin-top: 0;
1735 }
1736 .hide-comments-outer-wrapper {
1737 /*    text-align: center;
1738     margin-top: -18px;*/
1739 }
1740 .hide-comments-total {
1741     cursor: pointer;
1742 }
1743
1744 /*
1745 * Comment Box
1746 */
1747 .thread_level_2 .wall-item-comment-wrapper {
1748     padding-right: 5px;
1749 }
1750 .comment-edit-submit-wrapper {
1751     margin-bottom: 25px;
1752 }
1753 .comment-edit-submit-wrapper a,
1754 .comment-edit-submit-wrapper a:hover {
1755     padding-top: 5px !important;
1756     padding-bottom: 5px !important;
1757 }
1758 .comment-icon-list > li > .icon,
1759 .comment-icon-list > li > .icon:hover {
1760     color: #555;
1761     background-color: transparent;
1762 }
1763
1764 /* acpopup  + textcompletion*/
1765 .acpopup {
1766     /* max-height: 150px; */
1767     background-color: #ffffff;
1768     border-radius: 4px;
1769     overflow: auto;
1770     z-index: 100000;
1771     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1772 }
1773 nav .acpopup {
1774     /*top: 35px !important;*/
1775     margin-left: -23px;
1776 }
1777 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1778  at the beginning of this file to get rid of the !important */
1779 .textcomplete-item > a {
1780     color: #555 !important;
1781     padding: 5px 20px !important;
1782 }
1783 .textcomplete-item.active > a {
1784     background-color: rgb(247, 247, 247) !important;
1785     background-image: none !important;
1786     border-left: 3px solid $link_color;
1787     padding-left: 17px !important;
1788 }
1789 .textcomplete-item a .forum {
1790     color: $link_color;
1791 }
1792 img.acpopup-img {
1793     border-radius: 4px;
1794  }
1795
1796
1797 /* The wall-item thread levels */
1798 /*.wall-item-container.thread_level_3 {
1799   margin-left: 80px;
1800   width: calc(100% - 90px);
1801 }
1802 .wall-item-container.thread_level_4 {
1803   margin-left: 95px;
1804   width: calc(100% - 105px);
1805 }
1806 .wall-item-container.thread_level_5 {
1807   margin-left: 110px;
1808   width: calc(100% - 120px);
1809 }
1810 .wall-item-container.thread_level_6 {
1811   margin-left: 125px;
1812   width: calc(100% - 135px);
1813 }
1814 .wall-item-container.thread_level_7 {
1815   margin-left: 140px;
1816   width: calc(100% - 150px);
1817 }*/
1818
1819 .wall-item-container.thread_level_3,
1820 .wall-item-container.thread_level_4,
1821 .wall-item-container.thread_level_5,
1822 .wall-item-container.thread_level_6,
1823 .wall-item-container.thread_level_7 {
1824   margin-left: 15px;
1825
1826 }
1827 /* Menubar Tabs */
1828 section > .tabbar-wrapper {
1829 /* The tabbar shouldn't' be visibile inside
1830 the section element. Only after we have
1831 moved it to the nav through js */
1832     display: none !important;
1833 }
1834 #tabmenu,
1835 .tabbar-wrapper,
1836 .tabbar,
1837 .tabbar > li {
1838     height: 100%;
1839     /*margin-left: -15px;*/
1840     padding: 0;
1841 }
1842 #tabmenu .search-heading {
1843     overflow: hidden;
1844     text-overflow: ellipsis;
1845     white-space: nowrap;
1846 }
1847 ul.tabs {
1848     list-style: none;
1849     height: 100%;
1850     padding: 0;
1851     padding-top: 10px;
1852     margin: 0;
1853 }
1854 ul.tabs li {
1855     float: left;
1856     margin: 0;
1857     padding: 0;
1858     /*border-bottom: 0 solid #6fdbe8;*/
1859     border-bottom: 0 solid $link_color;
1860     font-size: 13px;
1861     height: 102%;
1862     transition: all .15s ease;
1863 }
1864 /*ul.tabs.visible-xs > li.active {
1865     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1866 }*/
1867 ul.tabs li a {
1868     margin-left: 10px;
1869     margin-right: 10px;
1870     /*color: #6fdbe8;*/
1871     color: $link_color !important;
1872 }
1873 ul.tabs li:hover, ul.tabs li.active {
1874     border-bottom-width: 4px;
1875 }
1876 ul.tabbar ul.tabs-extended li.active {
1877     width: 100%;
1878     border-bottom-width: 2px;
1879 }
1880 ul.tabbar ul.tabs-extended li.active a {
1881     background: none;
1882 }
1883 ul.dropdown-menu li:hover {
1884     border-bottom-width: 0;
1885 }
1886
1887
1888 /* Dropdown Menu */
1889 .dropdown-menu li a,
1890 .dropdown-menu li .btn-link {
1891     font-size: 13px!important;
1892     font-weight: 600!important;
1893 }
1894 .dropdown-menu li > :hover,
1895 .dropdown-menu li > :visited,
1896 .dropdown-menu li > :focus {
1897     background: 0 0;
1898 }
1899
1900 .dropdown-menu li:first-child {
1901     margin-top: 3px;
1902 }
1903
1904 /* Notificaiotn badges */
1905 .nav-notify .show {
1906     display: block;
1907 }
1908
1909 /* Media Classes */
1910 .media .time,
1911 .media .shared-time,
1912 .media .location,
1913 .media .location a {
1914     font-size: 11px;
1915     color: #bebebe;
1916 }
1917 .media-list > li {
1918     padding: 10px;
1919     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1920     position: relative;
1921 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
1922     border-left: 3px solid rgba(255,255,255,0);
1923     font-size: 12px;
1924 }
1925 .media-list > li:hover,
1926 .media-list > li.selected {
1927     border-left: 3px solid $link_color;
1928     background-color: rgba(247, 247, 247, $contentbg_transp);
1929 }
1930
1931 /* Forms */
1932 .form-control {
1933     border: 2px solid #ededed;
1934     box-shadow: none;
1935 }
1936 .form-control:focus {
1937     /*border: 2px solid #6fdbe8;*/
1938     border: 2px solid $link_color;
1939     outline: 0;
1940     box-shadow: none;
1941 }
1942
1943
1944 .checkbox input[type="checkbox"]:focus + label::before,
1945 .checkbox input[type="radio"]:focus + label::before {
1946     /*border: 2px solid #6fdbe8;*/
1947     border: 2px solid $link_color;
1948     outline: 0;
1949     box-shadow: none;
1950 }
1951
1952 /* Search form */
1953 .form-control.form-search {
1954     border-radius: 30px;
1955     background-image: url(img/icon_search16x16.png);
1956     background-repeat: no-repeat;
1957     background-position: 10px 8px;
1958     padding-left: 34px;
1959 }
1960 .form-group-search {
1961     position: relative;
1962     width: 100%;
1963 }
1964
1965 .form-group-search .form-button-search {
1966     position: absolute;
1967     top: 4px;
1968     right: 4px;
1969     border-radius: 30px;
1970 }
1971 .search-input.form-control.form-search {
1972     width: 100%;
1973 }
1974 .search-heading {
1975     text-align: center;
1976     color: $link_color;
1977     font-size: 20px;
1978 }
1979 .search-content-wrapper > #search-header-wrapper {
1980     display: none;
1981 }
1982 .search-content-wrapper > .section-title-wrapper {
1983     display: none;
1984 }
1985 #navbar-button > #search-save-form > #search-save {
1986     margin-top: 3px;
1987 }
1988 /* Section-Content-Wrapper */
1989 #search-header-wrapper {
1990     padding: 15px;
1991     padding-bottom: 20px;
1992     margin-bottom: 20px;
1993     border: none;
1994     /*background-color: #fff;*/
1995     background-color: rgba(255,255,255,$contentbg_transp);
1996     border-radius: 4px;
1997     position: relative;
1998     /*overflow: hidden;*/
1999     color: #555;
2000     box-shadow: 0 0 3px #dadada;
2001     -webkit-box-shadow: 0 0 3px #dadada;
2002     -moz-box-shadow: 0 0 3px #dadada;
2003 }
2004
2005 /* *******
2006  * PAGES
2007  *********/
2008
2009 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2010  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2011 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2012 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2013 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
2014 .admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper,
2015 .dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper,
2016 .nogroup-content-wrapper, .profperm-content-wrapper {
2017     min-height: calc(100vh - 150px);
2018     padding: 15px;
2019     padding-bottom: 20px;
2020     margin-bottom: 20px;
2021     border: none;
2022     /*background-color: #fff;*/
2023     background-color: rgba(255,255,255,$contentbg_transp);
2024     border-radius: 4px;
2025     position: relative;
2026     /*overflow: hidden;*/
2027     color: #555;
2028     box-shadow: 0 0 3px #dadada;
2029     -webkit-box-shadow: 0 0 3px #dadada;
2030     -moz-box-shadow: 0 0 3px #dadada;
2031 }
2032
2033 .section-title-wrapper {
2034     overflow: hidden;
2035 }
2036 /* Profile-page */
2037 #profile-content-standard,
2038 #profile-content-advanced {
2039     overflow: hidden;
2040 }
2041 #profile-menu {
2042     margin-top: 20px;
2043     margin-bottom: 20px;
2044 }
2045 .contact-block-div.forumlist-profile-advanced {
2046     float: left;
2047 }
2048
2049 /* contacts page */
2050 ul.viewcontact_wrapper {
2051     margin-left: -15px;
2052     margin-right: -15px;
2053 }
2054 ul.viewcontact_wrapper > li {
2055     padding-left: 15px;
2056 }
2057 .contact-wrapper {
2058 /*    padding: 10px;
2059     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2060     position: relative;*/
2061     /*border-left: 3px solid white;*/
2062 }
2063 .contact-wrapper.media {
2064     overflow: visible;
2065     word-wrap: break-word;
2066     margin-top: 0;
2067 }
2068 /* bootstrap hack for .media */
2069 .contact-wrapper.media .media-body {
2070     display: table-cell;
2071     width: 10000px;
2072     *width: auto;
2073     *zoom: 1;
2074 }
2075 .contact-wrapper.media:before, .media:after {
2076     content: "";
2077     display: table;
2078 }
2079 .contact-wrapper.media:after {
2080     clear: both;
2081 }
2082 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2083     height: 80px;
2084     width: 80px;
2085 }
2086 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2087     height: 48px;
2088     width: 48px;
2089 }
2090 .contact-wrapper .contact-photo-overlay-content.xl {
2091     font-size: 48px;
2092 }
2093
2094 .contact-entry-desc {
2095     color: #555;
2096 }
2097 .contact-entry-checkbox {
2098     margin-top: -20px;
2099 }
2100 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2101     font-weight: bold !important;
2102     color: $link_color;
2103     font-size: 15px !important;
2104 }
2105 .contact-wrapper .contact-actions {
2106     display: flex;
2107 }
2108 .contact-wrapper .contact-action-link,
2109 .contact-wrapper .contact-action-link:hover,
2110 .textcomplete-item .contact-wrapper .contact-action-link {
2111     padding: 0 5px;
2112     color: #555;
2113     border: 0;
2114 }
2115 .contact-wrapper .contact-action-link {
2116     opacity: 0.1;
2117     transition: all 0.25s ease-in-out;
2118 }
2119 ul li:hover .contact-wrapper .contact-action-link {
2120     opacity: 0.8;
2121     transition: all 0.25s ease-in-out;
2122 }
2123 ul li:hover .contact-wrapper .contact-action-link:hover {
2124     opacity: 1;
2125 }
2126 #contacts-search-wrapper,
2127 #directory-search-wrapper{
2128     padding: 10px 0;
2129 }
2130 #contact-drop-confirm .contact-actions,
2131 #contact-drop-confirm .contact-photo-overlay,
2132 #contact-drop-confirm .contact-photo-menu {
2133     display: none;
2134 }
2135 #contact-drop-confirm #confirm-form {
2136     margin-top: 20px;
2137 }
2138
2139 /* contact-edit */
2140 #contact-edit-actions {
2141     position: absolute;
2142 }
2143 #contact-edit-status-wrapper {
2144     border: none;
2145     background-color: #E1F5FE;
2146     margin: 15px -15px;
2147 }
2148 #contact-edit-tools {
2149     margin-left: -15px;
2150     margin-right: -15px;
2151 }
2152 #contact-edit-tools > .panel {
2153     padding-left: 15px;
2154     padding-right: 15px;
2155 }
2156 #contact-edit-settings {
2157     display: block;
2158     margin: 0;
2159 }
2160
2161 /* directory page */
2162 #directory-search-heading {
2163     padding-top: 10px;
2164 }
2165
2166 /* private mail */
2167 .message-content-wrapper > li {
2168 /* we need this overwriting because we have no template file
2169    for the general mail page /message
2170 */
2171     list-style-type: none;
2172 }
2173 .mail-thread {
2174     max-height: calc(100vh - 200px);
2175 }
2176 #mail-conversation {
2177     overflow-y: auto;
2178     max-height: calc(100vh - 400px);
2179     max-height: auto;
2180     /*height: 500px;*/
2181     margin-bottom: 0px;
2182     padding: 0 15px;
2183 }
2184 #mail-conversation.can-reply {
2185 /*    border-bottom-left-radius: 0px;
2186     border-bottom-right-radius: 0px;*/
2187 }
2188 .mail-conv-wrapper .media .contact-photo-wrapper img {
2189     height: 48px;
2190     width: 48px;
2191 }
2192 .mail-thread #prvmail-to-label,
2193 .mail-thread #prvmail-subject-label {
2194     display: none;
2195 }
2196 .mail-thread #prvmail-message-label > label {
2197     display:none;
2198 }
2199 .mail-thread #prvmail-message-label textarea {
2200 /*    border-top: none;
2201     margin-top: -10px;
2202     border-top-left-radius: 0px;
2203     border-top-right-radius: 0px;*/
2204     max-height: 120px;
2205 }
2206 .mail-conv-wrapper {
2207     padding: 15px 0;
2208     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2209 }
2210 #message-sidebar {
2211     height: calc(100vh - 150px);
2212 }
2213 #message-preview {
2214     /*padding: 0 10px;*/
2215     height: calc(100% - 20px);
2216 }
2217 #message-preview ul {
2218     margin: 0px;
2219 }
2220 #message-preview .media-list li {
2221     padding: 0px 10px;
2222     border: none;
2223 }
2224 #message-preview .media-list li:hover {
2225     border-left: none !important;
2226 }
2227 #message-preview .media-list li a {
2228     color: $link_color;
2229 }
2230 .mail-list-outside-wrapper {
2231     padding: 5px 0;
2232     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2233 }
2234 .mail-list-outside-wrapper .contact-photo-wrapper img {
2235     height: 48px;
2236     width: 48px;
2237 }
2238
2239 #prvmail-end {
2240     clear:both;
2241 }
2242 /* photos */
2243 .photo-album-actions {
2244     margin-bottom: 10px;
2245 }
2246 .photo-album-actions .photos-order-link {
2247     float: right;
2248 }
2249 /* poke */
2250 #poke-desc {
2251     margin: 5px 0 30px;
2252 }
2253 #poke-wrapper-end {
2254     clear: both;
2255 }
2256
2257 /* Events page */
2258
2259 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2260     color: $link_hover_color;
2261 }
2262 .fc .fc-list-item-title a {
2263     color: $link_color;
2264 }
2265 .fc .fc-list-item-title a[href]:hover {
2266     color: $link_hover_color;
2267     text-decoration: none;
2268 }
2269 /*.event-date-wrapper.medium .event-hover-short-month {
2270     color: $link_color;
2271 }*/
2272 .event-wrapper .event-owner {
2273   margin-bottom: 15px;
2274 }
2275 .event-wrapper .event-owner img {
2276     display: block;
2277 }
2278 .event-owner img {
2279     margin-right: 5px;
2280     height: 48px;
2281     width:  48;
2282     border-radius: 3px;
2283 }
2284 .event-wrapper .vevent {
2285     margin-left: 0;
2286     margin-right: 0;
2287     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2288 }
2289 .event-wrapper .event-buttons {
2290     margin-top: 15px;
2291 }
2292 #event-form-wrapper {
2293     padding-top: 5px;
2294 }
2295 #event-edit-form-wrapper {
2296     padding-top: 15px;
2297 }
2298 #event-nav a {
2299     color: #555;
2300 }
2301 #event-edit-form-wrapper #event-edit-time {
2302     padding: 10px 0;
2303 }
2304 .event-buttons .plink-event-link {
2305     margin-left: 20px;
2306 }
2307 /* Profiles Page */
2308 .profile-listing-table {
2309     display: table;
2310     width: 100%;
2311 }
2312 .profile-listing-row {
2313     display: table-row;
2314 }
2315 .profile-listing-cell {
2316     display: table-cell;
2317 }
2318 .profile-listing-photo {
2319     width: 48px;
2320     height: 48px;
2321     margin: 10px 0px;
2322 }
2323 #profile-listing-new-link-wrapper {
2324     margin-bottom: 20px;
2325 }
2326 .panel-group-settings {
2327     margin-left: -15px;
2328     margin-right: -15px;
2329 }
2330 .panel-group-settings > .panel {
2331     padding-left: 15px;
2332     padding-right: 15px;
2333 }
2334 .profiles-content-wrapper #profile-photo-upload-section {
2335     display: none;
2336     margin-left: -15px;
2337     margin-right: -15px;
2338     margin-top: 15px;
2339     padding: 15px;
2340 }
2341 #profile-photo-upload-close {
2342     font-size: 14px;
2343 }
2344
2345 /* Settings */
2346 .section-subtitle-wrapper {
2347     padding: 1px 10px;
2348 }
2349 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2350     font-family: FontAwesome;
2351     content: "\f0d7";
2352     padding-right: 5px;
2353 }
2354 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2355     font-family: FontAwesome;
2356     content: "\f0da";
2357 }
2358 #settings-nick-wrapper {
2359     margin-bottom: 20px;
2360 }
2361 .group {
2362     margin-left: 20px;
2363 }
2364
2365 /* Intro Notifications */
2366 ul.notif-network-list {
2367     margin-left: -15px;
2368     margin-right: -15px;
2369 }
2370 ul.notif-network-list > li {
2371     padding-left: 15px;
2372     padding-right: 15px;
2373 }
2374 .intro-wrapper.media {
2375     overflow: visible;
2376     word-wrap: break-word;
2377     margin-top: 0;
2378 }
2379 .intro-photo-wrapper img.intro-photo {
2380     height:80px;
2381     width: 80px;
2382     border-radius: 4px;
2383 }
2384 .intro-actions {
2385     display: flex;
2386 }
2387 .intro-enty-name h4 {
2388     font-size: 15px !important;
2389 }
2390 .intro-wrapper button.intro-action-link {
2391     opacity: 0.1;
2392     transition: all 0.25s ease-in-out;
2393 }
2394 .intro-wrapper button.intro-action-link,
2395 .intro-wrapper button.intro-action-link:hover {
2396     padding-right: 5px;
2397     padding-left: 5px;
2398     color: #555;
2399 }
2400 ul li:hover .intro-wrapper button.intro-action-link {
2401     opacity: 0.8;
2402     transition: all 0.25s ease-in-out;
2403 }
2404 ul li:hover .intro-wrapper button.intro-action-link:hover {
2405     opacity: 1;
2406 }
2407 .intro-action-buttons {
2408     margin-top: 15px;
2409     /*display: none;*/
2410     max-height: 0px;
2411     overflow: hidden;
2412     transition: max-height 0.1s ease-out;
2413 }
2414 ul.notif-network-list > li:hover .intro-action-buttons {
2415     /*display: block;*/
2416     max-height: 30px;
2417     transition: max-height 0.1s ease-in;
2418 }
2419 .intro-desc-label, .intro-url-label, .intro-network-label,
2420 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2421 .intro-about-label, .intro-knowyou-label {
2422     font-weight: bold;
2423 }
2424 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2425 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2426 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2427 .intro-contact-info.xs .intro-knowyou-label {
2428     display: block;
2429     margin-top: 5px
2430 }
2431
2432 /* Notifications Page */
2433 ul.notif-network-list li.unseen {
2434     background-color: #f3fcfd;
2435 }
2436 .notif-item img.notif-image {
2437     height: 48px;
2438     width: 48px;
2439     border-radius: 4px;
2440 }
2441 .notif-item .notif-desc-wrapper {
2442     height: 48px;
2443 }
2444 .notif-item .notif-desc-wrapper a {
2445     height: 100%;
2446     display: block;
2447     color: #555;
2448     font-size: 13px;
2449     font-weight: 600;
2450 }
2451
2452 /* Search Page */
2453
2454 /* This is a little bit hacky. Since the search page is used for diferent
2455 content types we can't apply the generic-page-wrapper class.
2456 So we apply the css of the generic-page-wrapper class to the ul element with some
2457 little modifications to emulate a standard page template */
2458 .search-content-wrapper > ul.viewcontact_wrapper {
2459     min-height: calc(100vh - 150px);
2460     padding-top: 15px;
2461     padding-bottom: 20px;
2462     margin: 0;
2463     margin-bottom: 20px;
2464     border: none;
2465     /*background-color: #fff;*/
2466     background-color: rgba(255,255,255,$contentbg_transp);
2467     border-radius: 4px;
2468     position: relative;
2469     /*overflow: hidden;*/
2470     color: #555;
2471     box-shadow: 0 0 3px #dadada;
2472     -webkit-box-shadow: 0 0 3px #dadada;
2473     -moz-box-shadow: 0 0 3px #dadada;
2474 }
2475
2476 /* Help Page */
2477 section.help-content-wrapper h1 {
2478     padding-bottom: 0.3em;
2479     font-size: 1.8em;
2480     border-bottom: 1px solid #ddd;
2481 }
2482 section.help-content-wrapper h2 {
2483     padding-bottom: 0.3em;
2484     font-size: 1.5em;
2485     border-bottom: 1px solid #ddd;
2486 }
2487 section.help-content-wrapper h3 {
2488     font-size: 1.2em;
2489 }
2490 section.help-content-wrapper h4 {
2491     font-size: 1em;
2492 }
2493 section.help-content-wrapper h1,
2494 section.help-content-wrapper h2,
2495 section.help-content-wrapper h3,
2496 section.help-content-wrapper h4,
2497 section.help-content-wrapper h5,
2498 section.help-content-wrapper h6 {
2499     margin-top: 24px;
2500     margin-bottom: 16px;
2501     font-weight: 600;
2502     line-height: 1.25;
2503 }
2504 section.help-content-wrapper p {
2505     margin: 0.4em 0;
2506 }
2507 section.help-content-wrapper p,
2508 section.help-content-wrapper a,
2509 section.help-content-wrapper li {
2510     line-height: 1.6;
2511     font-size: 0.96em;
2512 }
2513
2514 /*
2515 * Overwriting for transparency and other colors
2516 */
2517 main .nav-tabs>li.active>a,
2518 main .nav-tabs>li.active>a:focus,
2519 main .nav-tabs>li.active>a:hover {
2520     background-color: rgba(255,255,255,$contentbg_transp);
2521 }
2522
2523 /*
2524  * Modal
2525  */
2526 .modal hr {
2527     border-color: #eee;
2528 }
2529
2530 /*
2531  * Framework overwrite
2532  */
2533
2534 /* jRange */
2535 .theme-frio .back-bar {
2536     height: 5px !important;
2537     border-radius: 2px;
2538     background-color: #eeeeee;
2539     background-color: #e7e7e7;
2540     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2541     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2542     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2543     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2544     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2545     background-repeat: repeat-x;
2546     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2547 }
2548 .theme-frio .back-bar .selected-bar {
2549     border-radius: 2px;
2550     background-color: $link_color;
2551 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2552     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2553     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2554     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2555     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2556     background-repeat: repeat-x;
2557     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2558 }
2559 .theme-frio .back-bar .pointer {
2560     width: 14px !important;
2561     height: 14px !important;
2562     top: -5px;
2563     -webkit-box-sizing: border-box;
2564     -moz-box-sizing: border-box;
2565     box-sizing: border-box;
2566     border-radius: 10px;
2567     border: 1px solid #AAA;
2568     background-color: #e7e7e7 !important;
2569     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2570     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2571     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2572     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2573     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2574     background-repeat: repeat-x;
2575     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2576 }
2577 .theme-frio .back-bar .pointer-label {
2578     color: #999;
2579 }
2580
2581 /* textcomplete for contact filtering*/
2582 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
2583     position: relative !important;
2584     top: inherit !important;
2585     bottom: inherit !important;
2586     left: inherit !important;
2587     padding: 0;
2588     margin-left: -15px;
2589     margin-right: -15px;
2590     background-color: transparent;
2591     box-shadow: none;
2592     border: none;
2593 }
2594 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
2595     padding-left: 15px;
2596     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2597 }
2598 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
2599     display: none;
2600 }
2601 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
2602 .textcomplete-item > a {
2603     padding: 0 !important;
2604     border-left: none;
2605     background-color: transparent !important;
2606 }
2607 /* this is a little hack for texcomplete contact filter
2608 There are for some reasons empty <a> tags. I don't know why */
2609 .textcomplete-item .contact-wrapper a {
2610     padding: 0;
2611 }
2612
2613 /* hovercard fix */
2614 body .tread-wrapper .hovercard a,
2615 body .tread-wrapper .hovercard a:hover {
2616     color: $link_color;
2617 }
2618 body .tread-wrapper .hovercard:hover .hover-card-content a {
2619     color: $link_color !important;
2620 }
2621
2622 /* Pagination improvements */
2623 .pagination {
2624     text-align: center;
2625     display: block;
2626 }
2627 .pagination > li > a,
2628 .pagination > li > span {
2629     color: $link_color;
2630     float: none;
2631 }
2632 .pagination>li>a:hover,
2633 .pagination>li>span:hover {
2634     color: $link_hover_color;
2635 }
2636 .pagination > .active > a,
2637 .pagination > .active > a:focus,
2638 .pagination > .active > a:hover,
2639 .pagination > .active > span,
2640 .pagination > .active > span:focus,
2641 .pagination > .active > span:hover {
2642     background-color: $link_color;
2643     border-color: $link_color;
2644     border-radius: 3px;
2645 }
2646 .pagination li.pager_n a {
2647     margin-left: 3px;
2648     border-radius: 3px;
2649 }
2650 .pagination .pager_prev a {
2651     margin-left: -5px;
2652     margin-right: 4px;
2653     border-top-right-radius: 3px;
2654     border-bottom-right-radius: 3px;
2655 }
2656 .pagination .pager_next a {
2657     margin-left: 4px;
2658     margin-right: -5px;
2659     border-top-left-radius: 3px;
2660     border-bottom-left-radius: 3px;
2661 }
2662 .pager .next > a,
2663 .pager .previous > a {
2664     float: none;
2665     border-radius: 3px;
2666 }
2667 .pagination .disabled > a,
2668 .pager .disabled > a {
2669     display: none;
2670 }
2671
2672 /*
2673  * some temporary workarounds until this will solved
2674  * elsewhere (e.g. new templates)
2675  */
2676 section .profile-match-wrapper {
2677     float: left;
2678 }