]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge pull request #4863 from MrPetovan/task/4860-add-hidden-input-in-console
[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, .btn-link:hover,
55 body a:focus, .btn-link:focus,
56 body a:active, .btn-link:active,
57 body a.active, .btn-link.active {
58     /*color: #59d6e4;*/
59     color: $link_hover_color;
60     text-decoration: none;
61     outline: none;
62 }
63
64 .wall-item-container a:hover {
65     text-decoration: underline;
66 }
67
68 hr {
69     margin-top: 10px;
70     margin-bottom: 10px;
71 }
72 aside hr,
73 section hr {
74     border-color: rgba(238, 238, 238, $contentbg_transp);
75 }
76 iframe, img, video {
77     max-width: 100%;
78 }
79 blockquote {
80     font-size: inherit;
81 }
82 .clear {
83     clear: both;
84 }
85 .no-padding {
86     padding: 0;
87 }
88 .fakelink {
89     cursor: pointer;
90 }
91 .hidden {
92     display: none !important;
93 }
94 .minimize {
95     max-height: 0px !important;
96     overflow: hidden !important;
97 }
98 code {
99     white-space: pre-wrap;
100 }
101 .help-content-wrapper code, .help-aside-wrapper code {display: inline}
102
103 /**
104  * mobile aside
105  */
106 @media screen and (max-width: 990px) {
107     aside{
108         position: fixed!important;
109         top: 0!important;
110         background-color: #fff;
111         width: 100%;
112         max-width: 300px;
113         height: 100%;
114         padding-top: 100px;
115         z-index: 10;
116     }
117     aside::before {
118         content: " ";
119         position: fixed;
120         display: block;
121         top: 0; left: 300px; right: 0; bottom: 0;
122         background-color: rgba(0,0,0,0.4);
123         opacity: 0;
124         transition: opacity 0.5s;
125     }
126     aside.canvas-slid::before {
127         opacity: 1;
128     }
129
130     /* prevent page scroll when the aside is opened **/
131     body.aside-out { overflow: hidden; }
132 }
133 /*
134 * standard page elements
135 */
136 #back-to-top {
137     display: none;
138     cursor: pointer;
139     color: white;
140     position: fixed;
141     z-index: 49;
142     right: 20px;
143     bottom: 20px;
144     opacity: 1;
145     font-size: 2.9em;
146     padding: 0 12px 0 12px;
147     border-radius: 10px;
148     background-color: #aaa;
149     line-height: 1.5;
150 }
151
152 #item-delete-selected {
153     cursor: pointer;
154     color: white;
155     position: fixed;
156     z-index: 49;
157     right: 20px;
158     top: 100px;
159     opacity: 0.8;
160     font-size: 2.9em;
161     padding: 0 12px 0 12px;
162     border-radius: 10px;
163     background-color: $link_color;
164     line-height: 1.5;
165     display: none;
166 }
167
168 #toggle_mobile_link {
169     display: none;
170 }
171
172 /*
173 * Overwriting and Extend Bootstrap
174 */
175 .label, .label a {
176     color: #fff;
177 }
178
179 /* Buttons */
180
181 .btn {
182     float: none;
183     border: none;
184     -webkit-box-shadow: none;
185     box-shadow: none;
186     -moz-box-shadow: none;
187     background-image: none;
188     text-shadow: none;
189     border-radius: 3px;
190     outline: 0!important;
191     margin-bottom: 0;
192     font-size: 14px;
193     font-weight: 600;
194     padding: 8px 16px;
195     color: inherit;
196 }
197 a.btn:hover {
198     color: #333;
199 }
200
201 .btn-default {
202     background: #ededed;
203     color: #7a7a7a;
204 }
205 .btn-sm {
206     padding: 4px 8px;
207     font-size: 12px;
208 }
209 .btn-small {
210     padding: 6px 10px;
211     font-size: 12px;
212     line-height: 1.5;
213     border-radius: 3px;
214 }
215 .btn-xs {
216     padding: 1px 5px;
217     font-size: 12px;
218 }
219 .btn-primary {
220     background: $nav_bg;
221     color: $btn_primary_color !important;
222 }
223 .btn-primary:hover, .btn-primary:focus {
224     background: $btn_primary_hover_color;
225     text-decoration: none;
226 }
227 .btn-primary:active, .btn-primary.active {
228     outline: 0;
229     background: $btn_primary_hover_color !important;
230 }
231
232 .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover,
233 .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover,
234 .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus,
235 .open>.dropdown-toggle.btn-primary:hover,.btn-primary.active, .btn-primary:active,
236 .open>.dropdown-toggle.btn-primary {
237     background: $btn_primary_hover_color;
238     border-color: none;
239 }
240
241 .btn-link {
242     border: 0;
243     color: $link_color;
244     padding-left: 0;
245     padding-right: 0;
246 }
247 .btn-clear,
248 .btn-clear:active {
249     border: 0;
250     background: transparent;
251     box-shadow: none;
252 }
253 .btn-eventnav, btn-eventnav:hover {
254     font-size: 16px;
255     background: none;
256     background-color: transparent;
257     padding: 0 14px;
258 }
259 .btn-separator {
260     border-left: 1px solid #777;
261 }
262 /*.btn-info {
263     background: #6fdbe8;
264     color: #fff!important;
265 }
266 .btn-info:hover, .btn-info:focus {
267     background: #59d6e4!important;
268     text-decoration: none;
269 }
270 .btn-info:active, .btn-info.active {
271     outline: 0;
272     background: #59d6e4;
273 }*/
274
275 .btn-main {
276     background: $link_color;
277     color: #fff!important;
278 }
279 .btn-main:hover, .btn-main:focus {
280     background: $link_hover_color !important;
281     text-decoration: none;
282 }
283 .btn-main:active, .btn-main.active {
284     outline: 0;
285     background: $link_hover_color;
286 }
287 .toggle.btn {
288     border: 1px solid transparent;
289 }
290 .toggle.btn-xs {
291     min-width: 45px;
292 }
293 .toggle.off {
294     border-color: #ccc;
295 }
296 .toggle .toggle-off,
297 .toggle .toggle-off:hover {
298     color: #ccc;
299     background-color: #eee;
300     box-shadow: none;
301 }
302 .toggle.off .toggle-handle {
303     background-color: #eee;
304 }
305 .toggle-handle {
306     background-color: #fff;
307     border-width: 0 1px;
308     border: 1px solid transparent;
309     border-color: #ccc;
310 }
311 .field.yesno:hover .toggle {
312     border-color: $link_hover_color;
313     transition: all 0.25s ease-in-out;
314 }
315 .field.yesno:hover .toggle-handle {
316     background-color: #fff;
317     transition: all 0.25s ease-in-out;
318 }
319
320 .form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn {
321     padding: .275rem .75rem;
322     /*font-size: .875rem;*/
323     line-height: 1.5;
324     height: 30px;
325     border-radius: .2rem;
326 }
327 /* Bootstrap media class fix/hack
328  * This is a test. I thought it does have some
329  * issues in some corner cases. Maybe we remove
330  * once more
331  * https://github.com/twbs/bootstrap/issues/6053
332  */
333 .media, .media-body {
334     overflow: visible;
335 }
336 .media .media-body {
337     display: table-cell;
338     width: 10000px;
339     *width: auto;
340     *zoom: 1;
341 }
342 .media:before, .media:after {
343     content: "";
344     display: table;
345 }
346 .media:after {
347     clear: both;
348 }
349
350 /* Badges */
351 .badge {
352     vertical-align: baseline;
353     background-color: $link_color;
354     border-radius: 4px;
355     z-index: 1;
356 }
357 aside .badge {
358     opacity: 0.7;
359 }
360
361 /* disabled elements */
362 .community-content-wrapper > h3, .network-content-wrapper > .section-title-wrapper {
363     display:none;
364 }
365
366 header #site-location {
367     display: none;
368 }
369 header #banner {
370     position: fixed;
371     top: 0px;
372 /*    width: 33%;
373     margin-left: 33%;
374     margin-right: 33%;*/
375     left:49%;
376     right: 49%;
377     z-index: 1040;
378     margin-top: 14px;
379     text-align: center;
380     text-shadow: 1px 1px 2px rgba(0,0,0,.5);
381     font-size: 14px;
382     font-family: tahoma, "Lucida Sans", sans;
383     color: #fff;
384     font-weight: bold;
385     whitespace: nowrap;
386     padding-left: 55px;
387 }
388 header #banner #logo-img,
389 .navbar-brand #logo-img {
390     /*mask: url('network#m1');*/
391     /*mask-image: url('img/friendica-25.png');*/
392     -webkit-mask-image: url('img/friendica-25.png');
393     background-color: $nav_icon_color;
394     height: 25px;
395     width: 25px;
396     margin-left: auto;
397     margin-right: auto;
398 }
399
400 #navbrand-container {
401     display: flex;
402 }
403 #navbrand-container #navbar-brand-text {
404     padding-left: 5px;
405 }
406
407 /* NavBar */
408 .topbar {
409     position: fixed;
410     display: block;
411     height: 50px;
412     width: 100%;
413     padding-left: 15px;
414     padding-right: 15px
415 }
416 .topbar ul.nav {
417     float: left
418 }
419 .topbar ul.nav>li {
420     float: left
421 }
422 @media (min-width: 992px) {
423 .topbar ul.nav>li>a {
424     padding-top: 15px;
425     padding-bottom: 15px;
426     line-height: 20px
427 }
428 }
429 @media (max-width: 991px) {
430     .topbar ul.nav>li>a { padding-left: 10px; padding-right: 10px; };
431 }
432 .topbar .dropdown-footer {
433     margin: 10px
434 }
435 .topbar .dropdown-header {
436     font-size: 16px;
437     padding: 3px 10px;
438     margin-bottom: 10px;
439     font-weight: 300;
440     color: #bebebe
441 }
442 .topbar .dropdown-header .dropdown-header-link {
443     position: absolute;
444     top: 2px;
445     right: 10px
446 }
447 .topbar .dropdown-header .dropdown-header-link a,
448 .topbar .dropdown-header .dropdown-header-link .btn-link {
449     /*color: #6fdbe8!important;*/
450     color: $link_color !important;
451     font-size: 12px;
452     font-weight: 400
453 }
454 .topbar .dropdown-header:hover {
455     color: #bebebe
456 }
457 #topbar-first,
458 nav.navbar {
459     background-color: $nav_bg;
460     top: 0;
461     z-index: 1030;
462     color: $nav_icon_color;
463 }
464 #topbar-first .nav>li>a:hover,
465 #topbar-first .nav>li>a:focus,
466 #topbar-first .nav>.open>a,
467 nav.navbar .nav>li>a:hover,
468 nav.navbar .nav>li>a:focus{
469     background-color: $nav_icon_hover_color;
470 }
471 #topbar-first .nav>.account {
472     height: 50px;
473     margin-left: 20px
474 }
475 #topbar-first .nav>.account img {
476     margin-left: 10px;
477     height: 32px;
478     width: 32px;
479     border-radius: 3px;
480 }
481 #topbar-first .nav>.account .dropdown-toggle {
482     padding: 10px 5px 0px;
483     line-height: 1.1em;
484     text-align: left
485 }
486 #topbar-first .nav>.account .dropdown-toggle span {
487     font-size: 12px
488 }
489 #topbar-first .topbar-brand {
490     position: relative;
491     z-index: 2
492 }
493 #topbar-first .topbar-actions {
494     position: relative;
495     z-index: 3
496 }
497 #topbar-first .topbar-nav {
498     /*position: absolute;*/
499     left: 0;
500     right: 0;
501     text-align: center;
502     z-index: 1
503 }
504 #topbar-first .topbar-nav .nav-segment {
505     position: relative;
506     text-align: left
507 }
508 #topbar-first .topbar-nav .nav-segment>a {
509 /*    padding: 5px 10px;
510     margin: 10px 2px;*/
511     display: inline-block;
512 /*    border-radius: 2px;*/
513     text-decoration: none;
514     text-align: left
515 }
516 #topbar-first .topbar-nav .nav-segment .nav-notify {
517     position: absolute;
518     top: 4px;
519     right: -2px;
520     background-color: #ff8989;
521
522 /*    text-transform: uppercase;
523     display: inline-block;
524     padding: 3px 5px 4px;
525     font-weight: 600;
526     font-size: 10px!important;
527     color: #fff!important;
528     vertical-align: baseline;
529     white-space: nowrap;
530     text-shadow: none;
531     display: none;*/
532 }
533 #topbar-first #intro-update{
534     cursor: pointer;
535 }
536 #topbar-first .topbar-nav .arrow:after {
537     position: absolute;
538     display: block;
539     width: 0;
540     height: 0;
541     border-color: transparent;
542     border-style: solid;
543     border-width: 10px;
544     content: " ";
545     top: 1px;
546     margin-left: -10px;
547     border-top-width: 0;
548     border-bottom-color: #fff;
549     z-index: 1035
550 }
551 #topbar-first .topbar-nav .arrow {
552     position: absolute;
553     display: block;
554     width: 0;
555     height: 0;
556     border-color: transparent;
557     border-style: solid;
558     z-index: 1001;
559     border-width: 11px;
560     left: 50%;
561     margin-left: -18px;
562     border-top-width: 0;
563     border-bottom-color: rgba(0, 0, 0, .15);
564     top: -19px;
565     z-index: 1035
566 }
567 #topbar-first .topbar-nav .dropdown-menu {
568     width: 350px;
569     margin-left: -148px
570 }
571 #topbar-first .topbar-nav .dropdown-menu ul.media-list {
572     max-height: 400px;
573     overflow: auto
574 }
575 #topbar-first .topbar-nav .dropdown-menu li {
576     position: relative
577 }
578 #topbar-first .topbar-nav .dropdown-menu li i.approval {
579     position: absolute;
580     left: 2px;
581     top: 36px;
582     font-size: 14px
583 }
584 #topbar-first .topbar-nav .dropdown-menu li i.accepted {
585     color: #5cb85c
586 }
587 #topbar-first .topbar-nav .dropdown-menu li i.declined {
588     color: #d9534f
589 }
590 #topbar-first .topbar-nav .dropdown-menu li .media {
591     position: relative
592 }
593 #topbar-first .topbar-nav .dropdown-menu li .media .img-space {
594     position: absolute;
595     top: 14px;
596     left: 14px
597 }
598 #topbar-first .dropdown-footer {
599     margin: 10px 10px 5px
600 }
601 #topbar-first a, #topbar-first .btn-link,
602 nav.navbar a, nav.navbar .btn-link {
603     color: $nav_icon_color;
604 }
605 #topbar-first .caret {
606     border-top-color: #bebebe
607 }
608 #topbar-first .btn-group>a {
609     background-color: #7f9baa
610 }
611 #topbar-first .btn-enter {
612     background-color: #7f9baa;
613     margin: 6px 0
614 }
615 #topbar-first .btn-enter:hover {
616     background-color: #89a2b0
617 }
618 .navbar-fixed-top ul.nav.navbar-nav.navbar-right {
619     display: flex;
620 }
621
622
623 /* Notification Menu */
624 #topbar-first #nav-notifications-menu {
625     max-height: 400px;
626 }
627 #topbar-first #nav-notifications-menu a {
628     color: #555;
629     padding: 0;
630 }
631 #topbar-first #nav-notifications-menu li.notif-entry {
632     color: #555;
633     padding: 10px;
634     border-bottom: 1px solid #eee;
635     position: relative;
636     border-left: 3px solid #fff;
637     font-size: 12px;
638 }
639
640 #topbar-first #nav-notifications-menu li.notify-unseen {
641     border-left: 3px solid #f3fcfd;
642     background-color: #f3fcfd;
643 }
644 #topbar-first #nav-notifications-menu li.notif-entry:hover {
645     background-color: #f7f7f7;
646     /*border-left: 3px solid #6fdbe8;*/
647     border-left: 3px solid $link_color;
648 }
649 /*#topbar-first #nav-notifications-menu i.accepted {
650     color: #6fdbe8!important
651 }
652 #topbar-first #nav-notifications-menu i.declined {
653     color: #ff8989!important
654 }*/
655 #topbar-first #nav-notifications-menu li.placeholder {
656     border-bottom: none
657 }
658 #topbar-first #nav-notifications-menu .media .media-body {
659     font-size: 13px!important;
660     font-weight: 600!important;
661     cursor: pointer;
662 }
663 #topbar-first #nav-notifications-menu .media .media-body .contactname {
664     font-weight: bold;
665 }
666 #topbar-first #nav-notifications-menu .media .media-body .label {
667     padding: .1em .5em
668 }
669 #topbar-first #nav-notifications-menu li.notif-entry .media-object a img {
670     height: 32px;
671     width: 32px;
672     border-radius: 3px;
673 }
674 /* The Top Nav Bar user menu */
675 #topbar-first .account .user-title {
676     text-align: right;
677     margin-top: 7px;
678 }
679 #topbar-first .account .user-title span {
680     color: $nav_icon_color;
681 }
682 #topbar-first .account #main-menu .nav-notify {
683     position: absolute;
684     top: 4px;
685     right: -2px;
686     background-color: #ff8989;
687 }
688 #myNavmenu li,
689 #myNavmenu a {
690     background-color: $nav_bg;
691     color: $nav_icon_color;
692 }
693 #myNavmenu li.nav-sitename {
694     font-weight: bold;
695 }
696 #topbar-first .dropdown.account > a,
697 #topbar-first .dropdown.account.open > a,
698 #topbar-first .dropdown.account > button,
699 #topbar-first .dropdown.account.open > button,
700 #topbar-first .dropdown.account > :hover,
701 #topbar-first .dropdown.account.open > :hover {
702     background-color: $nav_bg;
703 }
704 #topbar-first .dropdown.account li#nav-sitename {
705     padding-left: 15px;
706     padding-right: 15px;
707     font-weight: bold;
708     word-break: break-word;
709 }
710 #topbar-first .dropdown.account li#nav-sitename:hover {
711     border: none;
712     background-color: $nav_bg;
713 }
714 /* Nav Search */
715 #topbar-first #search-box .navbar-form {
716     margin: 0px;
717     padding: 10px 15px;
718 }
719 #search-mobile .navbar-form {
720     margin: 0;
721 }
722 #topbar-first #search-box .form-search {
723     height: 25px;
724     font-size: 13px;
725     background-position: 8px 4px;
726 }
727 #topbar-first #search-box .btn {
728     font-size: 10px;
729     padding: 1px 8px;
730 }
731
732 /* second topbar */
733 #topbar-second {
734     height: 40px;
735     top: 50px;
736     background-color: #fff;
737     z-index: 1029;
738     background-image: none;
739     -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
740     -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
741     box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
742     border-bottom: 1px solid #d4d4d4
743 }
744 #topbar-second > .container {
745     height: 100%;
746 }
747 @media screen and (max-width: 767px) {
748     #topbar-second > .container,
749     #topbar-second #navbar-button {
750     padding: 0;
751     }
752 }
753 #topbar-second .dropdown-menu {
754     padding-top: 0;
755     padding-bottom: 0
756 }
757 #topbar-second .dropdown-menu .divider {
758     margin: 0
759 }
760 #topbar-second #space-menu-dropdown,
761 #topbar-second #search-menu-dropdown {
762     width: 400px
763 }
764 #topbar-second #space-menu-dropdown .media-list,
765 #topbar-second #search-menu-dropdown .media-list {
766     max-height: 400px;
767     overflow: auto
768 }
769 @media screen and (max-width: 768px) {
770     #topbar-second #space-menu-dropdown .media-list,
771     #topbar-second #search-menu-dropdown .media-list {
772         max-height: 200px
773     }
774 }
775 #topbar-second #space-menu-dropdown form,
776 #topbar-second #search-menu-dropdown form {
777     margin: 10px
778 }
779 #topbar-second #space-menu-dropdown .search-reset,
780 #topbar-second #search-menu-dropdown .search-reset {
781     position: absolute;
782     color: #999;
783     margin: 10px;
784     top: 8px;
785     right: 10px;
786     display: none;
787     cursor: pointer
788 }
789 #topbar-second .nav>li>a {
790     padding: 6px 13px 0;
791     text-decoration: none;
792     text-shadow: none;
793     font-weight: 600;
794     font-size: 10px;
795     text-transform: uppercase;
796     text-align: center;
797     min-height: 49px
798 }
799 #topbar-second .nav>li>a:hover,
800 #topbar-second .nav>li>a:active,
801 #topbar-second .nav>li>a:focus {
802     /*border-bottom: 3px solid #6fdbe8;*/
803     border-bottom: 3px solid $link_color;
804     background-color: #f7f7f7;
805     color: #555;
806     text-decoration: none
807 }
808 #topbar-second .nav>li>a i {
809     font-size: 14px
810 }
811 #topbar-second .nav>li>a .caret {
812     border-top-color: #7a7a7a
813 }
814 #topbar-second .nav>li>ul>li>a {
815     border-left: 3px solid #fff;
816     background-color: #fff;
817     color: #555
818 }
819 #topbar-second .nav>li>ul>li>a:hover,
820 #topbar-second .nav>li>ul>li>a.active {
821     /*border-left: 3px solid #6fdbe8;*/
822     border-left: 3px solid $link_color;
823     background-color: #f7f7f7;
824     color: #555
825 }
826 #topbar-second .nav>li.active>a {
827     min-height: 46px
828 }
829 #topbar-second .nav>li>a#space-menu {
830     padding-right: 13px;
831     border-right: 1px solid #ededed
832 }
833 #topbar-second .nav>li>a#search-menu {
834     padding-top: 15px
835 }
836 #topbar-second .nav>li>a:hover,
837 #topbar-second .nav .open>a,
838 #topbar-second .nav>li.active {
839     /*border-bottom: 3px solid #6fdbe8;*/
840     border-left: 3px solid $link_color;
841     background-color: #f7f7f7;
842     color: #555
843 }
844 #topbar-second .nav>li.active>a:hover {
845     border-bottom: none
846 }
847 #topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p {
848     color: #bebebe;
849     font-size: 11px;
850     margin: 0;
851     font-weight: 400
852 }
853 #topbar-second #nav-short-info .heading {
854     margin-left: -14px;
855     overflow: hidden;
856     white-space: nowrap;
857     padding-right: 20px;
858     text-overflow: ellipsis;
859 }
860 #topbar-second #tabmenu .heading {
861     overflow: hidden;
862     text-overflow: ellipsis;
863     white-space: nowrap;
864     color: $link_color;
865     text-align: center;
866 }
867
868 /* Dropdown Menus */
869 .nav > li > .btn-link {
870     position: relative;
871     display: block;
872     padding: 10px 15px;
873 }
874 .nav > li > .btn-link:focus,
875 .nav > li > .btn-link:hover {
876     text-decoration: none;
877     background-color: #eee;
878 }
879 .nav .open > .btn-link,
880 .nav .open > .btn-link:focus,
881 .nav .open > .btn-link:hover {
882     background-color: #eee;
883     border-color: #337ab7;
884 }
885 .nav-pills > li > .btn-link {
886     border-radius: 4px;
887 }
888 .nav-pills .dropdown-menu,
889 .nav-tabs .dropdown-menu,
890 .account .dropdown-menu,
891 .contact-photo-wrapper .dropdown-menu {
892     background-color: $nav_bg;
893     border: none
894 }
895 .nav-pills .dropdown-menu li.divider,
896 .nav-tabs .dropdown-menu li.divider,
897 .account .dropdown-menu li.divider,
898 .contact-photo-wrapper .dropdown-menu li.divider {
899     background-color: $menu_background_hover_color;
900     border-bottom: none;
901     margin: 9px 1px!important
902 }
903 .nav-pills .dropdown-menu li,
904 .nav-tabs .dropdown-menu li,
905 .account .dropdown-menu li,
906 .contact-photo-wrapper .dropdown-menu li {
907     border-left: 3px solid $nav_bg;
908 }
909 .nav-pills .dropdown-menu li a, .nav-pills .dropdown-menu li .btn-link,
910 .nav-tabs .dropdown-menu li a, .nav-tabs .dropdown-menu li .btn-link,
911 .account .dropdown-menu li a, .account .dropdown-menu li .btn-link,
912 .contact-photo-wrapper .dropdown-menu li a, .contact-photo-wrapper .dropdown-menu li .btn-link {
913     color: $nav_icon_color;
914     font-weight: 400;
915     font-size: 13px;
916     padding: 4px 15px;
917     text-transform: capitalize;
918     width: 100%;
919     text-align: left;
920 }
921 .nav-pills .dropdown-menu li a i, .nav-pills .dropdown-menu li .btn-link i,
922 .nav-tabs .dropdown-menu li a i, .nav-tabs .dropdown-menu li .btn-link i,
923 .account .dropdown-menu li a i, .account .dropdown-menu li .btn-link i,
924 .contact-photo-wrapper .dropdown-menu li a i, .contact-photo-wrapper .dropdown-menu li .btn-link i {
925     margin-right: 5px;
926     font-size: 14px;
927     display: inline-block;
928     width: 14px
929 }
930 .nav-pills .dropdown-menu li a:hover, .nav-pills .dropdown-menu li .btn-link:hover,
931 .nav-tabs .dropdown-menu li a:hover, .nav-tabs .dropdown-menu li .btn-link:hover,
932 .account .dropdown-menu li a:hover, .account .dropdown-menu li .btn-link:hover,
933 .contact-photo-wrapper .dropdown-menu li a:hover, .contact-photo-wrapper .dropdown-menu li .btn-link:hover,
934 .nav-pills .dropdown-menu li a:visited, .nav-pills .dropdown-menu li .btn-link:visited,
935 .nav-tabs .dropdown-menu li a:visited, .nav-tabs .dropdown-menu li .btn-link:visited,
936 .account .dropdown-menu li a:visited, .account .dropdown-menu li .btn-link:visited,
937 .contact-photo-wrapper .dropdown-menu li a:visited, .contact-photo-wrapper .dropdown-menu li .btn-link:visited,
938 .nav-pills .dropdown-menu li a:hover, .nav-pills .dropdown-menu li .btn-link:hover,
939 .nav-tabs .dropdown-menu li a:hover, .nav-tabs .dropdown-menu li .btn-link:hover,
940 .account .dropdown-menu li a:hover, .account .dropdown-menu li .btn-link:hover,
941 .contact-photo-wrapper .dropdown-menu li a:hover, .contact-photo-wrapper .dropdown-menu li .btn-link:hover,
942 .nav-pills .dropdown-menu li a:focus, .nav-pills .dropdown-menu li .btn-link:focus,
943 .nav-tabs .dropdown-menu li a:focus, .nav-tabs .dropdown-menu li .btn-link:focus,
944 .account .dropdown-menu li a:focus, .account .dropdown-menu li .btn-link:focus,
945 .contact-photo-wrapper .dropdown-menu li a:focus, .contact-photo-wrapper .dropdown-menu li .btn-link:focus {
946     background: 0 0
947 }
948 .nav-pills .dropdown-menu li:hover,
949 .nav-tabs .dropdown-menu li:hover,
950 .account .dropdown-menu li:hover,
951 .contact-photo-wrapper .dropdown-menu li:hover,
952 .nav-pills .dropdown-menu li.selected,
953 .nav-tabs .dropdown-menu li.selected,
954 .account .dropdown-menu li.selected,
955 .contact-photo-wrapper .dropdown-menu li.selected {
956     /*border-left: 3px solid #6fdbe8;*/
957     border-left: 3px solid $link_color;
958     color: #fff!important;
959     background-color: $menu_background_hover_color !important;
960 }
961 .nav-pills.preferences .dropdown .dropdown-toggle,
962 .nav-pills.preferences > li > .btn {
963     color: #bebebe;
964 }
965 .nav-pills.preferences .dropdown.open .dropdown-toggle,
966 .nav-pills.preferences .dropdown.open .dropdown-toggle:hover {
967     background-color: $nav_bg;
968 }
969
970 .nav-pills.preferences .dropdown .dropdown-toggle,
971 .nav-pills.preferences > li > .btn {
972     padding: 2px 10px;
973 }
974
975
976 /*
977  * Aside
978  *
979  */
980
981 aside .widget,
982 .nav-container .widget {
983     border: none;
984     color: #777;
985     /*background-color: #fff;*/
986     background-color: rgba(255,255,255,$contentbg_transp);
987     box-shadow: 0 0 3px #dadada;
988     -webkit-box-shadow: 0 0 3px #dadada;
989     -moz-box-shadow: 0 0 3px #dadada;
990     border-radius: 4px;
991     position: relative;
992     margin-bottom: 20px;
993     padding: 10px;
994     font-size: 13px;
995 }
996 aside .widget h3,
997 .nav-container .widget h3 {
998     font-weight: bold;
999     font-size: 16px;
1000     margin: 0;
1001     padding-bottom: 20px;
1002 }
1003
1004 aside .widget ul,
1005 .nav-container .widget ul {
1006     padding: 0px;
1007     margin-top: 0px;
1008     margin-bottom: 0px;
1009     margin-left: -10px;
1010     margin-right: -10px;
1011     /*padding-left: 10px;*/
1012     list-style: none;
1013 }
1014
1015 aside .widget li,
1016 .nav-container .widget li {
1017     padding-top: 2px;
1018     padding-bottom: 2px;
1019     padding-left: 20px;
1020     padding-right: 20px;
1021 }
1022 aside .widget li:hover,
1023 aside .widget li.selected,
1024 .nav-container .widget li:hover {
1025     z-index: 2;
1026     color: #555;
1027     /*background-color: #f7f7f7;*/
1028     background-color: rgba(247, 247, 247, $contentbg_transp);
1029     /*border-left: 3px solid #6fdbe8!important;*/
1030     border-left: 3px solid $link_color !important;
1031     padding-left: 17px;
1032 }
1033 aside .widget li a,
1034 aside .widget li a:hover {
1035     color: #555;
1036 }
1037
1038 /* forumlist widget */
1039 aside > #datebrowse-sidebar li.posted-date-selector-months {
1040     margin-bottom: 10px;;
1041     padding: 0;
1042     width: 100%
1043 }
1044 aside > #datebrowse-sidebar li.posted-date-selector-months:hover {
1045     border-left: none !important;
1046     background-color: transparent !important;
1047 }
1048 aside > #datebrowse-sidebar .posted-date-selector-months > ul {
1049     margin: 0;
1050 }
1051 aside > #datebrowse-sidebar .posted-date-selector-months > ul > li{
1052     padding-left: 30px;
1053 }
1054 aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover{
1055     padding-left: 27px;
1056 }
1057
1058 /* vcard / h-card */
1059 aside .vcard #profile-photo-wrapper{
1060     margin: 0;
1061 }
1062 aside .vcard img.u-photo,
1063 aside img.vcard-photo {
1064     width: 100%;
1065     border-radius: 3px;
1066 }
1067 aside .vcard .tool .action{
1068     position: absolute;
1069     top:20px;
1070     right: 20px;
1071     font-size: 32px;
1072     width: 45px;
1073     height: 45px;
1074     background: rgba(0,0,0,.50);
1075     text-align: center;
1076     border-radius: 3px;
1077     opacity: 0;
1078     -webkit-transition: all 0.25s ease-in-out;
1079     -moz-transition: all 0.25s ease-in-out;
1080     -o-transition: all 0.25s ease-in-out;
1081     -ms-transition: all 0.25s ease-in-out;
1082     transition: all 0.25s ease-in-out;
1083 }
1084 aside .vcard .tool a {
1085 color: rgba(255,255,255,.85);
1086 }
1087 aside .vcard #profile-photo-wrapper:hover .tool .action {
1088     opacity: 1;
1089 }
1090 aside .vcard #profile-photo-wrapper.crop-preview {
1091     padding: 0;
1092 }
1093 aside .vcard .profile-header {
1094     margin-bottom: 20px;
1095 }
1096 aside .vcard .fn {
1097     font-size: 20px;
1098     font-weight: bold;
1099 }
1100 aside .vcard .p-addr {
1101     font-style: italic;
1102     overflow: hidden;
1103     text-overflow: ellipsis;
1104     white-space: nowrap;
1105     padding-bottom: 2px;
1106 }
1107
1108 aside .vcard .detail {
1109     display: table;
1110     padding: 5px 0;
1111 }
1112 aside .xmpp {
1113     display: table;
1114 }
1115 aside .vcard .icon {
1116     display: table-cell;
1117     padding-right: 10px;
1118 }
1119 #profile-extra-links {
1120     margin-bottom: 20px;
1121 }
1122 aside .vcard #dfrn-request-link-button,
1123 aside .vcard #wallmessage-link-botton {
1124     width: 50%;
1125     margin: 0 0 0 -5px;
1126     float: left;
1127     padding: 0 5px;
1128 }
1129 aside .vcard #dfrn-request-link,
1130 aside .vcard #wallmessage-link {
1131     width: 100%;
1132 }
1133 /* vcard-short-info */
1134 #vcard-short-info,
1135 #nav-short-info .contact-wrapper {
1136     margin-top: 2px;
1137     height: 40px;
1138     white-space: nowrap;
1139     overflow: hidden;
1140     padding-right: 20px;
1141     margin-left: -14px;
1142 }
1143 #nav-short-info .contact-photo-wrapper.media-left {
1144     float: left;
1145 }
1146 #vcard-short-photo-wrapper img,
1147 #nav-short-info .contact-wrapper img {
1148     height: 34px;
1149     width: 34px;
1150     border-radius: 3px;
1151 }
1152 #vcard-short-desc,
1153 #nav-short-info .contact-wrapper .media-body {
1154     display: block;
1155     height: 34px;
1156     width: 100%;
1157     text-overflow: ellipsis;
1158 }
1159 #vcard-short-desc > .media-heading,
1160 #vcard-short-desc > .vcard-short-addr,
1161 #nav-short-info .contact-wrapper .media-heading,
1162 #nav-short-info .contact-wrapper #contact-entry-url-network {
1163     text-overflow: ellipsis;
1164     overflow: hidden;
1165 }
1166 #vcard-short-desc > .media-heading,
1167 #nav-short-info .contact-wrapper .media-heading {
1168     margin-bottom: 1px;
1169     font-weight: bold;
1170 }
1171 #nav-short-info .contact-wrapper .media-heading a {
1172     color: #555;
1173     font-size: 14px !important;
1174 }
1175 #vcard-short-desc > .vcard-short-addr,
1176 #nav-short-info .contact-wrapper #contact-entry-url-network {
1177     color: #777;
1178     font-size: 12px;
1179 }
1180 .network-content-wrapper > #viewcontact_wrapper-network,
1181 #nav-short-info .contact-wrapper .contact-photo-overlay,
1182 #nav-short-info .contact-wrapper .contact-actions{
1183     display: none
1184 }
1185
1186 aside #peoplefind-sidebar input,
1187 aside #follow-sidebar input {
1188     height: 30px;
1189     background-position: 10px 5px;
1190 }
1191 aside #peoplefind-sidebar label,
1192 aside #follow-sidebar label {
1193     font-weight: normal;
1194 }
1195 aside #peoplefind-sidebar .form-group-search .form-button-search,
1196 aside #follow-sidebar .form-group-search .form-button-search {
1197     padding: 2px 8px;
1198 }
1199
1200 aside #group-sidebar .group-edit-tool,
1201 aside #saved-search-list .savedsearchdrop {
1202     opacity: 0.1;
1203     transition: all 0.25s ease-in-out;
1204 }
1205 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
1206 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
1207     opacity: 0.8;
1208     transition: all 0.25s ease-in-out;
1209 }
1210 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
1211 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
1212     opacity: 1;
1213 }
1214 aside #group-sidebar li .group-checkbox {
1215     margin: 0;
1216 }
1217 aside #group-sidebar li .group-edit-tool {
1218     padding-right: 10px;
1219 }
1220 aside #group-sidebar li .group-edit-tool:first-child {
1221     padding-right: 0px;
1222 }
1223
1224 /* contact block widget */
1225 #contact-block .contact-block-content {
1226     clear: both;
1227     overflow: auto;
1228     height: auto;
1229 }
1230 #contact-block .contact-block-div {
1231     float: left;
1232     margin: 0px 5px 5px 0px;
1233 /*    height: 90px;
1234     width: 90px;*/
1235 }
1236 #contact-block contact-block-link {
1237
1238 }
1239 #contact-block .contact-block-img {
1240     height: 75px;
1241     width: 75px;
1242     border-radius: 4px;
1243 }
1244
1245 /* Tag cloud widget */
1246 .tagblock.widget > .tag-cloud {
1247     text-align: center;
1248 }
1249 /* Section */
1250 section ul.tabs {
1251     display: none !important;
1252 }
1253
1254 /* Jot */
1255 section #jotOpen {
1256     display: none;
1257 }
1258 #jotOpen {
1259     margin-top: 3px;
1260     float: right;
1261 }
1262 #jot-content {
1263     display: none;
1264 }
1265 .jothidden {
1266     /*display: none;*/
1267 }
1268 #jot-modal .modal-header a, #jot-modal .modal-header .btn-link,
1269 #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link {
1270     color: #555;
1271     text-transform: capitalize;
1272 }
1273 #jot-modal .modal-header {
1274     border-bottom: none;
1275 }
1276 #jot-title-wrap, #jot-category-wrap {
1277     margin-bottom: 5px;
1278 }
1279 #jot-text-wrap {
1280     margin-top: 20px;
1281 }
1282 #jot-text-wrap textarea {
1283     min-height: 100px;
1284 }
1285 #profile-jot-wrapper button#profile-jot-submit {
1286     margin-top: 5px;
1287 }
1288 #profile-jot-wrapper #character-counter {
1289     padding: 10px 15px;
1290 }
1291
1292 /* ACL */
1293 /*#jot-modal-body {
1294     height: auto;
1295     max-height: calc(100vh - 130px);
1296     overflow-y: hidden;
1297 }*/
1298 #acl-search {
1299     margin-top: 20px;
1300     /*padding: 8px;*/
1301     /*border: 1px solid #ccc;*/
1302     width: 100%;
1303 }
1304 #acl-list {
1305     display: block;
1306     border: 1px solid #ccc;
1307     overflow: auto;
1308     clear: both;
1309     min-height: 62px;
1310     margin-top: 20px;
1311     padding: 10px 10px 0px 0px;
1312     -webkit-border-radius: 4px;
1313     -moz-border-radius: 4px;
1314     border-radius: 4px;
1315 }
1316 #acl-list-content {
1317     overflow-y: auto;
1318     max-height: calc(100vh - 330px);
1319     height: auto !important;
1320 }
1321 .acl-list-item {
1322     width: 48%;
1323     width: calc(50% - 10px);
1324     border: 1px solid #ccc;
1325     margin: 0px 0px 10px 10px;
1326     padding: 5px;
1327     float: left;
1328     -webkit-border-radius: 4px;
1329     -moz-border-radius: 4px;
1330     border-radius: 4px;
1331 }
1332 .acl-list-item img {
1333     width: 40px;
1334     height: 40px;
1335     float: left;
1336     margin-right: 5px;
1337     -webkit-border-radius: 4px;
1338     -moz-border-radius: 4px;
1339     border-radius: 4px;
1340 }
1341 .acl-list-item p {
1342     margin: 0px;
1343     white-space: nowrap;
1344     overflow: hidden;
1345     text-overflow: ellipsis;
1346 }
1347 .acl-list-item.groupshow {
1348     background-color: #8DB255
1349 }
1350 .acl-list-item.grouphide {
1351     background-color: #E68364;
1352 }
1353 .acl-button-show, .acl-button-hide {
1354     float: right;
1355     margin-left: 5px;
1356 }
1357 #acl-showall.selected {
1358     background-color: #4CAF50;
1359     color: #fff;
1360 }
1361 .acl-button-show.selected {
1362     background-color: #4CAF50;
1363     color: #fff;
1364 }
1365 .acl-button-hide.selected {
1366     background-color: #F44336;
1367     color: #fff;
1368 }
1369
1370 /* Filebrowser */
1371 .fbrowser .breadcrumb {
1372     margin-bottom: 0px;
1373 }
1374 .fbrowser .path a:before {
1375     content: "";
1376     padding: 0;
1377 }
1378 .fbrowser .breadcrumb > li:last-of-type a{
1379     color: #777;
1380     pointer-events: none;
1381     cursor: default;
1382 }
1383 .fbrowser .folders {
1384     box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
1385     padding-right: 1px;
1386 }
1387 .fbrowser .folders ul {
1388     padding: 0px;
1389     margin-left: -15px;
1390     margin-bottom: 0px;
1391     overflow-y: auto;
1392     min-width: 100px;
1393     max-height: calc(100vh - 210px);
1394     line-height: 1.3;
1395 }
1396 @media (min-width: 768px) {
1397     .fbrowser .folders ul {
1398         max-height: calc(100vh - 255px);
1399     }
1400 }
1401 .fbrowser .folders li {
1402     padding-left: 20px;
1403     padding-right: 10px;
1404     padding-top: 3px;
1405     padding-bottom: 3px;
1406 }
1407 .fbrowser .folders li:hover {
1408     z-index: 2;
1409     color: #555;
1410     background-color: rgba(247, 247, 247, $contentbg_transp);
1411     border-left: 3px solid $link_color !important;
1412     padding-left: 17px;
1413 }
1414 .fbrowser .folders li a,
1415 .fbrowser .folders li a:hover {
1416     color: #555;
1417     font-size: 13px;
1418 }
1419 .fbrowser .folders + .list {
1420     padding-left: 10px;
1421 }
1422 .fbrowser .fbrowser-content-container {
1423     overflow-y: auto;
1424     max-height: calc(100vh - 175px);
1425 }
1426 @media (min-width: 768px) {
1427     .fbrowser .fbrowser-content-container {
1428         max-height: calc(100vh - 220px);
1429     }
1430 }
1431 .fbrowser.image .photo-album-image-wrapper {
1432     box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
1433 }
1434 .fbrowser .profile-rotator-wrapper {
1435     min-height: 200px;
1436 }
1437 .fbrowser .fa-spin {
1438    position: absolute;
1439    left: 45%;
1440    top: 40%;
1441    font-size: 48px;
1442    margin:0px auto;
1443 }
1444
1445 /*
1446 /* Stream
1447 */
1448 .panel {
1449     border: none;
1450     /*background-color: #fff;*/
1451     background-color: rgba(255,255,255,$contentbg_transp);
1452     box-shadow: 0 0 3px #dadada;
1453     -webkit-box-shadow: 0 0 3px #dadada;
1454     -moz-box-shadow: 0 0 3px #dadada;
1455     border-radius: 4px;
1456     position: relative;
1457 }
1458 .panel.panel-inline {
1459     margin-left: -15px;
1460     margin-right: -15px;
1461     margin-top: 15px;
1462     padding: 15px;
1463 }
1464 .panel .panel-body {
1465     padding: 15px;
1466     font-size: 14px;
1467 }
1468 .panel .panel-body .wall-item-content {
1469     color: #555;
1470 }
1471 .tread-wrapper .media {
1472     overflow: visible;
1473     word-wrap: break-word;
1474 }
1475
1476 /* Thread hover effects */
1477 .wall-item-container .wall-item-content a,
1478 .wall-item-container a,
1479 .wall-item-container .fakelink,
1480 .toplevel_item .fakelink,
1481 .toplevel_item .wall-item-container .wall-item-responses a {
1482     color: #555;
1483     -webkit-transition: all 0.25s ease-in-out;
1484     -moz-transition: all 0.25s ease-in-out;
1485     -o-transition: all 0.25s ease-in-out;
1486     -ms-transition: all 0.25s ease-in-out;
1487     transition: all 0.25s ease-in-out;
1488 }
1489
1490 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1491 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1492 .toplevel_item:hover .wall-item-content a,
1493 .toplevel_item:hover .wall-item-name,
1494 .wall-item-container:hover .wall-item-content a,
1495 .wall-item-container:hover .wall-item-name,
1496 .wall-item-container:hover .wall-item-location a {
1497     /*color: #6fdbe8;*/
1498     color: $link_color;
1499     -webkit-transition: all 0.25s ease-in-out;
1500     -moz-transition: all 0.25s ease-in-out;
1501     -o-transition: all 0.25s ease-in-out;
1502     -ms-transition: all 0.25s ease-in-out;
1503     transition: all 0.25s ease-in-out;
1504 }
1505
1506 /* wall items */
1507 .wall-item-container {
1508     position: relative;
1509 }
1510
1511 /* wall items contact photo */
1512 .contact-photo {
1513     height: 48px;
1514     width: 48px;
1515     border-radius: 3px;
1516     /*maybe some adional stuff is needed for the different screen sizes */
1517 }
1518 .contact-photo-image-wrapper {
1519     width: 100%;
1520     height: 100%;
1521     overflow: hidden;
1522     position: relative;
1523     text-align: center;
1524 }
1525 .contact-photo-overlay {
1526     width: 100%;
1527     height: 100%;
1528     position: absolute;
1529     overflow: hidden;
1530     top: 0;
1531     left: 0;
1532     border-radius: 3px;
1533     background:rgba(0,0,0,.50);
1534     text-align:center;
1535     opacity:0;
1536     -webkit-transition: opacity .25s ease;
1537     -moz-transition: opacity .25s ease;
1538 }
1539 .contact-photo-overlay:hover {
1540     opacity: 1;
1541 }
1542 .contact-photo-overlay-content {
1543     font-size: 26px;
1544     text-shadow: 1px 1px 1px #ccc;
1545     color:rgba(255,255,255,.85);
1546     height: 100%;
1547     vertical-align: bottom;
1548 }
1549 .contact-photo-xs{
1550     height: 38px;
1551     width: 38px;
1552     border-radius: 3px;
1553 }
1554 .wwto .contact-photo {
1555     width: auto;
1556     height: 25px;
1557     font-size: 8.8px;
1558     padding: 3.6px 0;
1559     border-radius: 2px;
1560     position: absolute;
1561     top: 30px;
1562     left: 30px;
1563     display: inline-block;
1564 }
1565
1566 /* wall items action dropdown menu */
1567 .nav-pills.preferences {
1568     position: absolute;
1569     right: 15px;
1570     top: 10px;
1571 }
1572 .comment .nav-pills.preferences {
1573     right: 0px;
1574     top: 0px;
1575 }
1576 .wall-item-network {
1577     font-size: 13px;
1578 }
1579
1580 /* wall items contact info */
1581 .media .media-body {
1582     font-size: 13px;
1583 }
1584 .media .media-body h4.media-heading {
1585     font-size: 14px;
1586     font-weight: 500;
1587     color: #555;
1588 }
1589 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1590     display: block;
1591 }
1592 .media .contact-info-comment {
1593     display: table-cell;
1594 }
1595 .media .contact-info-xs h5,
1596 .media .contact-info-comment {
1597     margin: 0 0 5px;
1598 }
1599 .media-heading {
1600     margin: 0 0 5px;
1601 }
1602 .wall-item-name,
1603 .shared-author {
1604     font-size: 15px;
1605     font-weight: bold;
1606 }
1607 .wall-item-name.xs {
1608     font-weight: 700;
1609     font-size: 14px;
1610 }
1611
1612 /* The lock symbol popup */
1613 #panel {
1614     position: absolute;
1615     list-style: none;
1616     background-color: $nav_bg;
1617     border: none;
1618     border-radius: 3px;
1619     float: left;
1620     min-width: 160px;
1621     max-width: 220px;
1622     padding: 10px ;
1623     margin: 2px 0 0;
1624     font-size: 14px;
1625     text-align: left;
1626     color: $nav_icon_color;
1627     z-index: 1000;
1628 }
1629
1630 /* wall items content */
1631 .wall-item-content {
1632     word-break: break-word;
1633 }
1634 .wall-item-content img {
1635     max-height: 480px;
1636     object-fit: contain;
1637 }
1638 .wall-item-body > img,
1639 .wall-item-body > a > img {
1640     border-radius: 3px;
1641 }
1642 .wall-item-body .body-attach > a {
1643     color: #555;
1644     display: inline-block;
1645 }
1646 .wall-item-body .body-attach > a div {
1647     color: #555;
1648     width: 20px;
1649 }
1650
1651 /* wall-item content elements */
1652 .shared-wrapper,
1653 .vevent {
1654     padding: 10px;
1655     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1656 }
1657 @media screen and (max-width: 767px) {
1658     .shared-wrapper,
1659     .vevent {
1660     margin-left: 0px;
1661     margin-right: 0px;
1662     }
1663 }
1664 .shared-wrapper:hover,
1665 .vevent:hover {
1666     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1667 }
1668 .shared_header {
1669     margin-left: 0px;
1670     margin-top: 0px;
1671     padding-top: 0px;
1672     margin-bottom: 10px;
1673     border-top: none;
1674     color: inherit;
1675 }
1676 blockquote.shared_content {
1677     padding: 0px;
1678     margin-left: 0px;
1679     color: inherit;
1680 }
1681 code > .hl-main {
1682     padding: 10px 10px 1px 0;
1683 }
1684 .hl-main ol {
1685     line-height: 1.7;
1686 }
1687 .type-link img.attachment-image {
1688     width: 100%;
1689 }
1690 .type-link blockquote, .type-video blockquote {
1691     margin: 0;
1692     padding: 10px 0;
1693 }
1694 .oembed.video .embed_video > div::before {
1695     font-family: FontAwesome;
1696     font-weight: normal;
1697     font-style: normal;
1698     display: inline-block;
1699     text-decoration: inherit;
1700     vertical-align: top;
1701     font-size: 3em;
1702     content: "\f01d";
1703     color: #fff;
1704     bottom: 0px;
1705     right: 10px;
1706     position: absolute;
1707 }
1708 .oembed.video .embed_video > div {
1709     background-color: rgba(0,0,0,0.2);
1710     -webkit-transition: all 0.25s ease-in-out;
1711     -moz-transition: all 0.25s ease-in-out;
1712     -o-transition: all 0.25s ease-in-out;
1713     -ms-transition: all 0.25s ease-in-out;
1714     transition: all 0.25s ease-in-out;
1715 }
1716 .oembed.video .embed_video > div:hover {
1717     background-color: rgba(0,0,0,0);
1718 }
1719 .wall-item-tags,
1720 .itemedited {
1721     margin-top: 10px;
1722     font-size: 13px;
1723 }
1724
1725 .wall-item-tags a {
1726     color: #555;
1727 }
1728
1729 .wall-item-tags a:hover {
1730     text-decoration: none;
1731 }
1732 .wall-item-bottom .label,
1733 .wall-item-bottom .label a {
1734     color: #fff;
1735 }
1736
1737 /* item social action buttons */
1738 .wall-item-actions {
1739     margin-top: 15px;
1740 }
1741 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1742     font-size: 13px;
1743     color: #555;
1744     margin-bottom: 0;
1745 }
1746 .wall-item-actions .active {
1747     font-weight: bold;
1748 }
1749 .wall-item-actions .active:hover {
1750     color: $link_color;
1751 }
1752 .wall-item-actions-left {
1753     display: table-cell;
1754     vertical-align: middle;
1755 }
1756 .wall-item-actions-right {
1757     display: flex;
1758 }
1759 .wall-item-actions .checkbox {
1760     margin: 0;
1761     margin-left: 20px;
1762 }
1763 .wall-item-actions .button-event {
1764     padding-left: 5px;
1765     padding-right: 5px;
1766 }
1767 .wall-item-actions .button-comments,
1768 .wall-item-actions .button-votes,
1769 .wall-item-actions .button-likes {
1770     text-transform: capitalize;
1771 }
1772 .wall-item-actions button:hover {
1773     color: #555;
1774     text-decoration: underline;
1775 }
1776 .wall-item-actions .separator {
1777     margin: 0 .3em;
1778 }
1779
1780 /* wall item hover effects */
1781 .wall-item-container .wall-item-links,
1782 .wall-item-container .wall-item-actions,
1783 .wall-item-container .body-attach > a {
1784     opacity: 0.3;
1785     -webkit-transition: all 0.25s ease-in-out;
1786     -moz-transition: all 0.25s ease-in-out;
1787     -o-transition: all 0.25s ease-in-out;
1788     -ms-transition: all 0.25s ease-in-out;
1789     transition: all 0.25s ease-in-out;
1790 }
1791 .wall-item-container:hover .wall-item-links,
1792 .wall-item-container:hover .wall-item-actions,
1793 .wall-item-container:hover .body-attach > a {
1794     opacity: 0.6;
1795     -webkit-transition: all 0.25s ease-in-out;
1796     -moz-transition: all 0.25s ease-in-out;
1797     -o-transition: all 0.25s ease-in-out;
1798     -ms-transition: all 0.25s ease-in-out;
1799     transition: all 0.25s ease-in-out;
1800 }
1801 .wall-item-container .wall-item-body .body-attach > a:hover {
1802     opacity: 1;
1803 }
1804
1805 /*
1806 /* Comments
1807 */
1808 .well {
1809     border: none;
1810     box-shadow: none;
1811     /*background-color: #ededed;*/
1812     background-color: rgba(237, 237, 237, $contentbg_transp);
1813     background-image: none;
1814     margin-bottom: 1px;
1815 }
1816 .well-small {
1817     padding: 10px;
1818     border-radius: 3px;
1819 }
1820 .well hr {
1821     margin: 15px 0 10px;
1822     border-top: 1px solid #d9d9d9;
1823 }
1824 .wall-entry .well {
1825     margin-bottom: 0;
1826 }
1827 .comment-container {
1828     margin-top: 10px;
1829     margin-bottom: 0px;
1830     border-top-left-radius: 3px;
1831     border-top-right-radius: 3px;
1832     border-bottom-right-radius: 0px;
1833     border-bottom-left-radius: 0px;
1834 }
1835 .comment .media {
1836     position: relative!important;
1837     margin-top: 0;
1838 }
1839 .hide-comments-outer-wrapper {
1840 /*    text-align: center;
1841     margin-top: -18px;*/
1842 }
1843 .hide-comments-total {
1844     cursor: pointer;
1845 }
1846
1847 /*
1848 * Comment Box
1849 */
1850 .thread_level_2 .wall-item-comment-wrapper {
1851     padding-right: 5px;
1852 }
1853 .comment-edit-submit-wrapper {
1854     margin-bottom: 25px;
1855 }
1856 .comment-edit-submit-wrapper a,
1857 .comment-edit-submit-wrapper a:hover {
1858     padding-top: 5px !important;
1859     padding-bottom: 5px !important;
1860 }
1861 .comment-icon-list > li > .icon,
1862 .comment-icon-list > li > .icon:hover {
1863     color: #555;
1864     background-color: transparent;
1865 }
1866
1867 /* acpopup  + textcompletion*/
1868 .acpopup {
1869     /* max-height: 150px; */
1870     background-color: #ffffff;
1871     border-radius: 4px;
1872     overflow: auto;
1873     z-index: 100000;
1874     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1875 }
1876 nav .acpopup {
1877     /*top: 35px !important;*/
1878     margin-left: -23px;
1879 }
1880 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1881  at the beginning of this file to get rid of the !important */
1882 .textcomplete-item > a {
1883     color: #555 !important;
1884     padding: 5px 20px !important;
1885 }
1886 .textcomplete-item.active > a {
1887     background-color: rgb(247, 247, 247) !important;
1888     background-image: none !important;
1889     border-left: 3px solid $link_color;
1890     padding-left: 17px !important;
1891 }
1892 .textcomplete-item a .forum {
1893     color: $link_color;
1894 }
1895 img.acpopup-img {
1896     border-radius: 4px;
1897  }
1898
1899
1900 /* The wall-item thread levels */
1901 /*.wall-item-container.thread_level_3 {
1902   margin-left: 80px;
1903   width: calc(100% - 90px);
1904 }
1905 .wall-item-container.thread_level_4 {
1906   margin-left: 95px;
1907   width: calc(100% - 105px);
1908 }
1909 .wall-item-container.thread_level_5 {
1910   margin-left: 110px;
1911   width: calc(100% - 120px);
1912 }
1913 .wall-item-container.thread_level_6 {
1914   margin-left: 125px;
1915   width: calc(100% - 135px);
1916 }
1917 .wall-item-container.thread_level_7 {
1918   margin-left: 140px;
1919   width: calc(100% - 150px);
1920 }*/
1921
1922 .wall-item-container.thread_level_3,
1923 .wall-item-container.thread_level_4,
1924 .wall-item-container.thread_level_5,
1925 .wall-item-container.thread_level_6,
1926 .wall-item-container.thread_level_7 {
1927   margin-left: 15px;
1928
1929 }
1930 /* Menubar Tabs */
1931 section > .tabbar-wrapper {
1932 /* The tabbar shouldn't' be visibile inside
1933 the section element. Only after we have
1934 moved it to the nav through js */
1935     display: none !important;
1936 }
1937 #tabmenu,
1938 .tabbar-wrapper,
1939 .tabbar,
1940 .tabbar > li {
1941     height: 100%;
1942     /*margin-left: -15px;*/
1943     padding: 0;
1944 }
1945 #tabmenu .search-heading {
1946     overflow: hidden;
1947     text-overflow: ellipsis;
1948     white-space: nowrap;
1949 }
1950 ul.tabs {
1951     list-style: none;
1952     height: 100%;
1953     padding: 0;
1954     padding-top: 10px;
1955     margin: 0;
1956 }
1957 ul.tabs li {
1958     float: left;
1959     margin: 0;
1960     padding: 0;
1961     /*border-bottom: 0 solid #6fdbe8;*/
1962     border-bottom: 0 solid $link_color;
1963     font-size: 13px;
1964     height: 102%;
1965     transition: all .15s ease;
1966 }
1967 /*ul.tabs.visible-xs > li.active {
1968     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1969 }*/
1970 ul.tabs li a {
1971     margin-left: 10px;
1972     margin-right: 10px;
1973     /*color: #6fdbe8;*/
1974     color: $link_color !important;
1975 }
1976 ul.tabs li:hover, ul.tabs li.active {
1977     border-bottom-width: 4px;
1978 }
1979 ul.tabbar ul.tabs-extended li.active {
1980     width: 100%;
1981     border-bottom-width: 2px;
1982 }
1983 ul.tabbar ul.tabs-extended li.active a {
1984     background: none;
1985 }
1986 ul.dropdown-menu li:hover {
1987     border-bottom-width: 0;
1988 }
1989
1990
1991 /* Dropdown Menu */
1992 .dropdown-menu li a,
1993 .dropdown-menu li .btn-link {
1994     font-size: 13px!important;
1995     font-weight: 600!important;
1996 }
1997 .dropdown-menu li > :hover,
1998 .dropdown-menu li > :visited,
1999 .dropdown-menu li > :focus {
2000     background: 0 0;
2001 }
2002
2003 .dropdown-menu li:first-child {
2004     margin-top: 3px;
2005 }
2006
2007 /* Notificaiotn badges */
2008 .nav-notify .show {
2009     display: block;
2010 }
2011
2012 /* Media Classes */
2013 .media .time,
2014 .media .shared-time,
2015 .media .location,
2016 .media .location a {
2017     font-size: 11px;
2018     color: #bebebe;
2019 }
2020 .media-list > li {
2021     padding: 10px;
2022     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2023     position: relative;
2024 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
2025     border-left: 3px solid rgba(255,255,255,0);
2026     font-size: 12px;
2027 }
2028 .media-list > li:hover,
2029 .media-list > li.selected,
2030 .media-list > li.active {
2031     border-left: 3px solid $link_color;
2032     background-color: rgba(247, 247, 247, $contentbg_transp);
2033 }
2034
2035 /* Forms */
2036 .form-control {
2037     border: 2px solid #ededed;
2038     box-shadow: none;
2039 }
2040 .form-control:focus {
2041     /*border: 2px solid #6fdbe8;*/
2042     border: 2px solid $link_color;
2043     outline: 0;
2044     box-shadow: none;
2045 }
2046
2047
2048 .checkbox input[type="checkbox"]:focus + label::before,
2049 .checkbox input[type="radio"]:focus + label::before {
2050     /*border: 2px solid #6fdbe8;*/
2051     border: 2px solid $link_color;
2052     outline: 0;
2053     box-shadow: none;
2054 }
2055
2056 /* Search form */
2057 .form-control.form-search {
2058     border-radius: 30px;
2059     background-image: url(img/icon_search16x16.png);
2060     background-repeat: no-repeat;
2061     background-position: 10px 8px;
2062     padding-left: 34px;
2063 }
2064 .form-group-search {
2065     position: relative;
2066     width: 100%;
2067 }
2068
2069 .form-group-search .form-button-search {
2070     position: absolute;
2071     top: 4px;
2072     right: 4px;
2073     border-radius: 30px;
2074 }
2075 .search-input.form-control.form-search {
2076     width: 100%;
2077 }
2078 .search-heading {
2079     text-align: center;
2080     color: $link_color;
2081     font-size: 20px;
2082 }
2083 .search-content-wrapper > #search-header-wrapper {
2084     display: none;
2085 }
2086 .search-content-wrapper > .section-title-wrapper {
2087     display: none;
2088 }
2089 #navbar-button > #search-save-form > #search-save {
2090     margin-top: 3px;
2091 }
2092 /* Section-Content-Wrapper */
2093 #search-header-wrapper {
2094     padding: 15px;
2095     padding-bottom: 20px;
2096     margin-bottom: 20px;
2097     border: none;
2098     /*background-color: #fff;*/
2099     background-color: rgba(255,255,255,$contentbg_transp);
2100     border-radius: 4px;
2101     position: relative;
2102     /*overflow: hidden;*/
2103     color: #555;
2104     box-shadow: 0 0 3px #dadada;
2105     -webkit-box-shadow: 0 0 3px #dadada;
2106     -moz-box-shadow: 0 0 3px #dadada;
2107 }
2108
2109 /* *******
2110  * PAGES
2111  *********/
2112
2113 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2114  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2115 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2116 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2117 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
2118 #adminpage, .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
2119 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2120 .profperm-content-wrapper {
2121     min-height: calc(100vh - 150px);
2122     padding: 15px;
2123     padding-bottom: 20px;
2124     margin-bottom: 20px;
2125     border: none;
2126     /*background-color: #fff;*/
2127     background-color: rgba(255,255,255,$contentbg_transp);
2128     border-radius: 4px;
2129     position: relative;
2130     /*overflow: hidden;*/
2131     color: #555;
2132     box-shadow: 0 0 3px #dadada;
2133     -webkit-box-shadow: 0 0 3px #dadada;
2134     -moz-box-shadow: 0 0 3px #dadada;
2135 }
2136
2137 .section-title-wrapper {
2138     overflow: hidden;
2139 }
2140 /* Home and Login Page */
2141 body.mod-home .navbar #nav-login,
2142 body.mod-login .navbar #nav-login {
2143     display: none;
2144 }
2145 /* Profile-page */
2146 #profile-content-standard,
2147 #profile-content-advanced {
2148     overflow: hidden;
2149 }
2150 #profile-menu {
2151     margin-top: 20px;
2152     margin-bottom: 20px;
2153 }
2154 .contact-block-div.forumlist-profile-advanced {
2155     float: left;
2156 }
2157
2158 /* contacts page */
2159 ul.viewcontact_wrapper {
2160     margin-left: -15px;
2161     margin-right: -15px;
2162 }
2163 ul.viewcontact_wrapper > li {
2164     padding-left: 15px;
2165 }
2166 .contact-wrapper {
2167 /*    padding: 10px;
2168     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2169     position: relative;*/
2170     /*border-left: 3px solid white;*/
2171 }
2172 .contact-wrapper .contact-photo-wrapper button {
2173     padding: 0;
2174 }
2175 .contact-wrapper.media {
2176     overflow: visible;
2177     word-wrap: break-word;
2178     margin-top: 0;
2179 }
2180 /* bootstrap hack for .media */
2181 .contact-wrapper.media .media-body {
2182     display: table-cell;
2183     width: 10000px;
2184     *width: auto;
2185     *zoom: 1;
2186 }
2187 .contact-wrapper.media:before, .media:after {
2188     content: "";
2189     display: table;
2190 }
2191 .contact-wrapper.media:after {
2192     clear: both;
2193 }
2194 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2195     height: 80px;
2196     width: 80px;
2197 }
2198 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2199     height: 48px;
2200     width: 48px;
2201 }
2202 .contact-wrapper .contact-photo-overlay-content.xl {
2203     font-size: 48px;
2204 }
2205 .contact-wrapper .contact-photo-menu {
2206     top: auto;
2207 }
2208
2209 .contact-entry-desc {
2210     color: #555;
2211 }
2212 .contact-entry-checkbox {
2213     margin-top: -20px;
2214 }
2215 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2216     font-weight: bold !important;
2217     color: $link_color;
2218     font-size: 15px !important;
2219 }
2220 .contact-wrapper .contact-actions {
2221     display: flex;
2222 }
2223 .contact-wrapper .contact-action-link,
2224 .contact-wrapper .contact-action-link:hover,
2225 .textcomplete-item .contact-wrapper .contact-action-link {
2226     padding: 0 5px;
2227     color: #555;
2228     border: 0;
2229 }
2230 .contact-wrapper .contact-action-link {
2231     opacity: 0.1;
2232     transition: all 0.25s ease-in-out;
2233 }
2234 ul li:hover .contact-wrapper .contact-action-link {
2235     opacity: 0.8;
2236     transition: all 0.25s ease-in-out;
2237 }
2238 ul li:hover .contact-wrapper .contact-action-link:hover {
2239     opacity: 1;
2240 }
2241 #contacts-search-wrapper,
2242 #directory-search-wrapper{
2243     padding: 10px 0;
2244 }
2245 #contact-drop-confirm .contact-actions,
2246 #contact-drop-confirm .contact-photo-overlay,
2247 #contact-drop-confirm .contact-photo-menu {
2248     display: none;
2249 }
2250 #contact-drop-confirm #confirm-form {
2251     margin-top: 20px;
2252 }
2253
2254 /* contact-edit */
2255 #contact-edit-actions {
2256     position: absolute;
2257 }
2258 #contact-edit-status-wrapper {
2259     border: none;
2260     background-color: #E1F5FE;
2261     margin: 15px -15px;
2262 }
2263 #contact-edit-tools {
2264     margin-left: -15px;
2265     margin-right: -15px;
2266 }
2267 #contact-edit-tools > .panel {
2268     padding-left: 15px;
2269     padding-right: 15px;
2270 }
2271 #contact-edit-settings {
2272     display: block;
2273     margin: 0;
2274 }
2275
2276 /* directory page */
2277 #directory-search-heading {
2278     padding-top: 10px;
2279 }
2280
2281 /* group edit page */
2282 .group-actions {
2283     margin-top: 20px;
2284     margin-bottom: 10px;
2285     font-size: 30px;
2286 }
2287 .group-actions button,
2288 .group-actions a {
2289     font-size: 18px;
2290 }
2291
2292 .contact-group-actions .fa-times-circle { color: #D00000;}
2293 .contact-group-actions .fa-plus-circle { color: #008000;}
2294
2295 #group-edit-wrapper {
2296     display: none;
2297 }
2298 #group-update-wrapper .contact-photo-overlay {
2299     display: none;
2300 }
2301 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2302     height: 100%;
2303     margin-top: -10px;
2304     display: flex;
2305 }
2306 #group-update-wrapper .viewcontact_wrapper .contact-action-link {
2307     opacity: 0.8;
2308     font-size: 20px;
2309     line-height: 50px;
2310 }
2311 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2312     opacity: 1;
2313 }
2314 #group-update-wrapper .shortmode {
2315     height: 53px;
2316     overflow: hidden;
2317 }
2318 #group-update-wrapper .shortmode .contact-photo {
2319     height: 32px;
2320     width: 32px;
2321 }
2322 #group-update-wrapper .shortmode .media {
2323     overflow: hidden;
2324 }
2325 #group-update-wrapper .shortmode .contact-entry-desc {
2326     font-size: 12px !important;
2327 }
2328 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2329     margin: 0;
2330 }
2331 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2332     font-size: 13px !important;
2333     white-space: nowrap;
2334 }
2335 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2336 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2337     display: none;
2338 }
2339
2340 /* private mail */
2341 .message-content-wrapper > li {
2342 /* we need this overwriting because we have no template file
2343    for the general mail page /message
2344 */
2345     list-style-type: none;
2346 }
2347 .mail-thread {
2348     max-height: calc(100vh - 200px);
2349 }
2350 #mail-conversation {
2351     overflow-y: auto;
2352     max-height: calc(100vh - 400px);
2353     max-height: auto;
2354     /*height: 500px;*/
2355     margin-bottom: 0px;
2356     padding: 0 15px;
2357 }
2358 #mail-conversation.can-reply {
2359 /*    border-bottom-left-radius: 0px;
2360     border-bottom-right-radius: 0px;*/
2361 }
2362 .mail-conv-wrapper .media .contact-photo-wrapper img {
2363     height: 48px;
2364     width: 48px;
2365 }
2366 .mail-thread #prvmail-to-label,
2367 .mail-thread #prvmail-subject-label {
2368     display: none;
2369 }
2370 .mail-thread #prvmail-message-label > label {
2371     display:none;
2372 }
2373 .mail-thread #prvmail-message-label textarea {
2374 /*    border-top: none;
2375     margin-top: -10px;
2376     border-top-left-radius: 0px;
2377     border-top-right-radius: 0px;*/
2378     max-height: 120px;
2379 }
2380 .mail-conv-wrapper {
2381     padding: 15px 0;
2382     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2383 }
2384 #message-sidebar {
2385     height: calc(100vh - 150px);
2386 }
2387 #message-preview {
2388     /*padding: 0 10px;*/
2389     height: calc(100% - 20px);
2390 }
2391 #message-preview ul {
2392     margin: 0px;
2393 }
2394 #message-preview .media-list li {
2395     padding: 0px 10px;
2396     border: none;
2397 }
2398 #message-preview .media-list li:hover {
2399     border-left: none !important;
2400 }
2401 #message-preview .media-list li a {
2402     color: $link_color;
2403 }
2404 .mail-list-outside-wrapper {
2405     padding: 5px 0;
2406     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2407 }
2408 .mail-list-outside-wrapper .contact-photo-wrapper img {
2409     height: 48px;
2410     width: 48px;
2411 }
2412
2413 #prvmail-end {
2414     clear:both;
2415 }
2416 /* photos */
2417 .photo-album-actions {
2418     margin-bottom: 10px;
2419 }
2420 .photo-album-actions .photos-order-link {
2421     float: right;
2422 }
2423 /* poke */
2424 #poke-desc {
2425     margin: 5px 0 30px;
2426 }
2427 #poke-wrapper-end {
2428     clear: both;
2429 }
2430
2431 /* Events page */
2432
2433 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2434     color: $link_hover_color;
2435 }
2436 .fc .fc-list-item-title a {
2437     color: $link_color;
2438 }
2439 .fc .fc-list-item-title a[href]:hover {
2440     color: $link_hover_color;
2441     text-decoration: none;
2442 }
2443 /*.event-date-wrapper.medium .event-hover-short-month {
2444     color: $link_color;
2445 }*/
2446 .event-wrapper .event-owner {
2447   margin-bottom: 15px;
2448 }
2449 .event-wrapper .event-owner img {
2450     display: block;
2451 }
2452 .event-owner img {
2453     margin-right: 5px;
2454     height: 48px;
2455     width:  48;
2456     border-radius: 3px;
2457 }
2458 .event-wrapper .vevent {
2459     margin-left: 0;
2460     margin-right: 0;
2461     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2462 }
2463 .event-wrapper .event-buttons {
2464     margin-top: 15px;
2465 }
2466 #event-form-wrapper {
2467     padding-top: 5px;
2468 }
2469 #event-edit-form-wrapper {
2470     padding-top: 15px;
2471 }
2472 #event-nav a {
2473     color: #555;
2474 }
2475 #event-edit-form-wrapper #event-edit-time {
2476     padding: 10px 0;
2477 }
2478 .event-buttons .plink-event-link {
2479     margin-left: 20px;
2480 }
2481 .vevent .event-summary {
2482     font-size: 16px;
2483 }
2484 .vevent .event-description {
2485     padding: 10px 0;
2486 }
2487 .vevent .event-location .location {
2488     font-size: inherit;
2489     color: inherit;
2490 }
2491 .modal-body .vevent .event-summary {
2492     display: none;
2493 }
2494 #event-preview .vevent .event-summary {
2495     display: block;
2496 }
2497
2498 /* Event Cards */
2499 .event-card-details, .event-card-header {
2500     width: 100%;
2501 }
2502 .event-card-header, .event-card-left-date {
2503     float: left;
2504 }
2505 .vevent .event-card-header {
2506     display: table;
2507 }
2508 .event-card-left-date {
2509     width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
2510 }
2511 .event-card .event-date-wrapper > span {
2512     display: block;
2513     overflow: hidden;
2514     text-align: center;
2515     white-space: nowrap;
2516 }
2517 .event-card .event-date-wrapper .event-card-short-month {
2518     font-size: 13px;
2519     text-transform: uppercase;
2520 }
2521 .event-card .event-date-wrapper.medium .event-card-short-date {
2522     font-size: 24px;
2523     line-height: 28px;
2524     margin-top: 2px;
2525 }
2526 .event-card .event-card-content {
2527     width: 100%;
2528     padding: 0 5px 0 15px;
2529     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2530     color: #777;
2531     position: relative;
2532 }
2533 .event-card .event-card-content .event-map-btn {
2534     position: absolute;
2535     right: 0;
2536     top:0;
2537     line-height: 15px;
2538 }
2539 .event-card .event-card-title {
2540     font-size: 14px;
2541     color: #555;
2542     line-height: 15px;
2543     font-weight: bold;
2544     margin: 0;
2545 }
2546 .event-card .event-card-location {
2547     margin-top: 10px;
2548     font-size: 13px;
2549 }
2550 .event-card .event-card-location br {
2551     content: " ";
2552 }
2553 .event-card .event-card-location br::after {
2554     content: " ";
2555 }
2556 .event-card-profile-name a {
2557     color: $link_color;
2558 }
2559 .event-card-profile-name a:hover {
2560     color: $link_hover_color;
2561 }
2562 .event-card .event-card-content .event-location-map {
2563     position: absolute;
2564     left: -9999px;
2565     top: -9999px;
2566 }
2567 .event-card .event-card-content .event-location-map .map{
2568     margin-top: 10px;
2569 }
2570 .event-card .description {
2571     margin-top: 10px;
2572     box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, .1) inset;
2573 }
2574 /* Photos Pages */
2575 #photo-photo {
2576     position: relative;
2577 }
2578 .photo-next-link, .photo-prev-link {
2579     height: 64px;
2580     margin-top: -32px;
2581     opacity: 0;
2582     position: absolute;
2583     top: 50%;
2584     transform: translateZ(0);
2585     transition: opacity .2s;
2586     /*width: 27px;*/
2587     width: 100px;
2588     z-index: 11;
2589     font-size: 64px;
2590     color: #fff;
2591     text-shadow:
2592         -1px -1px 0 #000,
2593         1px -1px 0 #000,
2594         -1px 1px 0 #000,
2595         1px 1px 0 #000;
2596 }
2597 .photo-next-link > i, .photo-prev-link > i {
2598     vertical-align: super;
2599 }
2600 .photo-next-link > i {
2601     float: right;
2602 }
2603 .photo-prev-link {
2604     left: 20px;
2605 }
2606 .photo-next-link {
2607     right: 20px;
2608 }
2609 #photo-photo:hover .photo-next-link,
2610 #photo-photo:hover .photo-prev-link {
2611     opacity: 0.4;
2612 }
2613 #photo-photo .photo-next-link:hover,
2614 #photo-photo .photo-prev-link:hover {
2615     opacity: 1;
2616     color: #fff;
2617 }
2618 .photo-comment-wrapper .comment {
2619     position: relative;
2620 }
2621 .photo-comment-wrapper .wall-item-content {
2622     color: #555;
2623     font-size: 13px;
2624 }
2625 .photo-comment-wrapper .comment-wwedit-wrapper,
2626 .photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
2627     margin-top: 15px;
2628 }
2629
2630 /* Profiles Page */
2631 .profile-listing-table {
2632     display: table;
2633     width: 100%;
2634 }
2635 .profile-listing-row {
2636     display: table-row;
2637 }
2638 .profile-listing-cell {
2639     display: table-cell;
2640 }
2641 .profile-listing-photo {
2642     width: 48px;
2643     height: 48px;
2644     margin: 10px 0px;
2645 }
2646 #profile-listing-new-link-wrapper {
2647     margin-bottom: 20px;
2648 }
2649 .panel-group-settings {
2650     margin-left: -15px;
2651     margin-right: -15px;
2652 }
2653 .panel-group-settings > .panel {
2654     padding-left: 15px;
2655     padding-right: 15px;
2656 }
2657 .profiles-content-wrapper #profile-photo-upload-section {
2658     display: none;
2659     margin-left: -15px;
2660     margin-right: -15px;
2661     margin-top: 15px;
2662     padding: 15px;
2663 }
2664 #profile-photo-upload-close {
2665     font-size: 14px;
2666 }
2667
2668 /* Settings */
2669 .section-subtitle-wrapper {
2670     padding: 1px 10px;
2671 }
2672 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2673     font-family: FontAwesome;
2674     content: "\f0d7";
2675     padding-right: 5px;
2676 }
2677 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2678     font-family: FontAwesome;
2679     content: "\f0da";
2680 }
2681 #settings-nick-wrapper {
2682     margin-bottom: 20px;
2683 }
2684 .group {
2685     margin-left: 20px;
2686 }
2687
2688 /* Emulates Bootstrap display */
2689 .settings-block {
2690     margin: 0 -15px 5px;
2691     color: #333;
2692     background-color: rgba(255,255,255,0.95);
2693     border-radius: 4px;
2694     padding: 10px 15px;
2695     box-shadow: 0 0 3px #dadada;
2696     -webkit-box-shadow: 0 0 3px #dadada;
2697     -moz-box-shadow: 0 0 3px #dadada;
2698 }
2699
2700 .settings-block.fakelink, .settings-block > .fakelink {
2701     padding: 10px 25px;
2702     display: block;
2703 }
2704 .settings-block > .fakelink {
2705     margin: -10px -15px 10px -15px;
2706     border-radius: 4px 4px 0 0;
2707 }
2708
2709 .settings-block.fakelink:hover, .settings-block > .fakelink:hover {
2710     color: $link_hover_color;
2711 }
2712 .settings-block.fakelink > h3, .settings-block > .fakelink > h3 {
2713     margin: 0;
2714     padding: 0;
2715     color: $link_color;
2716     font-size: 18px;
2717 }
2718
2719 .fakelink > h3:before {
2720     padding-right: 10px;
2721 }
2722 .settings-block.fakelink > h3:before {
2723     font-family: FontAwesome;
2724     content: "\f0da"; /* Right Plain Pointer */
2725 }
2726 .settings-block > .fakelink > h3:before {
2727     font-family: FontAwesome;
2728     content: "\f0d7"; /* Bottom Plain Pointer */
2729 }
2730
2731 h3.connector {
2732     line-height: 40px;
2733 }
2734
2735 /* Intro Notifications */
2736 ul.notif-network-list {
2737     margin-left: -15px;
2738     margin-right: -15px;
2739 }
2740 ul.notif-network-list > li {
2741     padding-left: 15px;
2742     padding-right: 15px;
2743 }
2744 .intro-wrapper.media {
2745     overflow: visible;
2746     word-wrap: break-word;
2747     margin-top: 0;
2748 }
2749 .intro-photo-wrapper img.intro-photo {
2750     height:80px;
2751     width: 80px;
2752     border-radius: 4px;
2753 }
2754 .intro-actions {
2755     display: flex;
2756 }
2757 .intro-enty-name h4 {
2758     font-size: 15px !important;
2759 }
2760 .intro-wrapper button.intro-action-link {
2761     opacity: 0.1;
2762     transition: all 0.25s ease-in-out;
2763 }
2764 .intro-wrapper button.intro-action-link,
2765 .intro-wrapper button.intro-action-link:hover {
2766     padding-right: 5px;
2767     padding-left: 5px;
2768     color: #555;
2769 }
2770 ul li:hover .intro-wrapper button.intro-action-link {
2771     opacity: 0.8;
2772     transition: all 0.25s ease-in-out;
2773 }
2774 ul li:hover .intro-wrapper button.intro-action-link:hover {
2775     opacity: 1;
2776 }
2777 .intro-action-buttons {
2778     margin-top: 15px;
2779     /*display: none;*/
2780     max-height: 0px;
2781     overflow: hidden;
2782     transition: max-height 0.1s ease-out;
2783 }
2784 ul.notif-network-list > li:hover .intro-action-buttons {
2785     /*display: block;*/
2786     max-height: 30px;
2787     transition: max-height 0.1s ease-in;
2788 }
2789 .intro-desc-label, .intro-url-label, .intro-network-label,
2790 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2791 .intro-about-label, .intro-knowyou-label {
2792     font-weight: bold;
2793 }
2794 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2795 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2796 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2797 .intro-contact-info.xs .intro-knowyou-label {
2798     display: block;
2799     margin-top: 5px
2800 }
2801
2802 /* Notifications Page */
2803 ul.notif-network-list li.unseen {
2804     background-color: #f3fcfd;
2805 }
2806 .notif-item img.notif-image {
2807     height: 48px;
2808     width: 48px;
2809     border-radius: 4px;
2810 }
2811 .notif-item .notif-desc-wrapper {
2812     height: 48px;
2813 }
2814 .notif-item .notif-desc-wrapper a {
2815     height: 100%;
2816     display: block;
2817     color: #555;
2818     font-size: 13px;
2819     font-weight: 600;
2820 }
2821
2822 /* Search Page */
2823
2824 /* This is a little bit hacky. Since the search page is used for diferent
2825 content types we can't apply the generic-page-wrapper class.
2826 So we apply the css of the generic-page-wrapper class to the ul element with some
2827 little modifications to emulate a standard page template */
2828 .search-content-wrapper > ul.viewcontact_wrapper {
2829     min-height: calc(100vh - 150px);
2830     padding-top: 15px;
2831     padding-bottom: 20px;
2832     margin: 0;
2833     margin-bottom: 20px;
2834     border: none;
2835     /*background-color: #fff;*/
2836     background-color: rgba(255,255,255,$contentbg_transp);
2837     border-radius: 4px;
2838     position: relative;
2839     /*overflow: hidden;*/
2840     color: #555;
2841     box-shadow: 0 0 3px #dadada;
2842     -webkit-box-shadow: 0 0 3px #dadada;
2843     -moz-box-shadow: 0 0 3px #dadada;
2844 }
2845
2846 /* Help Page */
2847 section.help-content-wrapper h1 {
2848     padding-bottom: 0.3em;
2849     font-size: 1.8em;
2850     border-bottom: 1px solid #ddd;
2851 }
2852 section.help-content-wrapper h2 {
2853     padding-bottom: 0.3em;
2854     font-size: 1.5em;
2855     border-bottom: 1px solid #ddd;
2856 }
2857 section.help-content-wrapper h3 {
2858     font-size: 1.2em;
2859 }
2860 section.help-content-wrapper h4 {
2861     font-size: 1em;
2862 }
2863 section.help-content-wrapper h1,
2864 section.help-content-wrapper h2,
2865 section.help-content-wrapper h3,
2866 section.help-content-wrapper h4,
2867 section.help-content-wrapper h5,
2868 section.help-content-wrapper h6 {
2869     margin-top: 24px;
2870     margin-bottom: 16px;
2871     font-weight: 600;
2872     line-height: 1.25;
2873 }
2874 section.help-content-wrapper p {
2875     margin: 0.4em 0;
2876 }
2877 section.help-content-wrapper p,
2878 section.help-content-wrapper a,
2879 section.help-content-wrapper li {
2880     line-height: 1.6;
2881     font-size: 0.96em;
2882 }
2883
2884 /*Admin Page*/
2885 #adminpage #frio_background_image .image-select {
2886     display: none;
2887 }
2888 #adminpage #frio_background_image.input-group {
2889     display: block;
2890 }
2891 #admin-summary-wrapper {
2892     padding-top: 10px;
2893 }
2894 #adminpage ul#pluginslist, li.plugin {
2895     padding-top: 10px;
2896 }
2897 #adminpage li .icon {
2898     display: inline-block;
2899     vertical-align: text-top;
2900     position: relative;
2901     padding-left: 5px;
2902 }
2903 #adminpage li .icon:before {
2904     content: "";
2905     display: inline-block;
2906     position: absolute;
2907     width: 17px;
2908     height: 17px;
2909     left: 0;
2910     margin-left: -20px;
2911     margin-top: 2px;
2912     border: 1px solid #cccccc;
2913     border-radius: 3px;
2914     background-color: #fff;
2915     -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2916     -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2917     transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2918 }
2919 #adminpage li .icon.on:after {
2920     font-family: "FontAwesome";
2921     content: "\f00c";
2922     display: inline-block;
2923     position: absolute;
2924     width: 16px;
2925     height: 16px;
2926     left: 0;
2927     top: 0;
2928     margin-left: -20px;
2929     margin-top: 2px;
2930     padding-left: 3px;
2931     padding-top: 1px;
2932     font-size: 11px;
2933     color: #555555;
2934 }
2935 #adminpage .plugin .desc {
2936     padding-left: 10px;
2937 }
2938
2939 /* Register Page*/
2940 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
2941     margin-top: 20px;
2942 }
2943 #register-openid-end, #register-nickname-end
2944 {
2945     margin-top: 40px;
2946 }
2947
2948 /*
2949 * Overwriting for transparency and other colors
2950 */
2951 main .nav-tabs>li.active>a,
2952 main .nav-tabs>li.active>a:focus,
2953 main .nav-tabs>li.active>a:hover {
2954     background-color: rgba(255,255,255,$contentbg_transp);
2955 }
2956
2957 /*
2958  * Modal
2959  */
2960 .modal hr {
2961     border-color: #eee;
2962 }
2963
2964 /*
2965  * Framework overwrite
2966  */
2967
2968 /* jRange */
2969 .theme-frio .back-bar {
2970     height: 5px !important;
2971     border-radius: 2px;
2972     background-color: #eeeeee;
2973     background-color: #e7e7e7;
2974     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2975     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2976     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2977     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2978     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2979     background-repeat: repeat-x;
2980     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2981 }
2982 .theme-frio .back-bar .selected-bar {
2983     border-radius: 2px;
2984     background-color: $link_color;
2985 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2986     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2987     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2988     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2989     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2990     background-repeat: repeat-x;
2991     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2992 }
2993 .theme-frio .back-bar .pointer {
2994     width: 14px !important;
2995     height: 14px !important;
2996     top: -5px;
2997     -webkit-box-sizing: border-box;
2998     -moz-box-sizing: border-box;
2999     box-sizing: border-box;
3000     border-radius: 10px;
3001     border: 1px solid #AAA;
3002     background-color: #e7e7e7 !important;
3003     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
3004     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
3005     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
3006     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
3007     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
3008     background-repeat: repeat-x;
3009     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
3010 }
3011 .theme-frio .back-bar .pointer-label {
3012     color: #999;
3013 }
3014
3015 /* textcomplete for contact filtering*/
3016 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
3017     position: relative !important;
3018     top: inherit !important;
3019     bottom: inherit !important;
3020     left: inherit !important;
3021     padding: 0;
3022     margin-left: -15px;
3023     margin-right: -15px;
3024     background-color: transparent;
3025     box-shadow: none;
3026     border: none;
3027 }
3028 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
3029     padding-left: 15px;
3030     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
3031 }
3032 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
3033     display: none;
3034 }
3035 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
3036 .textcomplete-item > a {
3037     padding: 0 !important;
3038     border-left: none;
3039     background-color: transparent !important;
3040 }
3041 /* this is a little hack for texcomplete contact filter
3042 There are for some reasons empty <a> tags. I don't know why */
3043 .textcomplete-item .contact-wrapper a {
3044     padding: 0;
3045 }
3046
3047 /* hovercard fix */
3048 body .tread-wrapper .hovercard a,
3049 body .tread-wrapper .hovercard a:hover {
3050     color: $link_color;
3051 }
3052 body .tread-wrapper .hovercard:hover .hover-card-content a {
3053     color: $link_color !important;
3054 }
3055
3056 /* Pagination improvements */
3057 .pagination {
3058     text-align: center;
3059     display: block;
3060 }
3061 .pagination > li > a,
3062 .pagination > li > span {
3063     color: $link_color;
3064     float: none;
3065 }
3066 .pagination>li>a:hover,
3067 .pagination>li>span:hover {
3068     color: $link_hover_color;
3069 }
3070 .pagination > .active > a,
3071 .pagination > .active > a:focus,
3072 .pagination > .active > a:hover,
3073 .pagination > .active > span,
3074 .pagination > .active > span:focus,
3075 .pagination > .active > span:hover {
3076     background-color: $link_color;
3077     border-color: $link_color;
3078     border-radius: 3px;
3079 }
3080 .pagination li.pager_n a {
3081     margin-left: 3px;
3082     border-radius: 3px;
3083 }
3084 .pagination .pager_prev a {
3085     margin-left: -5px;
3086     margin-right: 4px;
3087     border-top-right-radius: 3px;
3088     border-bottom-right-radius: 3px;
3089 }
3090 .pagination .pager_next a {
3091     margin-left: 4px;
3092     margin-right: -5px;
3093     border-top-left-radius: 3px;
3094     border-bottom-left-radius: 3px;
3095 }
3096 .pager .next > a,
3097 .pager .previous > a {
3098     float: none;
3099     border-radius: 3px;
3100 }
3101 .pagination .disabled > a,
3102 .pager .disabled > a {
3103     display: none;
3104 }
3105
3106 /*
3107  * some temporary workarounds until this will solved
3108  * elsewhere (e.g. new templates)
3109  */
3110 section .profile-match-wrapper {
3111     float: left;
3112 }
3113
3114 /**
3115  * Login page
3116  */
3117 #login-submit-wrapper {
3118     display: flex;
3119     flex-wrap: wrap;
3120     justify-content: space-between;
3121     align-items: center;
3122 }
3123 #lost-password-link { flex-grow: 2; }
3124
3125 .mod-home.is-not-singleuser,
3126 .mod-login {
3127     background-color: $login_bg_color;
3128     background-image: linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0.4)), url($login_bg_image);
3129     background-size: cover;
3130     background-attachment: fixed;
3131     background-position: center;
3132     padding-top: 0;
3133 }
3134 .mod-home.is-not-singleuser nav.navbar,
3135 .mod-login nav.navbar { background-color: transparent }
3136 .mod-home.is-not-singleuser #topbar-second,
3137 .mod-login #topbar-second {
3138     background-color: transparent;
3139     box-shadow: unset;
3140     border: 0
3141 }
3142 .mod-home.is-not-singleuser .login-content,
3143 .mod-login .login-content {
3144     color: #eee;
3145     margin-top: 2.5%;
3146 }
3147
3148 .mod-home.is-not-singleuser .login-form > #login-form label,
3149 .mod-login #content #login-form label {
3150     color: #eee;
3151 }
3152
3153
3154 .mod-home.is-not-singleuser .login-panel-content,
3155 .mod-login .login-panel-content {
3156     background-color: rgba(255,255,255,.85);
3157 }
3158
3159 /* Medium devices (desktops, 992px and up) */
3160 @media (min-width: 992px) {
3161     .mod-home.is-not-singleuser #content,
3162     .mod-login #content {
3163         margin-top: 100px!important;
3164     }
3165
3166     .mod-home.is-not-singleuser .login-form > #login-form,
3167     .mod-login #content #login-form {
3168         background-color: #fff;
3169         padding: 1em;
3170         position: relative;
3171         margin-top: 4em;
3172     }
3173
3174     .mod-home.is-not-singleuser .login-form > #login-form label,
3175     .mod-login #content #login-form label {
3176         color: #444;
3177     }
3178
3179     .mod-home.is-not-singleuser .login-form > #login-form::before,
3180     .mod-login #content #login-form::before {
3181         display: block;
3182         position: absolute;
3183         content: " ";
3184         background-color: rgba(255,255,255,0.1);
3185         width:90%;
3186         height: 110%;
3187         top: -5%;
3188         left: 5%;
3189         z-index: -1;
3190     }
3191
3192     .mod-home.is-not-singleuser .login-form > #login-form::after,
3193     .mod-login #content #login-form::after {
3194         display: block;
3195         position: absolute;
3196         content: " ";
3197         background-color: rgba(255,255,255,0.2);
3198         width:80%;
3199         height: 120%;
3200         top: -10%;
3201         left: 10%;
3202         z-index: -1;
3203     }
3204
3205 }
3206
3207
3208