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