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