]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
27a52633bc1beda90e97b435d800c4d8c2cf6777
[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 }
799 .nav-pills .dropdown-menu li a i,
800 .nav-tabs .dropdown-menu li a i,
801 .account .dropdown-menu li a i,
802 .contact-photo-wrapper .dropdown-menu li a i {
803     margin-right: 5px;
804     font-size: 14px;
805     display: inline-block;
806     width: 14px
807 }
808 .nav-pills .dropdown-menu li a:hover,
809 .nav-tabs .dropdown-menu li a:hover,
810 .account .dropdown-menu li a:hover,
811 .contact-photo-wrapper .dropdown-menu li a:hover,
812 .nav-pills .dropdown-menu li a:visited,
813 .nav-tabs .dropdown-menu li a:visited,
814 .account .dropdown-menu li a:visited,
815 .contact-photo-wrapper .dropdown-menu li a:visited,
816 .nav-pills .dropdown-menu li a:hover,
817 .nav-tabs .dropdown-menu li a:hover,
818 .account .dropdown-menu li a:hover,
819 .contact-photo-wrapper .dropdown-menu li a:hover,
820 .nav-pills .dropdown-menu li a:focus,
821 .nav-tabs .dropdown-menu li a:focus,
822 .account .dropdown-menu li a:focus,
823 .contact-photo-wrapper .dropdown-menu li a:focus {
824     background: 0 0
825 }
826 .nav-pills .dropdown-menu li:hover,
827 .nav-tabs .dropdown-menu li:hover,
828 .account .dropdown-menu li:hover,
829 .contact-photo-wrapper .dropdown-menu li:hover,
830 .nav-pills .dropdown-menu li.selected,
831 .nav-tabs .dropdown-menu li.selected,
832 .account .dropdown-menu li.selected,
833 .contact-photo-wrapper .dropdown-menu li.selected {
834     /*border-left: 3px solid #6fdbe8;*/
835     border-left: 3px solid $link_color;
836     color: #fff!important;
837     background-color: $menu_background_hover_color !important
838 }
839 .nav-pills.preferences .dropdown .dropdown-toggle {
840     color: #bebebe
841 }
842 .nav-pills.preferences .dropdown.open .dropdown-toggle,
843 .nav-pills.preferences .dropdown.open .dropdown-toggle:hover {
844     background-color: $nav_bg
845 }
846
847 .nav-pills.preferences .dropdown .dropdown-toggle {
848     padding: 2px 10px;
849 }
850
851
852 /*
853  * Aside
854  *
855  */
856
857 aside .widget,
858 .nav-container .widget {
859     border: none;
860     color: #777;
861     /*background-color: #fff;*/
862     background-color: rgba(255,255,255,$contentbg_transp);
863     box-shadow: 0 0 3px #dadada;
864     -webkit-box-shadow: 0 0 3px #dadada;
865     -moz-box-shadow: 0 0 3px #dadada;
866     border-radius: 4px;
867     position: relative;
868     margin-bottom: 20px;
869     padding: 10px;
870     font-size: 13px;
871 }
872 aside .widget h3,
873 .nav-container .widget h3 {
874     font-weight: bold;
875     font-size: 16px;
876     margin: 0;
877     padding-bottom: 20px;
878 }
879
880 aside .widget ul,
881 .nav-container .widget ul {
882     padding: 0px;
883     margin-top: 0px;
884     margin-bottom: 0px;
885     margin-left: -10px;
886     margin-right: -10px;
887     /*padding-left: 10px;*/
888     list-style: none;
889 }
890
891 aside .widget li,
892 .nav-container .widget li {
893     padding-top: 2px;
894     padding-bottom: 2px;
895     padding-left: 20px;
896     padding-right: 20px;
897 }
898 aside .widget li:hover,
899 aside .widget li.selected,
900 .nav-container .widget li:hover {
901     z-index: 2;
902     color: #555;
903     /*background-color: #f7f7f7;*/
904     background-color: rgba(247, 247, 247, $contentbg_transp);
905     /*border-left: 3px solid #6fdbe8!important;*/
906     border-left: 3px solid $link_color !important;
907     padding-left: 17px;
908 }
909 aside .widget li a,
910 aside .widget li a:hover {
911     color: #555;
912 }
913
914 /* forumlist widget */
915 aside #datebrowse-sidebar .posted-date-selector-months{
916     margin-left: 0;
917     margin-bottom: 10px;
918     width: 100%
919 }
920 aside #datebrowse-sidebar .posted-date-selector-months li{
921     padding-left: 30px;
922 }
923 aside #datebrowse-sidebar .posted-date-selector-months li:hover{
924     padding-left: 27px;
925 }
926
927 /* vcard / h-card */
928 aside .vcard #profile-photo-wrapper{
929     margin: 0;
930 }
931 aside .vcard img.u-photo,
932 aside img.vcard-photo {
933     width: 100%;
934     border-radius: 3px;
935 }
936 aside .vcard .tool .action{
937     position: absolute;
938     top:20px;
939     right: 20px;
940     font-size: 32px;
941     width: 45px;
942     height: 45px;
943     background: rgba(0,0,0,.50);
944     text-align: center;
945     border-radius: 3px;
946     opacity: 0;
947     -webkit-transition: all 0.25s ease-in-out;
948     -moz-transition: all 0.25s ease-in-out;
949     -o-transition: all 0.25s ease-in-out;
950     -ms-transition: all 0.25s ease-in-out;
951     transition: all 0.25s ease-in-out;
952 }
953 aside .vcard .tool a {
954 color: rgba(255,255,255,.85);
955 }
956 aside .vcard #profile-photo-wrapper:hover .tool .action {
957     opacity: 1;
958 }
959 aside .vcard .profile-header {
960     margin-bottom: 20px;
961 }
962 aside .vcard .fn {
963     font-size: 20px;
964     font-weight: bold;
965 }
966 aside .vcard .p-addr {
967     font-style: italic;
968     overflow: hidden;
969     text-overflow: ellipsis;
970     white-space: nowrap;
971     padding-bottom: 2px;
972 }
973
974 aside .vcard .detail {
975     display: table;
976     padding: 5px 0;
977 }
978 aside .xmpp {
979     display: table;
980 }
981 aside .vcard .icon {
982     display: table-cell;
983     padding-right: 10px;
984 }
985 #profile-extra-links {
986     margin-bottom: 20px;
987 }
988 aside .vcard #dfrn-request-link-button,
989 aside .vcard #wallmessage-link-botton {
990     width: 50%;
991     margin: 0 0 0 -5px;
992     float: left;
993     padding: 0 5px;
994 }
995 aside .vcard #dfrn-request-link,
996 aside .vcard #wallmessage-link {
997     width: 100%;
998 }
999 /* vcard-short-info */
1000 #vcard-short-info,
1001 #nav-short-info .contact-wrapper {
1002     margin-top: 2px;
1003     height: 40px;
1004     white-space: nowrap;
1005     overflow: hidden;
1006     padding-right: 20px;
1007     margin-left: -14px;
1008 }
1009 #vcard-short-photo-wrapper img,
1010 #nav-short-info .contact-wrapper img {
1011     height: 34px;
1012     width: 34px;
1013     border-radius: 3px;
1014 }
1015 #vcard-short-desc,
1016 #nav-short-info .contact-wrapper .media-body {
1017     display: block;
1018     height: 34px;
1019     width: 100%;
1020     text-overflow: ellipsis;
1021 }
1022 #vcard-short-desc > .media-heading,
1023 #vcard-short-desc > .vcard-short-addr,
1024 #nav-short-info .contact-wrapper .media-heading,
1025 #nav-short-info .contact-wrapper #contact-entry-url-network {
1026     text-overflow: ellipsis;
1027     overflow: hidden;
1028 }
1029 #vcard-short-desc > .media-heading,
1030 #nav-short-info .contact-wrapper .media-heading {
1031     margin-bottom: 1px;
1032     font-weight: bold;
1033 }
1034 #nav-short-info .contact-wrapper .media-heading a {
1035     color: #555;
1036     font-size: 14px !important;
1037 }
1038 #vcard-short-desc > .vcard-short-addr,
1039 #nav-short-info .contact-wrapper #contact-entry-url-network {
1040     color: #777;
1041     font-size: 12px;
1042 }
1043 .network-content-wrapper > #viewcontact_wrapper-network,
1044 #nav-short-info .contact-wrapper .contact-photo-overlay,
1045 #nav-short-info .contact-wrapper .contact-actions{
1046     display: none
1047 }
1048
1049 aside #peoplefind-sidebar input,
1050 aside #follow-sidebar input {
1051     height: 30px;
1052     background-position: 10px 5px;
1053 }
1054 aside #peoplefind-sidebar .form-group-search .form-button-search,
1055 aside #follow-sidebar .form-group-search .form-button-search {
1056     padding: 2px 8px;
1057 }
1058
1059 aside #group-sidebar .group-edit-tool,
1060 aside #saved-search-list .savedsearchdrop {
1061     opacity: 0.1;
1062     transition: all 0.25s ease-in-out;
1063 }
1064 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
1065 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
1066     opacity: 0.8;
1067     transition: all 0.25s ease-in-out;
1068 }
1069 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
1070 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
1071     opacity: 1;
1072 }
1073 aside #group-sidebar li .group-checkbox {
1074     margin: 0;
1075 }
1076 aside #group-sidebar li .group-edit-tool {
1077     padding-right: 10px;
1078 }
1079 aside #group-sidebar li .group-edit-tool:first-child {
1080     padding-right: 0px;
1081 }
1082
1083 /* contact block widget */
1084 #contact-block .contact-block-content {
1085     clear: both;
1086     overflow: auto;
1087     height: auto;
1088 }
1089 #contact-block .contact-block-div {
1090     float: left;
1091     margin: 0px 5px 5px 0px;
1092 /*    height: 90px;
1093     width: 90px;*/
1094 }
1095 #contact-block contact-block-link {
1096
1097 }
1098 #contact-block .contact-block-img {
1099     height: 75px;
1100     width: 75px;
1101     border-radius: 4px;
1102 }
1103 /* Section */
1104 section ul.tabs {
1105     display: none !important;
1106 }
1107
1108 /* Jot */
1109 section #jotOpen {
1110     display: none;
1111 }
1112 #jotOpen {
1113     margin-top: 3px;
1114     float: right;
1115 }
1116 #jot-content {
1117     display: none;
1118 }
1119 .jothidden {
1120     /*display: none;*/
1121 }
1122 #jot-modal .modal-header a,
1123 #profile-jot-submit-wrapper a {
1124     color: #555;
1125 }
1126 #jot-modal .modal-header {
1127     border-bottom: none;
1128 }
1129 #jot-title-wrap, #jot-category-wrap {
1130     margin-bottom: 5px;
1131 }
1132 #jot-text-wrap {
1133     margin-top: 20px;
1134 }
1135 #jot-text-wrap textarea {
1136     min-height: 100px;
1137 }
1138 #profile-jot-wrapper button#jot-submit {
1139     margin-top: 5px;
1140 }
1141
1142 /* ACL */
1143 /*#jot-modal-body {
1144     height: auto;
1145     max-height: calc(100vh - 130px);
1146     overflow-y: hidden;
1147 }*/
1148 #acl-search {
1149     margin-top: 20px;
1150     /*padding: 8px;*/
1151     /*border: 1px solid #ccc;*/
1152     width: 100%;
1153 }
1154 #acl-list {
1155     display: block;
1156     border: 1px solid #ccc;
1157     overflow: auto;
1158     clear: both;
1159     min-height: 62px;
1160     margin-top: 20px;
1161     padding: 10px 10px 0px 0px;
1162     -webkit-border-radius: 4px;
1163     -moz-border-radius: 4px;
1164     border-radius: 4px;
1165 }
1166 #acl-list-content {
1167     overflow-y: auto;
1168     max-height: calc(100vh - 330px);
1169     height: auto !important;
1170 }
1171 .acl-list-item {
1172     width: 48%;
1173     width: calc(50% - 10px);
1174     border: 1px solid #ccc;
1175     margin: 0px 0px 10px 10px;
1176     padding: 5px;
1177     float: left;
1178     -webkit-border-radius: 4px;
1179     -moz-border-radius: 4px;
1180     border-radius: 4px;
1181 }
1182 .acl-list-item img {
1183     width: 40px;
1184     height: 40px;
1185     float: left;
1186     margin-right: 5px;
1187     -webkit-border-radius: 4px;
1188     -moz-border-radius: 4px;
1189     border-radius: 4px;
1190 }
1191 .acl-list-item p {
1192     margin: 0px;
1193     white-space: nowrap;
1194     overflow: hidden;
1195     text-overflow: ellipsis;
1196 }
1197 .acl-list-item.groupshow {
1198     background-color: #8DB255
1199 }
1200 .acl-list-item.grouphide {
1201     background-color: #E68364;
1202 }
1203 .acl-button-show, .acl-button-hide {
1204     float: right;
1205     margin-left: 5px;
1206 }
1207 #acl-showall.selected {
1208     background-color: #4CAF50;
1209     color: #fff;
1210 }
1211 .acl-button-show.selected {
1212     background-color: #4CAF50;
1213     color: #fff;
1214 }
1215 .acl-button-hide.selected {
1216     background-color: #F44336;
1217     color: #fff;
1218 }
1219
1220 /*
1221 /* Stream
1222 */
1223 .panel {
1224     border: none;
1225     /*background-color: #fff;*/
1226     background-color: rgba(255,255,255,$contentbg_transp);
1227     box-shadow: 0 0 3px #dadada;
1228     -webkit-box-shadow: 0 0 3px #dadada;
1229     -moz-box-shadow: 0 0 3px #dadada;
1230     border-radius: 4px;
1231     position: relative;
1232 }
1233 .panel .panel-body {
1234     padding: 15px;
1235     font-size: 14px;
1236 }
1237 .panel .panel-body .wall-item-content {
1238     color: #555;
1239 }
1240 .tread-wrapper .media {
1241     overflow: visible;
1242     word-wrap: break-word;
1243 }
1244
1245 /* Thread hover effects */
1246 .wall-item-container .wall-item-content a,
1247 .wall-item-container a,
1248 .wall-item-container .fakelink,
1249 .toplevel_item .fakelink,
1250 .toplevel_item .wall-item-container .btn-link,
1251 .wall-item-container .btn-link,
1252 .toplevel_item .wall-item-container .wall-item-responses a {
1253     color: #555;
1254     -webkit-transition: all 0.25s ease-in-out;
1255     -moz-transition: all 0.25s ease-in-out;
1256     -o-transition: all 0.25s ease-in-out;
1257     -ms-transition: all 0.25s ease-in-out;
1258     transition: all 0.25s ease-in-out;
1259 }
1260
1261 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1262 .toplevel_item:hover .wall-item-container:hover .btn-link,
1263 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1264 .toplevel_item:hover .wall-item-content a,
1265 .toplevel_item:hover .wall-item-name,
1266 .wall-item-container:hover .wall-item-content a,
1267 .wall-item-container:hover .wall-item-name,
1268 .wall-item-container:hover .wall-item-location a {
1269     /*color: #6fdbe8;*/
1270     color: $link_color;
1271     -webkit-transition: all 0.25s ease-in-out;
1272     -moz-transition: all 0.25s ease-in-out;
1273     -o-transition: all 0.25s ease-in-out;
1274     -ms-transition: all 0.25s ease-in-out;
1275     transition: all 0.25s ease-in-out;
1276 }
1277
1278 /* wall items */
1279 .wall-item-container {
1280     position: relative;
1281 }
1282
1283 /* wall items contact photo */
1284 .contact-photo {
1285     height: 48px;
1286     width: 48px;
1287     border-radius: 3px;
1288     /*maybe some adional stuff is needed for the different screen sizes */
1289 }
1290 .contact-photo-image-wrapper {
1291     width: 100%;
1292     height: 100%;
1293     overflow: hidden;
1294     position: relative;
1295     text-align: center;
1296 }
1297 .contact-photo-overlay {
1298     width: 100%;
1299     height: 100%;
1300     position: absolute;
1301     overflow: hidden;
1302     top: 0;
1303     left: 0;
1304     border-radius: 3px;
1305     background:rgba(0,0,0,.50);
1306     text-align:center;
1307     opacity:0;
1308     -webkit-transition: opacity .25s ease;
1309     -moz-transition: opacity .25s ease;
1310 }
1311 .contact-photo-overlay:hover {
1312     opacity: 1;
1313 }
1314 .contact-photo-overlay-content {
1315     font-size: 26px;
1316     text-shadow: 1px 1px 1px #ccc;
1317     color:rgba(255,255,255,.85);
1318     height: 100%;
1319     vertical-align: bottom;
1320 }
1321 .contact-photo-xs{
1322     height: 38px;
1323     width: 38px;
1324     border-radius: 3px;
1325 }
1326 .wwto .contact-photo {
1327     width: auto;
1328     height: 25px;
1329     font-size: 8.8px;
1330     padding: 3.6px 0;
1331     border-radius: 2px;
1332     position: absolute;
1333     top: 30px;
1334     left: 30px;
1335     display: inline-block;
1336 }
1337
1338 /* wall items action dropdown menu */
1339 .nav-pills.preferences {
1340     position: absolute;
1341     right: 15px;
1342     top: 10px;
1343 }
1344 .comment .nav-pills.preferences {
1345     right: 0px;
1346     top: 0px;
1347 }
1348 .wall-item-network {
1349     font-size: 13px;
1350 }
1351
1352 /* wall items contact info */
1353 .media .media-body {
1354     font-size: 13px;
1355 }
1356 .media .media-body h4.media-heading {
1357     font-size: 14px;
1358     font-weight: 500;
1359     color: #555;
1360 }
1361 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1362     display: block;
1363 }
1364 .media .contact-info-comment {
1365     display: table-cell;
1366 }
1367 .media .contact-info-xs h5,
1368 .media .contact-info-comment {
1369     margin: 0 0 5px;
1370 }
1371 .media-heading {
1372     margin: 0 0 5px;
1373 }
1374 .wall-item-name,
1375 .shared-author {
1376     font-size: 15px;
1377     font-weight: bold;
1378 }
1379 .wall-item-name.xs {
1380     font-weight: 700;
1381     font-size: 14px;
1382 }
1383
1384 /* The lock symbol popup */
1385 #panel {
1386     position: absolute;
1387     list-style: none;
1388     background-color: $nav_bg;
1389     border: none;
1390     border-radius: 3px;
1391     float: left;
1392     min-width: 160px;
1393     max-width: 220px;
1394     padding: 10px ;
1395     margin: 2px 0 0;
1396     font-size: 14px;
1397     text-align: left;
1398     color: $nav_icon_color;
1399     z-index: 1000;
1400 }
1401
1402 /* wall items content */
1403 .wall-item-content {
1404     word-break: break-word;
1405 }
1406 .wall-item-content img {
1407     max-height: 480px;
1408     object-fit: contain;
1409 }
1410 .wall-item-body > img,
1411 .wall-item-body > a > img {
1412     border-radius: 3px;
1413 }
1414 .wall-item-body .body-attach > a {
1415     color: #555;
1416     display: inline-block;
1417 }
1418 .wall-item-body .body-attach > a div {
1419     color: #555;
1420     width: 20px;
1421 }
1422
1423 .shared-wrapper,
1424 .vevent {
1425     padding: 10px;
1426     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1427 }
1428 @media screen and (max-width: 767px) {
1429     .shared-wrapper,
1430     .vevent {
1431         margin-left: 0px;
1432         margin-right: 0px;
1433     }
1434 }
1435 .shared-wrapper:hover,
1436 .vevent:hover {
1437     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1438 }
1439 .shared_header {
1440     margin-left: 0px;
1441     margin-top: 0px;
1442     padding-top: 0px;
1443     margin-bottom: 10px;
1444     border-top: none;
1445     color: inherit;
1446 }
1447 blockquote.shared_content {
1448     padding: 0px;
1449     margin-left: 0px;
1450     color: inherit;
1451 }
1452 .wall-item-tags,
1453 .itemedited {
1454     margin-top: 10px;
1455     font-size: 13px;
1456 }
1457
1458 .wall-item-tags a {
1459     color: #555;
1460 }
1461
1462 .wall-item-tags a:hover {
1463     text-decoration: none;
1464 }
1465 .wall-item-bottom .label,
1466 .wall-item-bottom .label a {
1467     color: #fff;
1468 }
1469
1470 /* item social action buttons */
1471 .wall-item-actions, .wall-item-actions a {
1472     font-size: 13px;
1473     /*color: #aeaeae;*/
1474     color: #555;
1475     margin-top: 15px;
1476     margin-bottom: 0;
1477 }
1478 .wall-item-actions a:hover {
1479     color: #555;
1480 }
1481 .wall-item-actions-left {
1482     display: table-cell;
1483     vertical-align: middle;
1484 }
1485 .wall-item-actions-right {
1486     display: flex;
1487 }
1488 .wall-item-actions .checkbox {
1489     margin: 0;
1490     margin-left: 20px;
1491 }
1492 .wall-item-actions .button-event {
1493     padding-left: 5px;
1494     padding-right: 5px;
1495 }
1496 .wall-item-actions .button-comments,
1497 .wall-item-actions .button-votes,
1498 .wall-item-actions .button-likes {
1499     padding-left: 0px;
1500     padding-right: 0px;
1501         text-transform: capitalize;
1502 }
1503
1504 /* wall item hover effects */
1505 .wall-item-container .wall-item-links,
1506 .wall-item-container .wall-item-actions,
1507 .wall-item-container .body-attach > a {
1508     opacity: 0.3;
1509     -webkit-transition: all 0.25s ease-in-out;
1510     -moz-transition: all 0.25s ease-in-out;
1511     -o-transition: all 0.25s ease-in-out;
1512     -ms-transition: all 0.25s ease-in-out;
1513     transition: all 0.25s ease-in-out;
1514 }
1515 .wall-item-container:hover .wall-item-links,
1516 .wall-item-container:hover .wall-item-actions,
1517 .wall-item-container:hover .body-attach > a {
1518     opacity: 0.6;
1519     -webkit-transition: all 0.25s ease-in-out;
1520     -moz-transition: all 0.25s ease-in-out;
1521     -o-transition: all 0.25s ease-in-out;
1522     -ms-transition: all 0.25s ease-in-out;
1523     transition: all 0.25s ease-in-out;
1524 }
1525 .wall-item-container .wall-item-body .body-attach > a:hover {
1526     opacity: 1;
1527 }
1528
1529 /*
1530 /* Comments
1531 */
1532 .well {
1533     border: none;
1534     box-shadow: none;
1535     /*background-color: #ededed;*/
1536     background-color: rgba(237, 237, 237, $contentbg_transp);
1537     background-image: none;
1538     margin-bottom: 1px;
1539 }
1540 .well-small {
1541     padding: 10px;
1542     border-radius: 3px;
1543 }
1544 .well hr {
1545     margin: 15px 0 10px;
1546     border-top: 1px solid #d9d9d9;
1547 }
1548 .wall-entry .well {
1549     margin-bottom: 0;
1550 }
1551 .comment-container {
1552     margin-top: 10px;
1553     margin-bottom: 0px;
1554     border-top-left-radius: 3px;
1555     border-top-right-radius: 3px;
1556     border-bottom-right-radius: 0px;
1557     border-bottom-left-radius: 0px;
1558 }
1559 .comment .media {
1560     position: relative!important;
1561     margin-top: 0;
1562 }
1563 .hide-comments-outer-wrapper {
1564 /*    text-align: center;
1565     margin-top: -18px;*/
1566 }
1567 .hide-comments-total {
1568     cursor: pointer;
1569 }
1570
1571 /*
1572 * Comment Box
1573 */
1574 .thread_level_2 .wall-item-comment-wrapper {
1575     padding-right: 5px;
1576 }
1577 .comment-edit-submit-wrapper {
1578     margin-bottom: 25px;
1579 }
1580 .comment-edit-submit-wrapper a,
1581 .comment-edit-submit-wrapper a:hover {
1582     padding-top: 5px !important;
1583     padding-bottom: 5px !important;
1584 }
1585 .comment-icon-list a.icon,
1586 .comment-icon-list a.icon:hover {
1587     color: #555;
1588     background-color: transparent;
1589 }
1590
1591 /* acpopup  + textcompletion*/
1592 .acpopup {
1593     /* max-height: 150px; */
1594     background-color: #ffffff;
1595     border-radius: 4px;
1596     overflow: auto;
1597     z-index: 100000;
1598     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1599 }
1600 nav .acpopup {
1601     /*top: 35px !important;*/
1602     margin-left: -23px;
1603 }
1604 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1605  at the beginning of this file to get rid of the !important */
1606 .textcomplete-item > a {
1607     color: #555 !important;
1608     padding: 5px 20px !important;
1609 }
1610 .textcomplete-item.active > a {
1611     background-color: rgb(247, 247, 247) !important;
1612     background-image: none !important;
1613     border-left: 3px solid $link_color;
1614     padding-left: 17px !important;
1615 }
1616 .textcomplete-item a .forum {
1617     color: $link_color;
1618 }
1619 img.acpopup-img {
1620     border-radius: 4px;
1621  }
1622
1623
1624 /* The wall-item thread levels */
1625 /*.wall-item-container.thread_level_3 {
1626   margin-left: 80px;
1627   width: calc(100% - 90px);
1628 }
1629 .wall-item-container.thread_level_4 {
1630   margin-left: 95px;
1631   width: calc(100% - 105px);
1632 }
1633 .wall-item-container.thread_level_5 {
1634   margin-left: 110px;
1635   width: calc(100% - 120px);
1636 }
1637 .wall-item-container.thread_level_6 {
1638   margin-left: 125px;
1639   width: calc(100% - 135px);
1640 }
1641 .wall-item-container.thread_level_7 {
1642   margin-left: 140px;
1643   width: calc(100% - 150px);
1644 }*/
1645
1646 .wall-item-container.thread_level_3,
1647 .wall-item-container.thread_level_4,
1648 .wall-item-container.thread_level_5,
1649 .wall-item-container.thread_level_6,
1650 .wall-item-container.thread_level_7 {
1651   margin-left: 15px;
1652
1653 }
1654 /* Menubar Tabs */
1655 #tabmenu,
1656 .tabbar,
1657 .tabbar > li {
1658     height: 100%;
1659     /*margin-left: -15px;*/
1660     padding: 0;
1661 }
1662 #tabmenu .search-heading {
1663     overflow: hidden;
1664     text-overflow: ellipsis;
1665     white-space: nowrap;
1666 }
1667 ul.tabs {
1668     list-style: none;
1669     height: 100%;
1670     padding: 0;
1671     padding-top: 10px;
1672     margin: 0;
1673 }
1674 ul.tabs li {
1675     float: left;
1676     margin: 0;
1677     padding: 0;
1678     /*border-bottom: 0 solid #6fdbe8;*/
1679     border-bottom: 0 solid $link_color;
1680     font-size: 13px;
1681     height: 102%;
1682     transition: all .15s ease;
1683 }
1684 /*ul.tabs.visible-xs > li.active {
1685     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1686 }*/
1687 ul.tabs li a {
1688     margin-left: 10px;
1689     margin-right: 10px;
1690     /*color: #6fdbe8;*/
1691     color: $link_color !important;
1692 }
1693 ul.tabs li:hover, ul.tabs li.active {
1694     border-bottom-width: 4px;
1695 }
1696 ul.tabbar ul.tabs-extended li.active {
1697     width: 100%;
1698     border-bottom-width: 2px;
1699 }
1700 ul.tabbar ul.tabs-extended li.active a {
1701     background: none;
1702 }
1703 ul.dropdown-menu li:hover {
1704     border-bottom-width: 0;
1705 }
1706
1707
1708 /* Dropdown Menu */
1709 .dropdown-menu li a {
1710     font-size: 13px!important;
1711     font-weight: 600!important;
1712 }
1713 .dropdown-menu li a:hover, .dropdown-menu li a:visited,
1714 .dropdown-menu li a:hover, .dropdown-menu li a:focus {
1715     background: 0 0;
1716 }
1717
1718 .dropdown-menu li:first-child {
1719     margin-top: 3px;
1720 }
1721
1722 /* Notificaiotn badges */
1723 .nav-notify .show {
1724     display: block;
1725 }
1726
1727 /* Media Classes */
1728 .media .time,
1729 .media .shared-time,
1730 .media .location,
1731 .media .location a {
1732     font-size: 11px;
1733     color: #bebebe;
1734 }
1735 .media-list > li {
1736     padding: 10px;
1737     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1738     position: relative;
1739 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
1740     border-left: 3px solid rgba(255,255,255,0);
1741     font-size: 12px;
1742 }
1743 .media-list > li:hover,
1744 .media-list > li.selected {
1745     border-left: 3px solid $link_color;
1746     background-color: rgba(247, 247, 247, $contentbg_transp);
1747 }
1748
1749 /* Forms */
1750 .form-control {
1751     border: 2px solid #ededed;
1752     box-shadow: none;
1753 }
1754 .form-control:focus {
1755     /*border: 2px solid #6fdbe8;*/
1756     border: 2px solid $link_color;
1757     outline: 0;
1758     box-shadow: none;
1759 }
1760
1761
1762 .checkbox input[type="checkbox"]:focus + label::before,
1763 .checkbox input[type="radio"]:focus + label::before {
1764     /*border: 2px solid #6fdbe8;*/
1765     border: 2px solid $link_color;
1766     outline: 0;
1767     box-shadow: none;
1768 }
1769
1770 /* Search form */
1771 .form-control.form-search {
1772     border-radius: 30px;
1773     background-image: url(img/icon_search16x16.png);
1774     background-repeat: no-repeat;
1775     background-position: 10px 8px;
1776     padding-left: 34px;
1777 }
1778 .form-group-search {
1779     position: relative;
1780     width: 100%;
1781 }
1782
1783 .form-group-search .form-button-search {
1784     position: absolute;
1785     top: 4px;
1786     right: 4px;
1787     border-radius: 30px;
1788 }
1789 .search-input.form-control.form-search {
1790     width: 100%;
1791 }
1792 .search-heading {
1793     text-align: center;
1794     color: $link_color;
1795     font-size: 20px;
1796 }
1797 .search-content-wrapper > #search-header-wrapper {
1798     display: none;
1799 }
1800 .search-content-wrapper > .section-title-wrapper {
1801     display: none;
1802 }
1803 #navbar-button > #search-save-form > #search-save {
1804     margin-top: 3px;
1805 }
1806 /* Section-Content-Wrapper */
1807 #search-header-wrapper {
1808     padding: 15px;
1809     padding-bottom: 20px;
1810     margin-bottom: 20px;
1811     border: none;
1812     /*background-color: #fff;*/
1813     background-color: rgba(255,255,255,$contentbg_transp);
1814     border-radius: 4px;
1815     position: relative;
1816     /*overflow: hidden;*/
1817     color: #555;
1818     box-shadow: 0 0 3px #dadada;
1819     -webkit-box-shadow: 0 0 3px #dadada;
1820     -moz-box-shadow: 0 0 3px #dadada;
1821 }
1822
1823 /* *******
1824  * PAGES
1825  *********/
1826
1827 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
1828  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
1829 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
1830 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
1831 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
1832 .admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper,
1833 .dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper,
1834 .nogroup-content-wrapper, .profperm-content-wrapper {
1835     min-height: calc(100vh - 150px);
1836     padding: 15px;
1837     padding-bottom: 20px;
1838     margin-bottom: 20px;
1839     border: none;
1840     /*background-color: #fff;*/
1841     background-color: rgba(255,255,255,$contentbg_transp);
1842     border-radius: 4px;
1843     position: relative;
1844     /*overflow: hidden;*/
1845     color: #555;
1846     box-shadow: 0 0 3px #dadada;
1847     -webkit-box-shadow: 0 0 3px #dadada;
1848     -moz-box-shadow: 0 0 3px #dadada;
1849 }
1850
1851 /* Profile-page */
1852 #profile-content-standard,
1853 #profile-content-advanced {
1854     overflow: hidden;
1855 }
1856 #profile-menu {
1857     margin-top: 20px;
1858     margin-bottom: 20px;
1859 }
1860 .contact-block-div.forumlist-profile-advanced {
1861     float: left;
1862 }
1863
1864 /* contacts page */
1865 ul.viewcontact_wrapper {
1866     margin-left: -15px;
1867     margin-right: -15px;
1868 }
1869 ul.viewcontact_wrapper > li {
1870     padding-left: 15px;
1871 }
1872 .contact-wrapper {
1873 /*    padding: 10px;
1874     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
1875     position: relative;*/
1876     /*border-left: 3px solid white;*/
1877 }
1878 .contact-wrapper.media {
1879     overflow: visible;
1880     word-wrap: break-word;
1881     margin-top: 0;
1882 }
1883 /* bootstrap hack for .media */
1884 .contact-wrapper.media .media-body {
1885     display: table-cell;
1886     width: 10000px;
1887     *width: auto;
1888     *zoom: 1;
1889 }
1890 .contact-wrapper.media:before, .media:after {
1891     content: "";
1892     display: table;
1893 }
1894 .contact-wrapper.media:after {
1895     clear: both;
1896 }
1897 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
1898     height: 80px;
1899     width: 80px;
1900 }
1901 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
1902     height: 48px;
1903     width: 48px;
1904 }
1905 .contact-wrapper .contact-photo-overlay-content.xl {
1906     font-size: 48px;
1907 }
1908
1909 .contact-entry-desc {
1910     color: #555;
1911 }
1912 .contact-entry-checkbox {
1913     margin-top: -20px;
1914 }
1915 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
1916     font-weight: bold !important;
1917     color: $link_color;
1918     font-size: 15px !important;
1919 }
1920 .contact-wrapper .contact-actions {
1921     display: flex;
1922 }
1923 .contact-wrapper a.contact-action-link {
1924     opacity: 0.1;
1925     transition: all 0.25s ease-in-out;
1926 }
1927 .contact-wrapper a.contact-action-link,
1928 .contact-wrapper a.contact-action-link:hover,
1929 .textcomplete-item .contact-wrapper a.contact-action-link {
1930     padding-right: 5px;
1931     padding-left: 5px;
1932     color: #555;
1933 }
1934 ul li:hover .contact-wrapper a.contact-action-link {
1935     opacity: 0.8;
1936     transition: all 0.25s ease-in-out;
1937 }
1938 ul li:hover .contact-wrapper a.contact-action-link:hover {
1939     opacity: 1;
1940 }
1941 #contacts-search-wrapper,
1942 #directory-search-wrapper{
1943     padding: 10px 0;
1944 }
1945 #contact-drop-confirm .contact-actions,
1946 #contact-drop-confirm .contact-photo-overlay,
1947 #contact-drop-confirm .contact-photo-menu {
1948     display: none;
1949 }
1950 #contact-drop-confirm #confirm-form {
1951     margin-top: 20px;
1952 }
1953
1954 /* contact-edit */
1955 #contact-edit-actions {
1956     position: absolute;
1957 }
1958 #contact-edit-status-wrapper {
1959     border: none;
1960     background-color: #E1F5FE;
1961     margin: 15px -15px;
1962 }
1963 #contact-edit-tools {
1964     margin-left: -15px;
1965     margin-right: -15px;
1966 }
1967 #contact-edit-tools > .panel {
1968     padding-left: 15px;
1969     padding-right: 15px;
1970 }
1971 #contact-edit-settings {
1972     display: block;
1973     margin: 0;
1974 }
1975
1976 /* directory page */
1977 #directory-search-heading {
1978     padding-top: 10px;
1979 }
1980
1981 /* private mail */
1982 .message-content-wrapper > li {
1983 /* we need this overwriting because we have no template file
1984    for the general mail page /message
1985 */
1986     list-style-type: none;
1987 }
1988 .mail-thread {
1989     max-height: calc(100vh - 200px);
1990 }
1991 #mail-conversation {
1992     overflow-y: auto;
1993     max-height: calc(100vh - 400px);
1994     max-height: auto;
1995     /*height: 500px;*/
1996     margin-bottom: 0px;
1997     padding: 0 15px;
1998 }
1999 #mail-conversation.can-reply {
2000 /*    border-bottom-left-radius: 0px;
2001     border-bottom-right-radius: 0px;*/
2002 }
2003 .mail-conv-wrapper .media .contact-photo-wrapper img {
2004     height: 48px;
2005     width: 48px;
2006 }
2007 .mail-thread #prvmail-to-label,
2008 .mail-thread #prvmail-subject-label {
2009     display: none;
2010 }
2011 .mail-thread #prvmail-message-label > label {
2012     display:none;
2013 }
2014 .mail-thread #prvmail-message-label textarea {
2015 /*    border-top: none;
2016     margin-top: -10px;
2017     border-top-left-radius: 0px;
2018     border-top-right-radius: 0px;*/
2019     max-height: 120px;
2020 }
2021 .mail-conv-wrapper {
2022     padding: 15px 0;
2023     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2024 }
2025 #message-sidebar {
2026     height: calc(100vh - 150px);
2027 }
2028 #message-preview {
2029     /*padding: 0 10px;*/
2030     height: calc(100% - 20px);
2031 }
2032 #message-preview ul {
2033     margin: 0px;
2034 }
2035 #message-preview .media-list li {
2036     padding: 0px 10px;
2037     border: none;
2038 }
2039 #message-preview .media-list li:hover {
2040     border-left: none !important;
2041 }
2042 #message-preview .media-list li a {
2043     color: $link_color;
2044 }
2045 .mail-list-outside-wrapper {
2046     padding: 5px 0;
2047     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2048 }
2049 .mail-list-outside-wrapper .contact-photo-wrapper img {
2050     height: 48px;
2051     width: 48px;
2052 }
2053
2054 #prvmail-end {
2055     clear:both;
2056 }
2057 /* photos */
2058 .photo-album-actions {
2059     margin-bottom: 10px;
2060 }
2061 .photo-album-actions .photos-order-link {
2062     float: right;
2063 }
2064 /* poke */
2065 #poke-desc {
2066     margin: 5px 0 30px;
2067 }
2068 #poke-wrapper-end {
2069     clear: both;
2070 }
2071
2072 /* Events page */
2073 #fc-header {
2074     margin-top: 20px;
2075     margin-bottom: 10px;
2076 }
2077 #fc-header-left,
2078 #fc-header-right,
2079 #event-calendar-title {
2080     display: inline-block;
2081 }
2082 #fc-title {
2083     margin: 0;
2084     padding-left: 20px;
2085
2086 }
2087 #fc-header-right {
2088     margin-top: -4px;
2089 }
2090 #event-calendar-title {
2091     vertical-align: middle;
2092 }
2093 a#event-calendar-views {
2094     padding: 6px 9px;
2095     font-size: 14px
2096 }
2097 tr.fc-first,
2098 tr.fc-first th {
2099     border-left: none;
2100     border-right: none;
2101     border-top: none;
2102 }
2103 td.fc-day {
2104     border-left: none;
2105     border-right: none;
2106     padding: 0 6px;
2107 }
2108 #events-calendar .fc-grid .fc-day-number {
2109     float: left;
2110     font-size: 0.9em;
2111 }
2112 .event-wrapper .event-owner {
2113   margin-bottom: 15px;
2114 }
2115 .event-wrapper .event-owner img {
2116     display: block;
2117 }
2118 .event-owner img {
2119     margin-right: 5px;
2120     height: 48px;
2121     width:  48;
2122     border-radius: 3px;
2123 }
2124 .event-wrapper .vevent {
2125     margin-left: 0;
2126     margin-right: 0;
2127     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2128 }
2129 .event-wrapper .event-buttons {
2130     margin-top: 15px;
2131 }
2132 #event-form-wrapper {
2133     padding-top: 5px;
2134 }
2135 #event-edit-form-wrapper {
2136     padding-top: 15px;
2137 }
2138 #event-nav a {
2139     color: #555;
2140 }
2141 #event-edit-form-wrapper #event-edit-time {
2142     padding: 10px 0;
2143 }
2144 /* Profiles Page */
2145 .profile-listing-table {
2146     display: table;
2147     width: 100%;
2148 }
2149 .profile-listing-row {
2150     display: table-row;
2151 }
2152 .profile-listing-cell {
2153     display: table-cell;
2154 }
2155 .profile-listing-photo {
2156     width: 48px;
2157     height: 48px;
2158     margin: 10px 0px;
2159 }
2160 #profile-listing-new-link-wrapper {
2161     margin-bottom: 20px;
2162 }
2163 .panel-group-settings {
2164     margin-left: -15px;
2165     margin-right: -15px;
2166 }
2167 .panel-group-settings > .panel {
2168     padding-left: 15px;
2169     padding-right: 15px;
2170 }
2171 .profiles-content-wrapper #profile-photo-upload-section {
2172     display: none;
2173     margin-left: -15px;
2174     margin-right: -15px;
2175     margin-top: 15px;
2176     padding: 15px;
2177 }
2178 #profile-photo-upload-close {
2179     font-size: 14px;
2180 }
2181
2182 /* Settings */
2183 .section-subtitle-wrapper {
2184     padding: 1px 10px;
2185 }
2186 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2187     font-family: FontAwesome;
2188     content: "\f0d7";
2189     padding-right: 5px;
2190 }
2191 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2192     font-family: FontAwesome;
2193     content: "\f0da";
2194 }
2195 #settings-nick-wrapper {
2196     margin-bottom: 20px;
2197 }
2198 .group {
2199     margin-left: 20px;
2200 }
2201
2202 /* Notifications */
2203 ul.notif-network-list {
2204     margin-left: -15px;
2205     margin-right: -15px;
2206 }
2207 ul.notif-network-list > li {
2208     padding-left: 15px;
2209     padding-right: 15px;
2210 }
2211 ul.notif-network-list li.unseen {
2212     border-left: 3px solid #f3fcfd;
2213     background-color: #f3fcfd;
2214 }
2215 .intro-wrapper.media {
2216     overflow: visible;
2217     word-wrap: break-word;
2218     margin-top: 0;
2219 }
2220 .intro-photo-wrapper img.intro-photo,
2221 .notif-item img.notif-image {
2222     height:80px;
2223     width: 80px;
2224     border-radius: 4px;
2225 }
2226 .intro-actions {
2227     display: flex;
2228 }
2229 .intro-enty-name h4 {
2230     font-size: 15px !important;
2231 }
2232 .intro-wrapper button.intro-action-link {
2233     opacity: 0.1;
2234     transition: all 0.25s ease-in-out;
2235 }
2236 .intro-wrapper button.intro-action-link,
2237 .intro-wrapper button.intro-action-link:hover {
2238     padding-right: 5px;
2239     padding-left: 5px;
2240     color: #555;
2241 }
2242 ul li:hover .intro-wrapper button.intro-action-link {
2243     opacity: 0.8;
2244     transition: all 0.25s ease-in-out;
2245 }
2246 ul li:hover .intro-wrapper button.intro-action-link:hover {
2247     opacity: 1;
2248 }
2249 .intro-action-buttons {
2250     margin-top: 15px;
2251     /*display: none;*/
2252     max-height: 0px;
2253     overflow: hidden;
2254     transition: max-height 0.1s ease-out;
2255 }
2256 ul.notif-network-list > li:hover .intro-action-buttons {
2257     /*display: block;*/
2258     max-height: 30px;
2259     transition: max-height 0.1s ease-in;
2260 }
2261 .intro-desc-label, .intro-url-label, .intro-network-label,
2262 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2263 .intro-about-label, .intro-knowyou-label {
2264     font-weight: bold;
2265 }
2266 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2267 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2268 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2269 .intro-contact-info.xs .intro-knowyou-label {
2270     display: block;
2271     margin-top: 5px
2272 }
2273
2274 /* Search Page */
2275
2276 /* This is a little bit hacky. Since the search page is used for diferent
2277 content types we can't apply the generic-page-wrapper class.
2278 So we apply the css of the generic-page-wrapper class to the ul element with some
2279 little modifications to emulate a standard page template */
2280 .search-content-wrapper > ul.viewcontact_wrapper {
2281     min-height: calc(100vh - 150px);
2282     padding-top: 15px;
2283     padding-bottom: 20px;
2284     margin: 0;
2285     margin-bottom: 20px;
2286     border: none;
2287     /*background-color: #fff;*/
2288     background-color: rgba(255,255,255,$contentbg_transp);
2289     border-radius: 4px;
2290     position: relative;
2291     /*overflow: hidden;*/
2292     color: #555;
2293     box-shadow: 0 0 3px #dadada;
2294     -webkit-box-shadow: 0 0 3px #dadada;
2295     -moz-box-shadow: 0 0 3px #dadada;
2296 }
2297
2298 /*
2299 * Overwriting for transparency and other colors
2300 */
2301 main .nav-tabs>li.active>a,
2302 main .nav-tabs>li.active>a:focus,
2303 main .nav-tabs>li.active>a:hover {
2304     background-color: rgba(255,255,255,$contentbg_transp);
2305 }
2306
2307 /*
2308  * Modal
2309  */
2310 .modal hr {
2311     border-color: #eee;
2312 }
2313
2314 /*
2315  * Framework overwrite
2316  */
2317
2318 /* jRange */
2319 .theme-frio .back-bar {
2320     height: 5px !important;
2321     border-radius: 2px;
2322     background-color: #eeeeee;
2323     background-color: #e7e7e7;
2324     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2325     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2326     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2327     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2328     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2329     background-repeat: repeat-x;
2330     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2331 }
2332 .theme-frio .back-bar .selected-bar {
2333     border-radius: 2px;
2334     background-color: $link_color;
2335 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2336     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2337     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2338     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2339     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2340     background-repeat: repeat-x;
2341     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2342 }
2343 .theme-frio .back-bar .pointer {
2344     width: 14px !important;
2345     height: 14px !important;
2346     top: -5px;
2347     -webkit-box-sizing: border-box;
2348     -moz-box-sizing: border-box;
2349     box-sizing: border-box;
2350     border-radius: 10px;
2351     border: 1px solid #AAA;
2352     background-color: #e7e7e7 !important;
2353     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2354     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2355     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2356     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2357     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2358     background-repeat: repeat-x;
2359     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2360 }
2361 .theme-frio .back-bar .pointer-label {
2362     color: #999;
2363 }
2364
2365 /* textcomplete for contact filtering*/
2366 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
2367     position: relative !important;
2368     top: inherit !important;
2369     bottom: inherit !important;
2370     left: inherit !important;
2371     padding: 0;
2372     margin-left: -15px;
2373     margin-right: -15px;
2374     background-color: transparent;
2375     box-shadow: none;
2376     border: none;
2377 }
2378 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
2379     padding-left: 15px;
2380     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2381 }
2382 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
2383     display: none;
2384 }
2385 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
2386 .textcomplete-item > a {
2387     padding: 0 !important;
2388     border-left: none;
2389     background-color: transparent !important;
2390 }
2391 /* this is a little hack for texcomplete contact filter
2392 There are for some reasons empty <a> tags. I don't know why */
2393 .textcomplete-item .contact-wrapper a {
2394     padding: 0;
2395 }
2396
2397 /* hovercard fix */
2398 body .tread-wrapper .hovercard a,
2399 body .tread-wrapper .hovercard a:hover {
2400     color: $link_color;
2401 }
2402 body .tread-wrapper .hovercard:hover .hover-card-content a {
2403     color: $link_color !important;
2404 }