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