]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge pull request #2807 from Hypolite/frio-larger-view-develop
[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 }
1502
1503 /* wall item hover effects */
1504 .wall-item-container .wall-item-links,
1505 .wall-item-container .wall-item-actions,
1506 .wall-item-container .body-attach > a {
1507     opacity: 0.3;
1508     -webkit-transition: all 0.25s ease-in-out;
1509     -moz-transition: all 0.25s ease-in-out;
1510     -o-transition: all 0.25s ease-in-out;
1511     -ms-transition: all 0.25s ease-in-out;
1512     transition: all 0.25s ease-in-out;
1513 }
1514 .wall-item-container:hover .wall-item-links,
1515 .wall-item-container:hover .wall-item-actions,
1516 .wall-item-container:hover .body-attach > a {
1517     opacity: 0.6;
1518     -webkit-transition: all 0.25s ease-in-out;
1519     -moz-transition: all 0.25s ease-in-out;
1520     -o-transition: all 0.25s ease-in-out;
1521     -ms-transition: all 0.25s ease-in-out;
1522     transition: all 0.25s ease-in-out;
1523 }
1524 .wall-item-container .wall-item-body .body-attach > a:hover {
1525     opacity: 1;
1526 }
1527
1528 /*
1529 /* Comments
1530 */
1531 .well {
1532     border: none;
1533     box-shadow: none;
1534     /*background-color: #ededed;*/
1535     background-color: rgba(237, 237, 237, $contentbg_transp);
1536     background-image: none;
1537     margin-bottom: 1px;
1538 }
1539 .well-small {
1540     padding: 10px;
1541     border-radius: 3px;
1542 }
1543 .well hr {
1544     margin: 15px 0 10px;
1545     border-top: 1px solid #d9d9d9;
1546 }
1547 .wall-entry .well {
1548     margin-bottom: 0;
1549 }
1550 .comment-container {
1551     margin-top: 10px;
1552     margin-bottom: 0px;
1553     border-top-left-radius: 3px;
1554     border-top-right-radius: 3px;
1555     border-bottom-right-radius: 0px;
1556     border-bottom-left-radius: 0px;
1557 }
1558 .comment .media {
1559     position: relative!important;
1560     margin-top: 0;
1561 }
1562 .hide-comments-outer-wrapper {
1563 /*    text-align: center;
1564     margin-top: -18px;*/
1565 }
1566 .hide-comments-total {
1567     cursor: pointer;
1568 }
1569
1570 /*
1571 * Comment Box
1572 */
1573 .thread_level_2 .wall-item-comment-wrapper {
1574     padding-right: 5px;
1575 }
1576 .comment-edit-submit-wrapper {
1577     margin-bottom: 25px;
1578 }
1579 .comment-edit-submit-wrapper a,
1580 .comment-edit-submit-wrapper a:hover {
1581     padding-top: 5px !important;
1582     padding-bottom: 5px !important;
1583 }
1584 .comment-icon-list a.icon,
1585 .comment-icon-list a.icon:hover {
1586     color: #555;
1587     background-color: transparent;
1588 }
1589
1590 /* acpopup  + textcompletion*/
1591 .acpopup {
1592     /* max-height: 150px; */
1593     background-color: #ffffff;
1594     border-radius: 4px;
1595     overflow: auto;
1596     z-index: 100000;
1597     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1598 }
1599 nav .acpopup {
1600     /*top: 35px !important;*/
1601     margin-left: -23px;
1602 }
1603 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1604  at the beginning of this file to get rid of the !important */
1605 .textcomplete-item > a {
1606     color: #555 !important;
1607     padding: 5px 20px !important;
1608 }
1609 .textcomplete-item.active > a {
1610     background-color: rgb(247, 247, 247) !important;
1611     background-image: none !important;
1612     border-left: 3px solid $link_color;
1613     padding-left: 17px !important;
1614 }
1615 .textcomplete-item a .forum {
1616     color: $link_color;
1617 }
1618 img.acpopup-img {
1619     border-radius: 4px;
1620  }
1621
1622
1623 /* The wall-item thread levels */
1624 /*.wall-item-container.thread_level_3 {
1625   margin-left: 80px;
1626   width: calc(100% - 90px);
1627 }
1628 .wall-item-container.thread_level_4 {
1629   margin-left: 95px;
1630   width: calc(100% - 105px);
1631 }
1632 .wall-item-container.thread_level_5 {
1633   margin-left: 110px;
1634   width: calc(100% - 120px);
1635 }
1636 .wall-item-container.thread_level_6 {
1637   margin-left: 125px;
1638   width: calc(100% - 135px);
1639 }
1640 .wall-item-container.thread_level_7 {
1641   margin-left: 140px;
1642   width: calc(100% - 150px);
1643 }*/
1644
1645 .wall-item-container.thread_level_3,
1646 .wall-item-container.thread_level_4,
1647 .wall-item-container.thread_level_5,
1648 .wall-item-container.thread_level_6,
1649 .wall-item-container.thread_level_7 {
1650   margin-left: 15px;
1651   
1652 }
1653 /* Menubar Tabs */
1654 #tabmenu,
1655 .tabbar,
1656 .tabbar > li {
1657     height: 100%;
1658     /*margin-left: -15px;*/
1659     padding: 0;
1660 }
1661 #tabmenu .search-heading {
1662     overflow: hidden;
1663     text-overflow: ellipsis;
1664     white-space: nowrap;
1665 }
1666 ul.tabs {
1667     list-style: none;
1668     height: 100%;
1669     padding: 0;
1670     padding-top: 10px;
1671     margin: 0;
1672 }
1673 ul.tabs li {
1674     float: left;
1675     margin: 0;
1676     padding: 0;
1677     /*border-bottom: 0 solid #6fdbe8;*/
1678     border-bottom: 0 solid $link_color;
1679     font-size: 13px;
1680     height: 102%;
1681     transition: all .15s ease;
1682 }
1683 /*ul.tabs.visible-xs > li.active {
1684     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here 
1685 }*/
1686 ul.tabs li a {
1687     margin-left: 10px;
1688     margin-right: 10px;
1689     /*color: #6fdbe8;*/
1690     color: $link_color !important;
1691 }
1692 ul.tabs li:hover, ul.tabs li.active {
1693     border-bottom-width: 4px;
1694 }
1695 ul.tabbar ul.tabs-extended li.active {
1696     width: 100%;
1697     border-bottom-width: 2px;
1698 }
1699 ul.tabbar ul.tabs-extended li.active a {
1700     background: none;
1701 }
1702 ul.dropdown-menu li:hover {
1703     border-bottom-width: 0;
1704 }
1705
1706
1707 /* Dropdown Menu */
1708 .dropdown-menu li a {
1709     font-size: 13px!important;
1710     font-weight: 600!important;
1711 }
1712 .dropdown-menu li a:hover, .dropdown-menu li a:visited,
1713 .dropdown-menu li a:hover, .dropdown-menu li a:focus {
1714     background: 0 0;
1715 }
1716
1717 .dropdown-menu li:first-child {
1718     margin-top: 3px;
1719 }
1720
1721 /* Notificaiotn badges */
1722 .nav-notify .show {
1723     display: block;
1724 }
1725
1726 /* Media Classes */
1727 .media .time,
1728 .media .shared-time,
1729 .media .location,
1730 .media .location a {
1731     font-size: 11px;
1732     color: #bebebe;
1733 }
1734 .media-list > li {
1735     padding: 10px;
1736     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1737     position: relative;
1738 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
1739     border-left: 3px solid rgba(255,255,255,0);
1740     font-size: 12px;
1741 }
1742 .media-list > li:hover,
1743 .media-list > li.selected {
1744     border-left: 3px solid $link_color;
1745     background-color: rgba(247, 247, 247, $contentbg_transp);
1746 }
1747
1748 /* Forms */
1749 .form-control {
1750     border: 2px solid #ededed;
1751     box-shadow: none;
1752 }
1753 .form-control:focus {
1754     /*border: 2px solid #6fdbe8;*/
1755     border: 2px solid $link_color;
1756     outline: 0;
1757     box-shadow: none;
1758 }
1759
1760
1761 .checkbox input[type="checkbox"]:focus + label::before,
1762 .checkbox input[type="radio"]:focus + label::before {
1763     /*border: 2px solid #6fdbe8;*/
1764     border: 2px solid $link_color;
1765     outline: 0;
1766     box-shadow: none;
1767 }
1768
1769 /* Search form */
1770 .form-control.form-search {
1771     border-radius: 30px;
1772     background-image: url(img/icon_search16x16.png);
1773     background-repeat: no-repeat;
1774     background-position: 10px 8px;
1775     padding-left: 34px;
1776 }
1777 .form-group-search {
1778     position: relative;
1779     width: 100%;
1780 }
1781
1782 .form-group-search .form-button-search {
1783     position: absolute;
1784     top: 4px;
1785     right: 4px;
1786     border-radius: 30px;
1787 }
1788 .search-input.form-control.form-search {
1789     width: 100%;
1790 }
1791 .search-heading {
1792     text-align: center;
1793     color: $link_color;
1794     font-size: 20px;
1795 }
1796 .search-content-wrapper > #search-header-wrapper {
1797     display: none;
1798 }
1799 .search-content-wrapper > .section-title-wrapper {
1800     display: none;
1801 }
1802 #navbar-button > #search-save-form > #search-save {
1803     margin-top: 3px;
1804 }
1805 /* Section-Content-Wrapper */
1806 #search-header-wrapper {
1807     padding: 15px;
1808     padding-bottom: 20px;
1809     margin-bottom: 20px;
1810     border: none;
1811     /*background-color: #fff;*/
1812     background-color: rgba(255,255,255,$contentbg_transp);
1813     border-radius: 4px;
1814     position: relative;
1815     /*overflow: hidden;*/
1816     color: #555;
1817     box-shadow: 0 0 3px #dadada;
1818     -webkit-box-shadow: 0 0 3px #dadada;
1819     -moz-box-shadow: 0 0 3px #dadada;
1820 }
1821
1822 /* *******
1823  * PAGES
1824  *********/
1825
1826 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
1827  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
1828 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
1829 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
1830 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
1831 .admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper,
1832 .dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper,
1833 .nogroup-content-wrapper, .profperm-content-wrapper {
1834     min-height: calc(100vh - 150px);
1835     padding: 15px;
1836     padding-bottom: 20px;
1837     margin-bottom: 20px;
1838     border: none;
1839     /*background-color: #fff;*/
1840     background-color: rgba(255,255,255,$contentbg_transp);
1841     border-radius: 4px;
1842     position: relative;
1843     /*overflow: hidden;*/
1844     color: #555;
1845     box-shadow: 0 0 3px #dadada;
1846     -webkit-box-shadow: 0 0 3px #dadada;
1847     -moz-box-shadow: 0 0 3px #dadada;
1848 }
1849
1850 /* Profile-page */
1851 #profile-content-standard,
1852 #profile-content-advanced {
1853     overflow: hidden;
1854 }
1855 #profile-menu {
1856     margin-top: 20px;
1857     margin-bottom: 20px;
1858 }
1859 .contact-block-div.forumlist-profile-advanced {
1860     float: left;
1861 }
1862
1863 /* contacts page */
1864 ul.viewcontact_wrapper {
1865     margin-left: -15px;
1866     margin-right: -15px;
1867 }
1868 ul.viewcontact_wrapper > li {
1869     padding-left: 15px;
1870 }
1871 .contact-wrapper {
1872 /*    padding: 10px;
1873     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
1874     position: relative;*/
1875     /*border-left: 3px solid white;*/
1876 }
1877 .contact-wrapper.media {
1878     overflow: visible;
1879     word-wrap: break-word;
1880     margin-top: 0;
1881 }
1882 /* bootstrap hack for .media */
1883 .contact-wrapper.media .media-body {
1884     display: table-cell;
1885     width: 10000px;
1886     *width: auto;
1887     *zoom: 1;
1888 }
1889 .contact-wrapper.media:before, .media:after {
1890     content: "";
1891     display: table;
1892 }
1893 .contact-wrapper.media:after {
1894     clear: both;
1895 }
1896 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
1897     height: 80px;
1898     width: 80px;    
1899 }
1900 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
1901     height: 48px;
1902     width: 48px;
1903 }
1904 .contact-wrapper .contact-photo-overlay-content.xl {
1905     font-size: 48px;
1906 }
1907
1908 .contact-entry-desc {
1909     color: #555;
1910 }
1911 .contact-entry-checkbox {
1912     margin-top: -20px;
1913 }
1914 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
1915     font-weight: bold !important; 
1916     color: $link_color;
1917     font-size: 15px !important;
1918 }
1919 .contact-wrapper .contact-actions {
1920     display: flex;
1921 }
1922 .contact-wrapper a.contact-action-link {
1923     opacity: 0.1;
1924     transition: all 0.25s ease-in-out;
1925 }
1926 .contact-wrapper a.contact-action-link,
1927 .contact-wrapper a.contact-action-link:hover,
1928 .textcomplete-item .contact-wrapper a.contact-action-link {
1929     padding-right: 5px;
1930     padding-left: 5px;
1931     color: #555;
1932 }
1933 ul li:hover .contact-wrapper a.contact-action-link {
1934     opacity: 0.8;
1935     transition: all 0.25s ease-in-out;
1936 }
1937 ul li:hover .contact-wrapper a.contact-action-link:hover {
1938     opacity: 1;
1939 }
1940 #contacts-search-wrapper,
1941 #directory-search-wrapper{
1942     padding: 10px 0;
1943 }
1944 #contact-drop-confirm .contact-actions,
1945 #contact-drop-confirm .contact-photo-overlay,
1946 #contact-drop-confirm .contact-photo-menu {
1947     display: none;
1948 }
1949 #contact-drop-confirm #confirm-form {
1950     margin-top: 20px;
1951 }
1952
1953 /* contact-edit */
1954 #contact-edit-actions {
1955     position: absolute;
1956 }
1957 #contact-edit-status-wrapper {
1958     border: none;
1959     background-color: #E1F5FE;
1960     margin: 15px -15px;
1961 }
1962 #contact-edit-tools {
1963     margin-left: -15px;
1964     margin-right: -15px;
1965 }
1966 #contact-edit-tools > .panel {
1967     padding-left: 15px;
1968     padding-right: 15px;
1969 }
1970 #contact-edit-settings {
1971     display: block;
1972     margin: 0;
1973 }
1974
1975 /* directory page */
1976 #directory-search-heading {
1977     padding-top: 10px;
1978 }
1979
1980 /* private mail */
1981 .message-content-wrapper > li {
1982 /* we need this overwriting because we have no template file
1983    for the general mail page /message
1984 */
1985     list-style-type: none;
1986 }
1987 .mail-thread {
1988     max-height: calc(100vh - 200px);
1989 }
1990 #mail-conversation {
1991     overflow-y: auto;
1992     max-height: calc(100vh - 400px);
1993     max-height: auto;
1994     /*height: 500px;*/
1995     margin-bottom: 0px;
1996     padding: 0 15px;
1997 }
1998 #mail-conversation.can-reply {
1999 /*    border-bottom-left-radius: 0px;
2000     border-bottom-right-radius: 0px;*/
2001 }
2002 .mail-conv-wrapper .media .contact-photo-wrapper img {
2003     height: 48px;
2004     width: 48px;
2005 }
2006 .mail-thread #prvmail-to-label,
2007 .mail-thread #prvmail-subject-label {
2008     display: none;
2009 }
2010 .mail-thread #prvmail-message-label > label {
2011     display:none;
2012 }
2013 .mail-thread #prvmail-message-label textarea {
2014 /*    border-top: none;
2015     margin-top: -10px;
2016     border-top-left-radius: 0px;
2017     border-top-right-radius: 0px;*/
2018     max-height: 120px;
2019 }
2020 .mail-conv-wrapper {
2021     padding: 15px 0;
2022     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2023 }
2024 #message-sidebar {
2025     height: calc(100vh - 150px);
2026 }
2027 #message-preview {
2028     /*padding: 0 10px;*/
2029     height: calc(100% - 20px);
2030 }
2031 #message-preview ul {
2032     margin: 0px;
2033 }
2034 #message-preview .media-list li {
2035     padding: 0px 10px;
2036     border: none;
2037 }
2038 #message-preview .media-list li:hover {
2039     border-left: none !important;
2040 }
2041 #message-preview .media-list li a {
2042     color: $link_color;
2043 }
2044 .mail-list-outside-wrapper {
2045     padding: 5px 0;
2046     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2047 }
2048 .mail-list-outside-wrapper .contact-photo-wrapper img {
2049     height: 48px;
2050     width: 48px;
2051 }
2052
2053 #prvmail-end {
2054     clear:both;
2055 }
2056 /* photos */
2057 .photo-album-actions {
2058     margin-bottom: 10px;
2059 }
2060 .photo-album-actions .photos-order-link {
2061     float: right;
2062 }
2063 /* poke */
2064 #poke-desc {
2065     margin: 5px 0 30px;
2066 }
2067 #poke-wrapper-end {
2068     clear: both;
2069 }
2070
2071 /* Events page */
2072 #fc-header {
2073     margin-top: 20px;
2074     margin-bottom: 10px;
2075 }
2076 #fc-header-left,
2077 #fc-header-right,
2078 #event-calendar-title {
2079     display: inline-block;
2080 }
2081 #fc-title {
2082     margin: 0;
2083     padding-left: 20px;
2084
2085 }
2086 #fc-header-right {
2087     margin-top: -4px;
2088 }
2089 #event-calendar-title {
2090     vertical-align: middle;
2091 }
2092 a#event-calendar-views {
2093     padding: 6px 9px;
2094     font-size: 14px
2095 }
2096 tr.fc-first,
2097 tr.fc-first th {
2098     border-left: none;
2099     border-right: none;
2100     border-top: none;
2101 }
2102 td.fc-day {
2103     border-left: none;
2104     border-right: none;
2105     padding: 0 6px;
2106 }
2107 #events-calendar .fc-grid .fc-day-number {
2108     float: left;
2109     font-size: 0.9em;
2110 }
2111 .event-wrapper .event-owner {
2112   margin-bottom: 15px;
2113 }
2114 .event-wrapper .event-owner img {
2115     display: block;
2116 }
2117 .event-owner img {
2118     margin-right: 5px;
2119     height: 48px;
2120     width:  48;
2121     border-radius: 3px;
2122 }
2123 .event-wrapper .vevent {
2124     margin-left: 0;
2125     margin-right: 0;
2126     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2127 }
2128 .event-wrapper .event-buttons {
2129     margin-top: 15px;
2130 }
2131 #event-form-wrapper {
2132     padding-top: 5px;
2133 }
2134 #event-edit-form-wrapper {
2135     padding-top: 15px;
2136 }
2137 #event-nav a {
2138     color: #555;
2139 }
2140 #event-edit-form-wrapper #event-edit-time {
2141     padding: 10px 0;
2142 }
2143 /* Profiles Page */
2144 .profile-listing-table {
2145     display: table;
2146     width: 100%;
2147 }
2148 .profile-listing-row {
2149     display: table-row;
2150 }
2151 .profile-listing-cell {
2152     display: table-cell;
2153 }
2154 .profile-listing-photo {
2155     width: 48px;
2156     height: 48px;
2157     margin: 10px 0px;
2158 }
2159 #profile-listing-new-link-wrapper {
2160     margin-bottom: 20px;
2161 }
2162 .panel-group-settings {
2163     margin-left: -15px;
2164     margin-right: -15px;
2165 }
2166 .panel-group-settings > .panel {
2167     padding-left: 15px;
2168     padding-right: 15px;
2169 }
2170 .profiles-content-wrapper #profile-photo-upload-section {
2171     display: none;
2172     margin-left: -15px;
2173     margin-right: -15px;
2174     margin-top: 15px;
2175     padding: 15px;
2176 }
2177 #profile-photo-upload-close {
2178     font-size: 14px;
2179 }
2180
2181 /* Settings */
2182 .section-subtitle-wrapper {
2183     padding: 1px 10px;
2184 }
2185 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2186     font-family: FontAwesome;
2187     content: "\f0d7";
2188     padding-right: 5px;
2189 }
2190 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2191     font-family: FontAwesome;
2192     content: "\f0da";
2193 }
2194 #settings-nick-wrapper {
2195     margin-bottom: 20px;
2196 }
2197 .group {
2198     margin-left: 20px;
2199 }
2200
2201 /* Notifications */
2202 ul.notif-network-list {
2203     margin-left: -15px;
2204     margin-right: -15px;
2205 }
2206 ul.notif-network-list > li {
2207     padding-left: 15px;
2208     padding-right: 15px;
2209 }
2210 ul.notif-network-list li.unseen {
2211     border-left: 3px solid #f3fcfd;
2212     background-color: #f3fcfd;
2213 }
2214 .intro-wrapper.media {
2215     overflow: visible;
2216     word-wrap: break-word;
2217     margin-top: 0;
2218 }
2219 .intro-photo-wrapper img.intro-photo,
2220 .notif-item img.notif-image {
2221     height:80px;
2222     width: 80px;
2223     border-radius: 4px;
2224 }
2225 .intro-actions {
2226     display: flex;
2227 }
2228 .intro-enty-name h4 {
2229     font-size: 15px !important;
2230 }
2231 .intro-wrapper button.intro-action-link {
2232     opacity: 0.1;
2233     transition: all 0.25s ease-in-out;
2234 }
2235 .intro-wrapper button.intro-action-link,
2236 .intro-wrapper button.intro-action-link:hover {
2237     padding-right: 5px;
2238     padding-left: 5px;
2239     color: #555;
2240 }
2241 ul li:hover .intro-wrapper button.intro-action-link {
2242     opacity: 0.8;
2243     transition: all 0.25s ease-in-out;
2244 }
2245 ul li:hover .intro-wrapper button.intro-action-link:hover {
2246     opacity: 1;
2247 }
2248 .intro-action-buttons {
2249     margin-top: 15px;
2250     /*display: none;*/
2251     max-height: 0px;
2252     overflow: hidden;
2253     transition: max-height 0.1s ease-out;
2254 }
2255 ul.notif-network-list > li:hover .intro-action-buttons {
2256     /*display: block;*/
2257     max-height: 30px;
2258     transition: max-height 0.1s ease-in;
2259 }
2260 .intro-desc-label, .intro-url-label, .intro-network-label,
2261 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2262 .intro-about-label, .intro-knowyou-label {
2263     font-weight: bold;
2264 }
2265 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2266 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2267 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2268 .intro-contact-info.xs .intro-knowyou-label {
2269     display: block;
2270     margin-top: 5px
2271 }
2272
2273 /* Search Page */
2274
2275 /* This is a little bit hacky. Since the search page is used for diferent 
2276 content types we can't apply the generic-page-wrapper class.
2277 So we apply the css of the generic-page-wrapper class to the ul element with some
2278 little modifications to emulate a standard page template */
2279 .search-content-wrapper > ul.viewcontact_wrapper {
2280     min-height: calc(100vh - 150px);
2281     padding-top: 15px;
2282     padding-bottom: 20px;
2283     margin: 0;
2284     margin-bottom: 20px;
2285     border: none;
2286     /*background-color: #fff;*/
2287     background-color: rgba(255,255,255,$contentbg_transp);
2288     border-radius: 4px;
2289     position: relative;
2290     /*overflow: hidden;*/
2291     color: #555;
2292     box-shadow: 0 0 3px #dadada;
2293     -webkit-box-shadow: 0 0 3px #dadada;
2294     -moz-box-shadow: 0 0 3px #dadada;
2295 }
2296
2297 /*
2298 * Overwriting for transparency and other colors
2299 */
2300 main .nav-tabs>li.active>a,
2301 main .nav-tabs>li.active>a:focus,
2302 main .nav-tabs>li.active>a:hover {
2303     background-color: rgba(255,255,255,$contentbg_transp);
2304 }
2305
2306 /*
2307  * Modal
2308  */
2309 .modal hr {
2310     border-color: #eee;
2311 }
2312
2313 /*
2314  * Framework overwrite
2315  */
2316
2317 /* jRange */
2318 .theme-frio .back-bar {
2319     height: 5px !important;
2320     border-radius: 2px;
2321     background-color: #eeeeee;
2322     background-color: #e7e7e7;
2323     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2324     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2325     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2326     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2327     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2328     background-repeat: repeat-x;
2329     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2330 }
2331 .theme-frio .back-bar .selected-bar {
2332     border-radius: 2px;
2333     background-color: $link_color;
2334 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2335     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2336     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2337     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2338     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2339     background-repeat: repeat-x;
2340     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2341 }
2342 .theme-frio .back-bar .pointer {
2343     width: 14px !important;
2344     height: 14px !important;
2345     top: -5px;
2346     -webkit-box-sizing: border-box;
2347     -moz-box-sizing: border-box;
2348     box-sizing: border-box;
2349     border-radius: 10px;
2350     border: 1px solid #AAA;
2351     background-color: #e7e7e7 !important;
2352     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2353     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2354     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2355     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2356     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2357     background-repeat: repeat-x;
2358     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2359 }
2360 .theme-frio .back-bar .pointer-label {
2361     color: #999;
2362 }
2363
2364 /* textcomplete for contact filtering*/
2365 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
2366     position: relative !important;
2367     top: inherit !important;
2368     bottom: inherit !important;
2369     left: inherit !important;
2370     padding: 0;
2371     margin-left: -15px;
2372     margin-right: -15px;
2373     background-color: transparent;
2374     box-shadow: none;
2375     border: none;
2376 }
2377 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
2378     padding-left: 15px;
2379     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2380 }
2381 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
2382     display: none;
2383 }
2384 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list 
2385 .textcomplete-item > a {
2386     padding: 0 !important;
2387     border-left: none;
2388     background-color: transparent !important;
2389 }
2390 /* this is a little hack for texcomplete contact filter
2391 There are for some reasons empty <a> tags. I don't know why */
2392 .textcomplete-item .contact-wrapper a {
2393     padding: 0;
2394 }
2395
2396 /* hovercard fix */
2397 body .tread-wrapper .hovercard a,
2398 body .tread-wrapper .hovercard a:hover {
2399     color: $link_color;
2400 }
2401 body .tread-wrapper .hovercard:hover .hover-card-content a {
2402     color: $link_color !important;
2403 }