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