]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge remote-tracking branch 'upstream/develop' into quit-on-error
[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: $background_color;
28     background-image: url("$background_image");
29     background-size: $background_size_img;
30     background-repeat: $background_repeat;
31     background-attachment: fixed;
32     color: #777;
33     /*color: #555;*/
34     font-family: 'Open Sans',sans-serif;
35 }
36 body a {
37     /*color: #555;*/
38     /*color: #6fdbe8;*/
39     color: $link_color;
40     text-decoration: none;
41 }
42 /* Anchors incorrectly display with a fixed top menu. This global rule offsets all
43  * anchors so that accessing them with a # link will actually scroll the associated
44  * content in the visible part of the page.
45  *
46  * anchor.top should be the opposite of body.padding-top
47  */
48 body a[name]:not([href]) {
49     display: block;
50     position: relative;
51     top: -110px;
52     visibility: hidden;
53 }
54
55 body a:hover, .btn-link:hover,
56 body a:focus, .btn-link:focus,
57 body a:active, .btn-link:active,
58 body a.active, .btn-link.active {
59     /*color: #59d6e4;*/
60     color: $link_hover_color;
61     text-decoration: none;
62     outline: none;
63 }
64
65 .wall-item-container a:hover {
66     text-decoration: underline;
67 }
68
69 hr {
70     margin-top: 10px;
71     margin-bottom: 10px;
72 }
73 aside hr,
74 section hr {
75     border-color: rgba(238, 238, 238, $contentbg_transp);
76 }
77 iframe, img, video {
78     max-width: 100%;
79 }
80 blockquote {
81     font-size: inherit;
82 }
83 .clear {
84     clear: both;
85 }
86 .no-padding {
87     padding: 0;
88 }
89 .fakelink {
90     cursor: pointer;
91 }
92 .hidden {
93     display: none !important;
94 }
95 .minimize {
96     max-height: 0px !important;
97     overflow: hidden !important;
98 }
99 code {
100     white-space: pre-wrap;
101 }
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 /* help page widget */
1059 aside > .help-content-wrapper code, .help-aside-wrapper code {
1060     display: inline
1061 }
1062 aside > .help-aside-wrapper p strong:first-child {
1063     display: block;
1064     margin: 1em 0 0em;
1065 }
1066 aside > .help-aside-wrapper h1 {
1067     font-weight: bold;
1068     font-size: 16px;
1069     margin: 0;
1070     padding: 20px 0 10px;
1071 }
1072 aside > .help-aside-wrapper h2 {
1073     font-weight: bold;
1074     font-size: 14px;
1075 }
1076
1077 /* vcard / h-card */
1078 aside .vcard #profile-photo-wrapper{
1079     margin: 0;
1080 }
1081 aside .vcard img.u-photo,
1082 aside img.vcard-photo {
1083     width: 100%;
1084     border-radius: 3px;
1085 }
1086 aside .vcard .tool .action{
1087     position: absolute;
1088     top:20px;
1089     right: 20px;
1090     font-size: 32px;
1091     width: 45px;
1092     height: 45px;
1093     background: rgba(0,0,0,.50);
1094     text-align: center;
1095     border-radius: 3px;
1096     opacity: 0;
1097     -webkit-transition: all 0.25s ease-in-out;
1098     -moz-transition: all 0.25s ease-in-out;
1099     -o-transition: all 0.25s ease-in-out;
1100     -ms-transition: all 0.25s ease-in-out;
1101     transition: all 0.25s ease-in-out;
1102 }
1103 aside .vcard .tool a {
1104 color: rgba(255,255,255,.85);
1105 }
1106 aside .vcard #profile-photo-wrapper:hover .tool .action {
1107     opacity: 1;
1108 }
1109 aside .vcard #profile-photo-wrapper.crop-preview {
1110     padding: 0;
1111 }
1112 aside .vcard .profile-header {
1113     margin-bottom: 20px;
1114 }
1115 aside .vcard .fn {
1116     font-size: 20px;
1117     font-weight: bold;
1118 }
1119 aside .vcard .p-addr {
1120     font-style: italic;
1121     overflow: hidden;
1122     text-overflow: ellipsis;
1123     white-space: nowrap;
1124     padding-bottom: 2px;
1125 }
1126
1127 aside .vcard .detail {
1128     display: table;
1129     padding: 5px 0;
1130 }
1131 aside .xmpp {
1132     display: table;
1133 }
1134 aside .vcard .icon {
1135     display: table-cell;
1136     padding-right: 10px;
1137 }
1138 #profile-extra-links {
1139     margin-bottom: 20px;
1140 }
1141 aside .vcard #dfrn-request-link-button,
1142 aside .vcard #wallmessage-link-botton {
1143     width: 50%;
1144     margin: 0 0 0 -5px;
1145     float: left;
1146     padding: 0 5px;
1147 }
1148 aside .vcard #dfrn-request-link,
1149 aside .vcard #wallmessage-link {
1150     width: 100%;
1151 }
1152 /* vcard-short-info */
1153 #vcard-short-info,
1154 #nav-short-info .contact-wrapper {
1155     margin-top: 2px;
1156     height: 40px;
1157     white-space: nowrap;
1158     overflow: hidden;
1159     padding-right: 20px;
1160     margin-left: -14px;
1161 }
1162 #nav-short-info .contact-photo-wrapper.media-left {
1163     float: left;
1164 }
1165 #vcard-short-photo-wrapper img,
1166 #nav-short-info .contact-wrapper img {
1167     height: 34px;
1168     width: 34px;
1169     border-radius: 3px;
1170 }
1171 #vcard-short-desc,
1172 #nav-short-info .contact-wrapper .media-body {
1173     display: block;
1174     height: 34px;
1175     width: 100%;
1176     text-overflow: ellipsis;
1177 }
1178 #vcard-short-desc > .media-heading,
1179 #vcard-short-desc > .vcard-short-addr,
1180 #nav-short-info .contact-wrapper .media-heading,
1181 #nav-short-info .contact-wrapper #contact-entry-url-network {
1182     text-overflow: ellipsis;
1183     overflow: hidden;
1184 }
1185 #vcard-short-desc > .media-heading,
1186 #nav-short-info .contact-wrapper .media-heading {
1187     margin-bottom: 1px;
1188     font-weight: bold;
1189 }
1190 #nav-short-info .contact-wrapper .media-heading a {
1191     color: #555;
1192     font-size: 14px !important;
1193 }
1194 #vcard-short-desc > .vcard-short-addr,
1195 #nav-short-info .contact-wrapper #contact-entry-url-network {
1196     color: #777;
1197     font-size: 12px;
1198 }
1199 .network-content-wrapper > #viewcontact_wrapper-network,
1200 #nav-short-info .contact-wrapper .contact-photo-overlay,
1201 #nav-short-info .contact-wrapper .contact-actions{
1202     display: none
1203 }
1204
1205 aside #peoplefind-sidebar input,
1206 aside #follow-sidebar input {
1207     height: 30px;
1208     background-position: 10px 5px;
1209 }
1210 aside #peoplefind-sidebar label,
1211 aside #follow-sidebar label {
1212     font-weight: normal;
1213 }
1214 aside #peoplefind-sidebar .form-group-search .form-button-search,
1215 aside #follow-sidebar .form-group-search .form-button-search {
1216     padding: 2px 8px;
1217 }
1218
1219 aside #group-sidebar .group-edit-tool,
1220 aside #saved-search-list .savedsearchdrop {
1221     opacity: 0.1;
1222     transition: all 0.25s ease-in-out;
1223 }
1224 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
1225 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
1226     opacity: 0.8;
1227     transition: all 0.25s ease-in-out;
1228 }
1229 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
1230 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
1231     opacity: 1;
1232 }
1233 aside #group-sidebar li .group-checkbox {
1234     margin: 0;
1235 }
1236 aside #group-sidebar li .group-edit-tool {
1237     padding-right: 10px;
1238 }
1239 aside #group-sidebar li .group-edit-tool:first-child {
1240     padding-right: 0px;
1241 }
1242
1243 /* contact block widget */
1244 #contact-block .contact-block-content {
1245     clear: both;
1246     overflow: auto;
1247     height: auto;
1248 }
1249 #contact-block .contact-block-div {
1250     float: left;
1251     margin: 0px 5px 5px 0px;
1252 /*    height: 90px;
1253     width: 90px;*/
1254 }
1255 #contact-block contact-block-link {
1256
1257 }
1258 #contact-block .contact-block-img {
1259     height: 75px;
1260     width: 75px;
1261     border-radius: 4px;
1262 }
1263
1264 /* Tag cloud widget */
1265 .tagblock.widget > .tag-cloud {
1266     text-align: center;
1267 }
1268 /* Section */
1269 section ul.tabs {
1270     display: none !important;
1271 }
1272
1273 /* Jot */
1274 section #jotOpen {
1275     display: none;
1276 }
1277 #jotOpen {
1278     margin-top: 3px;
1279     float: right;
1280 }
1281 #jot-content {
1282     display: none;
1283 }
1284 .jothidden {
1285     /*display: none;*/
1286 }
1287 #jot-modal .modal-header a, #jot-modal .modal-header .btn-link,
1288 #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link {
1289     color: #555;
1290     text-transform: capitalize;
1291 }
1292 #jot-modal .modal-header {
1293     border-bottom: none;
1294 }
1295 #jot-title-wrap, #jot-category-wrap {
1296     margin-bottom: 5px;
1297 }
1298 #jot-text-wrap {
1299     margin-top: 20px;
1300 }
1301 #jot-text-wrap textarea {
1302     min-height: 100px;
1303 }
1304 #profile-jot-wrapper button#profile-jot-submit {
1305     margin-top: 5px;
1306 }
1307 #profile-jot-wrapper #character-counter {
1308     padding: 10px 15px;
1309 }
1310
1311 /* ACL */
1312 /*#jot-modal-body {
1313     height: auto;
1314     max-height: calc(100vh - 130px);
1315     overflow-y: hidden;
1316 }*/
1317 #acl-search {
1318     margin-top: 20px;
1319     /*padding: 8px;*/
1320     /*border: 1px solid #ccc;*/
1321     width: 100%;
1322 }
1323 #acl-list {
1324     display: block;
1325     border: 1px solid #ccc;
1326     overflow: auto;
1327     clear: both;
1328     min-height: 62px;
1329     margin-top: 20px;
1330     padding: 10px 10px 0px 0px;
1331     -webkit-border-radius: 4px;
1332     -moz-border-radius: 4px;
1333     border-radius: 4px;
1334 }
1335 #acl-list-content {
1336     overflow-y: auto;
1337     max-height: calc(100vh - 330px);
1338     height: auto !important;
1339 }
1340 .acl-list-item {
1341     width: 48%;
1342     width: calc(50% - 10px);
1343     border: 1px solid #ccc;
1344     margin: 0px 0px 10px 10px;
1345     padding: 5px;
1346     float: left;
1347     -webkit-border-radius: 4px;
1348     -moz-border-radius: 4px;
1349     border-radius: 4px;
1350 }
1351 .acl-list-item img {
1352     width: 40px;
1353     height: 40px;
1354     float: left;
1355     margin-right: 5px;
1356     -webkit-border-radius: 4px;
1357     -moz-border-radius: 4px;
1358     border-radius: 4px;
1359 }
1360 .acl-list-item p {
1361     margin: 0px;
1362     white-space: nowrap;
1363     overflow: hidden;
1364     text-overflow: ellipsis;
1365 }
1366 .acl-list-item.groupshow {
1367     background-color: #8DB255
1368 }
1369 .acl-list-item.grouphide {
1370     background-color: #E68364;
1371 }
1372 .acl-button-show, .acl-button-hide {
1373     float: right;
1374     margin-left: 5px;
1375 }
1376 #acl-showall.selected {
1377     background-color: #4CAF50;
1378     color: #fff;
1379 }
1380 .acl-button-show.selected {
1381     background-color: #4CAF50;
1382     color: #fff;
1383 }
1384 .acl-button-hide.selected {
1385     background-color: #F44336;
1386     color: #fff;
1387 }
1388
1389 /* Filebrowser */
1390 .fbrowser .breadcrumb {
1391     margin-bottom: 0px;
1392 }
1393 .fbrowser .path a:before {
1394     content: "";
1395     padding: 0;
1396 }
1397 .fbrowser .breadcrumb > li:last-of-type a{
1398     color: #777;
1399     pointer-events: none;
1400     cursor: default;
1401 }
1402 .fbrowser .folders {
1403     box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
1404     padding-right: 1px;
1405 }
1406 .fbrowser .folders ul {
1407     padding: 0px;
1408     margin-left: -15px;
1409     margin-bottom: 0px;
1410     overflow-y: auto;
1411     min-width: 100px;
1412     max-height: calc(100vh - 210px);
1413     line-height: 1.3;
1414 }
1415 @media (min-width: 768px) {
1416     .fbrowser .folders ul {
1417         max-height: calc(100vh - 255px);
1418     }
1419 }
1420 .fbrowser .folders li {
1421     padding-left: 20px;
1422     padding-right: 10px;
1423     padding-top: 3px;
1424     padding-bottom: 3px;
1425 }
1426 .fbrowser .folders li:hover {
1427     z-index: 2;
1428     color: #555;
1429     background-color: rgba(247, 247, 247, $contentbg_transp);
1430     border-left: 3px solid $link_color !important;
1431     padding-left: 17px;
1432 }
1433 .fbrowser .folders li a,
1434 .fbrowser .folders li a:hover {
1435     color: #555;
1436     font-size: 13px;
1437 }
1438 .fbrowser .folders + .list {
1439     padding-left: 10px;
1440 }
1441 .fbrowser .fbrowser-content-container {
1442     overflow-y: auto;
1443     max-height: calc(100vh - 175px);
1444 }
1445 @media (min-width: 768px) {
1446     .fbrowser .fbrowser-content-container {
1447         max-height: calc(100vh - 220px);
1448     }
1449 }
1450 .fbrowser.image .photo-album-image-wrapper {
1451     box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
1452 }
1453 .fbrowser .profile-rotator-wrapper {
1454     min-height: 200px;
1455 }
1456 .fbrowser .fa-spin {
1457    position: absolute;
1458    left: 45%;
1459    top: 40%;
1460    font-size: 48px;
1461    margin:0px auto;
1462 }
1463
1464 /*
1465 /* Stream
1466 */
1467 .panel {
1468     border: none;
1469     /*background-color: #fff;*/
1470     background-color: rgba(255,255,255,$contentbg_transp);
1471     box-shadow: 0 0 3px #dadada;
1472     -webkit-box-shadow: 0 0 3px #dadada;
1473     -moz-box-shadow: 0 0 3px #dadada;
1474     border-radius: 4px;
1475     position: relative;
1476 }
1477 .panel.panel-inline {
1478     margin-left: -15px;
1479     margin-right: -15px;
1480     margin-top: 15px;
1481     padding: 15px;
1482 }
1483 .panel .panel-body {
1484     padding: 15px;
1485     font-size: 14px;
1486 }
1487 .panel .panel-body .wall-item-content {
1488     color: #555;
1489 }
1490 .tread-wrapper .media {
1491     overflow: visible;
1492     word-wrap: break-word;
1493 }
1494
1495 /* Thread hover effects */
1496 .wall-item-container .wall-item-content a,
1497 .wall-item-container a,
1498 .wall-item-container .fakelink,
1499 .toplevel_item .fakelink,
1500 .toplevel_item .wall-item-container .wall-item-responses a {
1501     color: #555;
1502     -webkit-transition: all 0.25s ease-in-out;
1503     -moz-transition: all 0.25s ease-in-out;
1504     -o-transition: all 0.25s ease-in-out;
1505     -ms-transition: all 0.25s ease-in-out;
1506     transition: all 0.25s ease-in-out;
1507 }
1508
1509 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1510 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1511 .toplevel_item:hover .wall-item-content a,
1512 .toplevel_item:hover .wall-item-name,
1513 .wall-item-container:hover .wall-item-content a,
1514 .wall-item-container:hover .wall-item-name,
1515 .wall-item-container:hover .wall-item-location a {
1516     /*color: #6fdbe8;*/
1517     color: $link_color;
1518     -webkit-transition: all 0.25s ease-in-out;
1519     -moz-transition: all 0.25s ease-in-out;
1520     -o-transition: all 0.25s ease-in-out;
1521     -ms-transition: all 0.25s ease-in-out;
1522     transition: all 0.25s ease-in-out;
1523 }
1524
1525 /* wall items */
1526 .wall-item-container {
1527     position: relative;
1528 }
1529
1530 /* wall items contact photo */
1531 .contact-photo {
1532     height: 48px;
1533     width: 48px;
1534     border-radius: 3px;
1535     /*maybe some adional stuff is needed for the different screen sizes */
1536 }
1537 .contact-photo-image-wrapper {
1538     width: 100%;
1539     height: 100%;
1540     overflow: hidden;
1541     position: relative;
1542     text-align: center;
1543 }
1544 .contact-photo-overlay {
1545     width: 100%;
1546     height: 100%;
1547     position: absolute;
1548     overflow: hidden;
1549     top: 0;
1550     left: 0;
1551     border-radius: 3px;
1552     background:rgba(0,0,0,.50);
1553     text-align:center;
1554     opacity:0;
1555     -webkit-transition: opacity .25s ease;
1556     -moz-transition: opacity .25s ease;
1557 }
1558 .contact-photo-overlay:hover {
1559     opacity: 1;
1560 }
1561 .contact-photo-overlay-content {
1562     font-size: 26px;
1563     text-shadow: 1px 1px 1px #ccc;
1564     color:rgba(255,255,255,.85);
1565     height: 100%;
1566     vertical-align: bottom;
1567 }
1568 .contact-photo-xs{
1569     height: 38px;
1570     width: 38px;
1571     border-radius: 3px;
1572 }
1573 .wwto .contact-photo {
1574     width: auto;
1575     height: 25px;
1576     font-size: 8.8px;
1577     padding: 3.6px 0;
1578     border-radius: 2px;
1579     position: absolute;
1580     top: 30px;
1581     left: 30px;
1582     display: inline-block;
1583 }
1584
1585 /* wall items action dropdown menu */
1586 .nav-pills.preferences {
1587     position: absolute;
1588     right: 15px;
1589     top: 10px;
1590 }
1591 .comment .nav-pills.preferences {
1592     right: 0px;
1593     top: 0px;
1594 }
1595 .wall-item-network {
1596     font-size: 13px;
1597 }
1598
1599 /* wall items contact info */
1600 .media .media-body {
1601     font-size: 13px;
1602 }
1603 .media .media-body h4.media-heading {
1604     font-size: 14px;
1605     font-weight: 500;
1606     color: #555;
1607 }
1608 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1609     display: block;
1610 }
1611 .media .contact-info-comment {
1612     display: table-cell;
1613 }
1614 .media .contact-info-xs h5,
1615 .media .contact-info-comment {
1616     margin: 0 0 5px;
1617 }
1618 .media-heading {
1619     margin: 0 0 5px;
1620 }
1621 .wall-item-name,
1622 .shared-author {
1623     font-size: 15px;
1624     font-weight: bold;
1625 }
1626 .wall-item-name.xs {
1627     font-weight: 700;
1628     font-size: 14px;
1629 }
1630
1631 /* The lock symbol popup */
1632 #panel {
1633     position: absolute;
1634     list-style: none;
1635     background-color: $nav_bg;
1636     border: none;
1637     border-radius: 3px;
1638     float: left;
1639     min-width: 160px;
1640     max-width: 220px;
1641     padding: 10px ;
1642     margin: 2px 0 0;
1643     font-size: 14px;
1644     text-align: left;
1645     color: $nav_icon_color;
1646     z-index: 1000;
1647 }
1648
1649 /* wall items content */
1650 .wall-item-content {
1651     word-break: break-word;
1652 }
1653 .wall-item-content img {
1654     max-height: 480px;
1655     object-fit: contain;
1656 }
1657 .wall-item-body > img,
1658 .wall-item-body > a > img {
1659     border-radius: 3px;
1660 }
1661 .wall-item-body .body-attach > a {
1662     color: #555;
1663     display: inline-block;
1664 }
1665 .wall-item-body .body-attach > a div {
1666     color: #555;
1667     width: 20px;
1668 }
1669
1670 /* wall-item content elements */
1671 .shared-wrapper,
1672 .vevent {
1673     padding: 10px;
1674     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1675 }
1676 @media screen and (max-width: 767px) {
1677     .shared-wrapper,
1678     .vevent {
1679     margin-left: 0px;
1680     margin-right: 0px;
1681     }
1682 }
1683 .shared-wrapper:hover,
1684 .vevent:hover {
1685     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1686 }
1687 .shared_header {
1688     margin-left: 0px;
1689     margin-top: 0px;
1690     padding-top: 0px;
1691     margin-bottom: 10px;
1692     border-top: none;
1693     color: inherit;
1694 }
1695 blockquote.shared_content {
1696     padding: 0px;
1697     margin-left: 0px;
1698     color: inherit;
1699 }
1700 code > .hl-main {
1701     padding: 10px 10px 1px 0;
1702 }
1703 .hl-main ol {
1704     line-height: 1.7;
1705 }
1706 .type-link img.attachment-image {
1707     width: 100%;
1708 }
1709 .type-link blockquote, .type-video blockquote {
1710     margin: 0;
1711     padding: 10px 0;
1712 }
1713 .oembed.video .embed_video > div::before {
1714     font-family: FontAwesome;
1715     font-weight: normal;
1716     font-style: normal;
1717     display: inline-block;
1718     text-decoration: inherit;
1719     vertical-align: top;
1720     font-size: 3em;
1721     content: "\f01d";
1722     color: #fff;
1723     bottom: 0px;
1724     right: 10px;
1725     position: absolute;
1726 }
1727 .oembed.video .embed_video > div {
1728     background-color: rgba(0,0,0,0.2);
1729     -webkit-transition: all 0.25s ease-in-out;
1730     -moz-transition: all 0.25s ease-in-out;
1731     -o-transition: all 0.25s ease-in-out;
1732     -ms-transition: all 0.25s ease-in-out;
1733     transition: all 0.25s ease-in-out;
1734 }
1735 .oembed.video .embed_video > div:hover {
1736     background-color: rgba(0,0,0,0);
1737 }
1738 .wall-item-tags,
1739 .itemedited {
1740     margin-top: 10px;
1741     font-size: 13px;
1742 }
1743
1744 .wall-item-tags a {
1745     color: #555;
1746 }
1747
1748 .wall-item-tags a:hover {
1749     text-decoration: none;
1750 }
1751 .wall-item-bottom .label,
1752 .wall-item-bottom .label a {
1753     color: #fff;
1754 }
1755
1756 /* item social action buttons */
1757 .wall-item-actions {
1758     margin-top: 15px;
1759 }
1760 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1761     font-size: 13px;
1762     color: #555;
1763     margin-bottom: 0;
1764 }
1765 .wall-item-actions .active {
1766     font-weight: bold;
1767 }
1768 .wall-item-actions .active:hover {
1769     color: $link_color;
1770 }
1771 .wall-item-actions-left {
1772     display: table-cell;
1773     vertical-align: middle;
1774 }
1775 .wall-item-actions-right {
1776     display: flex;
1777 }
1778 .wall-item-actions .checkbox {
1779     margin: 0;
1780     margin-left: 20px;
1781 }
1782 .wall-item-actions .button-event {
1783     padding-left: 5px;
1784     padding-right: 5px;
1785 }
1786 .wall-item-actions .button-comments,
1787 .wall-item-actions .button-votes,
1788 .wall-item-actions .button-likes {
1789     text-transform: capitalize;
1790 }
1791 .wall-item-actions button:hover {
1792     color: #555;
1793     text-decoration: underline;
1794 }
1795 .wall-item-actions .separator {
1796     margin: 0 .3em;
1797 }
1798
1799 /* wall item hover effects */
1800 .wall-item-container .wall-item-links,
1801 .wall-item-container .wall-item-actions,
1802 .wall-item-container .body-attach > a {
1803     opacity: 0.3;
1804     -webkit-transition: all 0.25s ease-in-out;
1805     -moz-transition: all 0.25s ease-in-out;
1806     -o-transition: all 0.25s ease-in-out;
1807     -ms-transition: all 0.25s ease-in-out;
1808     transition: all 0.25s ease-in-out;
1809 }
1810 .wall-item-container:hover .wall-item-links,
1811 .wall-item-container:hover .wall-item-actions,
1812 .wall-item-container:hover .body-attach > a {
1813     opacity: 0.6;
1814     -webkit-transition: all 0.25s ease-in-out;
1815     -moz-transition: all 0.25s ease-in-out;
1816     -o-transition: all 0.25s ease-in-out;
1817     -ms-transition: all 0.25s ease-in-out;
1818     transition: all 0.25s ease-in-out;
1819 }
1820 .wall-item-container .wall-item-body .body-attach > a:hover {
1821     opacity: 1;
1822 }
1823
1824 /*
1825 /* Comments
1826 */
1827 .well {
1828     border: none;
1829     box-shadow: none;
1830     /*background-color: #ededed;*/
1831     background-color: rgba(237, 237, 237, $contentbg_transp);
1832     background-image: none;
1833     margin-bottom: 1px;
1834 }
1835 .well-small {
1836     padding: 10px;
1837     border-radius: 3px;
1838 }
1839 .well hr {
1840     margin: 15px 0 10px;
1841     border-top: 1px solid #d9d9d9;
1842 }
1843 .wall-entry .well {
1844     margin-bottom: 0;
1845 }
1846 .comment-container {
1847     margin-top: 10px;
1848     margin-bottom: 0px;
1849     border-top-left-radius: 3px;
1850     border-top-right-radius: 3px;
1851     border-bottom-right-radius: 0px;
1852     border-bottom-left-radius: 0px;
1853 }
1854 .comment .media {
1855     position: relative!important;
1856     margin-top: 0;
1857 }
1858 .hide-comments-outer-wrapper {
1859 /*    text-align: center;
1860     margin-top: -18px;*/
1861 }
1862 .hide-comments-total {
1863     cursor: pointer;
1864 }
1865
1866 /*
1867 * Comment Box
1868 */
1869 .thread_level_2 .wall-item-comment-wrapper {
1870     padding-right: 5px;
1871 }
1872 .comment-edit-submit-wrapper {
1873     margin-bottom: 25px;
1874 }
1875 .comment-edit-submit-wrapper a,
1876 .comment-edit-submit-wrapper a:hover {
1877     padding-top: 5px !important;
1878     padding-bottom: 5px !important;
1879 }
1880 .comment-icon-list > li > .icon,
1881 .comment-icon-list > li > .icon:hover {
1882     color: #555;
1883     background-color: transparent;
1884 }
1885
1886 /* acpopup  + textcompletion*/
1887 .acpopup {
1888     /* max-height: 150px; */
1889     background-color: #ffffff;
1890     border-radius: 4px;
1891     overflow: auto;
1892     z-index: 100000;
1893     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1894 }
1895 nav .acpopup {
1896     /*top: 35px !important;*/
1897     margin-left: -23px;
1898 }
1899 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1900  at the beginning of this file to get rid of the !important */
1901 .textcomplete-item > a {
1902     color: #555 !important;
1903     padding: 5px 20px !important;
1904 }
1905 .textcomplete-item.active > a {
1906     background-color: rgb(247, 247, 247) !important;
1907     background-image: none !important;
1908     border-left: 3px solid $link_color;
1909     padding-left: 17px !important;
1910 }
1911 .textcomplete-item a .forum {
1912     color: $link_color;
1913 }
1914 img.acpopup-img {
1915     border-radius: 4px;
1916  }
1917
1918
1919 /* The wall-item thread levels */
1920 /*.wall-item-container.thread_level_3 {
1921   margin-left: 80px;
1922   width: calc(100% - 90px);
1923 }
1924 .wall-item-container.thread_level_4 {
1925   margin-left: 95px;
1926   width: calc(100% - 105px);
1927 }
1928 .wall-item-container.thread_level_5 {
1929   margin-left: 110px;
1930   width: calc(100% - 120px);
1931 }
1932 .wall-item-container.thread_level_6 {
1933   margin-left: 125px;
1934   width: calc(100% - 135px);
1935 }
1936 .wall-item-container.thread_level_7 {
1937   margin-left: 140px;
1938   width: calc(100% - 150px);
1939 }*/
1940
1941 .wall-item-container.thread_level_3,
1942 .wall-item-container.thread_level_4,
1943 .wall-item-container.thread_level_5,
1944 .wall-item-container.thread_level_6,
1945 .wall-item-container.thread_level_7 {
1946   margin-left: 15px;
1947
1948 }
1949 /* Menubar Tabs */
1950 section > .tabbar-wrapper {
1951 /* The tabbar shouldn't' be visibile inside
1952 the section element. Only after we have
1953 moved it to the nav through js */
1954     display: none !important;
1955 }
1956 #tabmenu,
1957 .tabbar-wrapper,
1958 .tabbar,
1959 .tabbar > li {
1960     height: 100%;
1961     /*margin-left: -15px;*/
1962     padding: 0;
1963 }
1964 #tabmenu .search-heading {
1965     overflow: hidden;
1966     text-overflow: ellipsis;
1967     white-space: nowrap;
1968 }
1969 ul.tabs {
1970     list-style: none;
1971     height: 100%;
1972     padding: 0;
1973     padding-top: 10px;
1974     margin: 0;
1975 }
1976 ul.tabs li {
1977     float: left;
1978     margin: 0;
1979     padding: 0;
1980     /*border-bottom: 0 solid #6fdbe8;*/
1981     border-bottom: 0 solid $link_color;
1982     font-size: 13px;
1983     height: 102%;
1984     transition: all .15s ease;
1985 }
1986 /*ul.tabs.visible-xs > li.active {
1987     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1988 }*/
1989 ul.tabs li a {
1990     margin-left: 10px;
1991     margin-right: 10px;
1992     /*color: #6fdbe8;*/
1993     color: $link_color !important;
1994 }
1995 ul.tabs li:hover, ul.tabs li.active {
1996     border-bottom-width: 4px;
1997 }
1998 ul.tabbar ul.tabs-extended li.active {
1999     width: 100%;
2000     border-bottom-width: 2px;
2001 }
2002 ul.tabbar ul.tabs-extended li.active a {
2003     background: none;
2004 }
2005 ul.dropdown-menu li:hover {
2006     border-bottom-width: 0;
2007 }
2008
2009
2010 /* Dropdown Menu */
2011 .dropdown-menu li a,
2012 .dropdown-menu li .btn-link {
2013     font-size: 13px!important;
2014     font-weight: 600!important;
2015 }
2016 .dropdown-menu li > :hover,
2017 .dropdown-menu li > :visited,
2018 .dropdown-menu li > :focus {
2019     background: 0 0;
2020 }
2021
2022 .dropdown-menu li:first-child {
2023     margin-top: 3px;
2024 }
2025
2026 /* Notificaiotn badges */
2027 .nav-notify .show {
2028     display: block;
2029 }
2030
2031 /* Media Classes */
2032 .media .time,
2033 .media .shared-time,
2034 .media .location,
2035 .media .location a {
2036     font-size: 11px;
2037     color: #bebebe;
2038 }
2039 .media-list > li {
2040     padding: 10px;
2041     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2042     position: relative;
2043 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
2044     border-left: 3px solid rgba(255,255,255,0);
2045     font-size: 12px;
2046 }
2047 .media-list > li:hover,
2048 .media-list > li.selected,
2049 .media-list > li.active {
2050     border-left: 3px solid $link_color;
2051     background-color: rgba(247, 247, 247, $contentbg_transp);
2052 }
2053
2054 /* Forms */
2055 .form-control {
2056     border: 2px solid #ededed;
2057     box-shadow: none;
2058 }
2059 .form-control:focus {
2060     /*border: 2px solid #6fdbe8;*/
2061     border: 2px solid $link_color;
2062     outline: 0;
2063     box-shadow: none;
2064 }
2065
2066
2067 .checkbox input[type="checkbox"]:focus + label::before,
2068 .checkbox input[type="radio"]:focus + label::before {
2069     /*border: 2px solid #6fdbe8;*/
2070     border: 2px solid $link_color;
2071     outline: 0;
2072     box-shadow: none;
2073 }
2074
2075 /* Search form */
2076 .form-control.form-search {
2077     border-radius: 30px;
2078     background-image: url(img/icon_search16x16.png);
2079     background-repeat: no-repeat;
2080     background-position: 10px 8px;
2081     padding-left: 34px;
2082 }
2083 .form-group-search {
2084     position: relative;
2085     width: 100%;
2086 }
2087
2088 .form-group-search .form-button-search {
2089     position: absolute;
2090     top: 4px;
2091     right: 4px;
2092     border-radius: 30px;
2093 }
2094 .search-input.form-control.form-search {
2095     width: 100%;
2096 }
2097 .search-heading {
2098     text-align: center;
2099     color: $link_color;
2100     font-size: 20px;
2101 }
2102 .search-content-wrapper > #search-header-wrapper {
2103     display: none;
2104 }
2105 .search-content-wrapper > .section-title-wrapper {
2106     display: none;
2107 }
2108 #navbar-button > #search-save-form > #search-save {
2109     margin-top: 3px;
2110 }
2111 /* Section-Content-Wrapper */
2112 #search-header-wrapper {
2113     padding: 15px;
2114     padding-bottom: 20px;
2115     margin-bottom: 20px;
2116     border: none;
2117     /*background-color: #fff;*/
2118     background-color: rgba(255,255,255,$contentbg_transp);
2119     border-radius: 4px;
2120     position: relative;
2121     /*overflow: hidden;*/
2122     color: #555;
2123     box-shadow: 0 0 3px #dadada;
2124     -webkit-box-shadow: 0 0 3px #dadada;
2125     -moz-box-shadow: 0 0 3px #dadada;
2126 }
2127
2128 /* *******
2129  * PAGES
2130  *********/
2131
2132 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2133  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2134 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2135 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2136 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
2137 #adminpage, .delegate-content-wrapper, .uexport-content-wrapper,
2138 .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
2139 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2140 .profperm-content-wrapper, .invite-content-wrapper, .tos-content-wrapper {
2141     min-height: calc(100vh - 150px);
2142     padding: 15px;
2143     padding-bottom: 20px;
2144     margin-bottom: 20px;
2145     border: none;
2146     /*background-color: #fff;*/
2147     background-color: rgba(255,255,255,$contentbg_transp);
2148     border-radius: 4px;
2149     position: relative;
2150     /*overflow: hidden;*/
2151     color: #555;
2152     box-shadow: 0 0 3px #dadada;
2153     -webkit-box-shadow: 0 0 3px #dadada;
2154     -moz-box-shadow: 0 0 3px #dadada;
2155 }
2156
2157 .section-title-wrapper {
2158     overflow: hidden;
2159 }
2160 /* Home and Login Page */
2161 body.mod-home nav.navbar .nav>li>a:hover {
2162     background-color: rgba(255,255,255,0.2);
2163 }
2164 body.mod-home .navbar #nav-login,
2165 body.mod-login .navbar #nav-login {
2166     display: none;
2167 }
2168 /* Profile-page */
2169 #profile-content-standard,
2170 #profile-content-advanced {
2171     overflow: hidden;
2172 }
2173 #profile-menu {
2174     margin-top: 20px;
2175     margin-bottom: 20px;
2176 }
2177 .contact-block-div.forumlist-profile-advanced {
2178     float: left;
2179 }
2180
2181 /* contacts page */
2182 ul.viewcontact_wrapper {
2183     margin-left: -15px;
2184     margin-right: -15px;
2185 }
2186 ul.viewcontact_wrapper > li {
2187     padding-left: 15px;
2188 }
2189 .contact-wrapper {
2190 /*    padding: 10px;
2191     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2192     position: relative;*/
2193     /*border-left: 3px solid white;*/
2194 }
2195 .contact-wrapper .contact-photo-wrapper button {
2196     padding: 0;
2197 }
2198 .contact-wrapper.media {
2199     overflow: visible;
2200     word-wrap: break-word;
2201     margin-top: 0;
2202 }
2203 /* bootstrap hack for .media */
2204 .contact-wrapper.media .media-body {
2205     display: table-cell;
2206     width: 10000px;
2207     *width: auto;
2208     *zoom: 1;
2209 }
2210 .contact-wrapper.media:before, .media:after {
2211     content: "";
2212     display: table;
2213 }
2214 .contact-wrapper.media:after {
2215     clear: both;
2216 }
2217 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2218     height: 80px;
2219     width: 80px;
2220 }
2221 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2222     height: 48px;
2223     width: 48px;
2224 }
2225 .contact-wrapper .contact-photo-overlay-content.xl {
2226     font-size: 48px;
2227 }
2228 .contact-wrapper .contact-photo-menu {
2229     top: auto;
2230 }
2231
2232 .contact-entry-desc {
2233     color: #555;
2234 }
2235 .contact-entry-checkbox {
2236     margin-top: -20px;
2237 }
2238 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2239     font-weight: bold !important;
2240     color: $link_color;
2241     font-size: 15px !important;
2242 }
2243 .contact-wrapper .contact-actions {
2244     display: flex;
2245 }
2246 .contact-wrapper .contact-action-link,
2247 .contact-wrapper .contact-action-link:hover,
2248 .textcomplete-item .contact-wrapper .contact-action-link {
2249     padding: 0 5px;
2250     color: #555;
2251     border: 0;
2252 }
2253 .contact-wrapper .contact-action-link {
2254     opacity: 0.1;
2255     transition: all 0.25s ease-in-out;
2256 }
2257 ul li:hover .contact-wrapper .contact-action-link {
2258     opacity: 0.8;
2259     transition: all 0.25s ease-in-out;
2260 }
2261 ul li:hover .contact-wrapper .contact-action-link:hover {
2262     opacity: 1;
2263 }
2264 #contacts-search-wrapper,
2265 #directory-search-wrapper{
2266     padding: 10px 0;
2267 }
2268 #contact-drop-confirm .contact-actions,
2269 #contact-drop-confirm .contact-photo-overlay,
2270 #contact-drop-confirm .contact-photo-menu {
2271     display: none;
2272 }
2273 #contact-drop-confirm #confirm-form {
2274     margin-top: 20px;
2275 }
2276
2277 /* contact-edit */
2278 #contact-edit-actions {
2279     position: absolute;
2280 }
2281 #contact-edit-status-wrapper {
2282     border: none;
2283     background-color: #E1F5FE;
2284     margin: 15px -15px;
2285 }
2286 #contact-edit-tools {
2287     margin-left: -15px;
2288     margin-right: -15px;
2289 }
2290 #contact-edit-tools > .panel {
2291     padding-left: 15px;
2292     padding-right: 15px;
2293 }
2294 #contact-edit-settings {
2295     display: block;
2296     margin: 0;
2297 }
2298
2299 /* directory page */
2300 #directory-search-heading {
2301     padding-top: 10px;
2302 }
2303
2304 /* group edit page */
2305 .group-actions {
2306     margin-top: 20px;
2307     margin-bottom: 10px;
2308     font-size: 30px;
2309 }
2310 .group-actions button,
2311 .group-actions a {
2312     font-size: 18px;
2313 }
2314
2315 .contact-group-actions .fa-times-circle { color: #D00000;}
2316 .contact-group-actions .fa-plus-circle { color: #008000;}
2317
2318 #group-edit-wrapper {
2319     display: none;
2320 }
2321 #group-update-wrapper .contact-photo-overlay {
2322     display: none;
2323 }
2324 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2325     height: 100%;
2326     margin-top: -10px;
2327     display: flex;
2328 }
2329 #group-update-wrapper .viewcontact_wrapper .contact-action-link {
2330     opacity: 0.8;
2331     font-size: 20px;
2332     line-height: 50px;
2333 }
2334 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2335     opacity: 1;
2336 }
2337 #group-update-wrapper .shortmode {
2338     height: 53px;
2339     overflow: hidden;
2340 }
2341 #group-update-wrapper .shortmode .contact-photo {
2342     height: 32px;
2343     width: 32px;
2344 }
2345 #group-update-wrapper .shortmode .media {
2346     overflow: hidden;
2347 }
2348 #group-update-wrapper .shortmode .contact-entry-desc {
2349     font-size: 12px !important;
2350 }
2351 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2352     margin: 0;
2353 }
2354 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2355     font-size: 13px !important;
2356     white-space: nowrap;
2357 }
2358 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2359 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2360     display: none;
2361 }
2362
2363 /* private mail */
2364 .message-content-wrapper > li {
2365 /* we need this overwriting because we have no template file
2366    for the general mail page /message
2367 */
2368     list-style-type: none;
2369 }
2370 .mail-thread {
2371     max-height: calc(100vh - 200px);
2372 }
2373 #mail-conversation {
2374     overflow-y: auto;
2375     max-height: calc(100vh - 400px);
2376     max-height: auto;
2377     /*height: 500px;*/
2378     margin-bottom: 0px;
2379     padding: 0 15px;
2380 }
2381 #mail-conversation.can-reply {
2382 /*    border-bottom-left-radius: 0px;
2383     border-bottom-right-radius: 0px;*/
2384 }
2385 .mail-conv-wrapper .media .contact-photo-wrapper img {
2386     height: 48px;
2387     width: 48px;
2388 }
2389 .mail-thread #prvmail-to-label,
2390 .mail-thread #prvmail-subject-label {
2391     display: none;
2392 }
2393 .mail-thread #prvmail-message-label > label {
2394     display:none;
2395 }
2396 .mail-thread #prvmail-message-label textarea {
2397 /*    border-top: none;
2398     margin-top: -10px;
2399     border-top-left-radius: 0px;
2400     border-top-right-radius: 0px;*/
2401     max-height: 120px;
2402 }
2403 .mail-conv-wrapper {
2404     padding: 15px 0;
2405     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2406 }
2407 #message-sidebar {
2408     height: calc(100vh - 150px);
2409 }
2410 #message-preview {
2411     /*padding: 0 10px;*/
2412     height: calc(100% - 20px);
2413 }
2414 #message-preview ul {
2415     margin: 0px;
2416 }
2417 #message-preview .media-list li {
2418     padding: 0px 10px;
2419     border: none;
2420 }
2421 #message-preview .media-list li:hover {
2422     border-left: none !important;
2423 }
2424 #message-preview .media-list li a {
2425     color: $link_color;
2426 }
2427 .mail-list-outside-wrapper {
2428     padding: 5px 0;
2429     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2430 }
2431 .mail-list-outside-wrapper .contact-photo-wrapper img {
2432     height: 48px;
2433     width: 48px;
2434 }
2435 #prvmail-end {
2436     clear:both;
2437 }
2438 #modal #prvmail-text-edit-bb .bb-img {
2439     display: none;
2440 }
2441
2442 /* photos */
2443 .photo-album-actions {
2444     margin-bottom: 10px;
2445 }
2446 .photo-album-actions .photos-order-link {
2447     float: right;
2448 }
2449 /* poke */
2450 #poke-desc {
2451     margin: 5px 0 30px;
2452 }
2453 #poke-wrapper-end {
2454     clear: both;
2455 }
2456
2457 /* Events page */
2458
2459 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2460     color: $link_hover_color;
2461 }
2462 .fc .fc-list-item-title a {
2463     color: $link_color;
2464 }
2465 .fc .fc-list-item-title a[href]:hover {
2466     color: $link_hover_color;
2467     text-decoration: none;
2468 }
2469 /*.event-date-wrapper.medium .event-hover-short-month {
2470     color: $link_color;
2471 }*/
2472 .event-wrapper .event-owner {
2473   margin-bottom: 15px;
2474 }
2475 .event-wrapper .event-owner img {
2476     display: block;
2477 }
2478 .event-owner img {
2479     margin-right: 5px;
2480     height: 48px;
2481     width:  48;
2482     border-radius: 3px;
2483 }
2484 .event-wrapper .vevent {
2485     margin-left: 0;
2486     margin-right: 0;
2487     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2488 }
2489 .event-wrapper .event-buttons {
2490     margin-top: 15px;
2491 }
2492 #event-form-wrapper {
2493     padding-top: 5px;
2494 }
2495 #event-edit-form-wrapper {
2496     padding-top: 15px;
2497 }
2498 #event-nav a {
2499     color: #555;
2500 }
2501 #event-edit-form-wrapper #event-edit-time {
2502     padding: 10px 0;
2503 }
2504 .event-buttons .plink-event-link {
2505     margin-left: 20px;
2506 }
2507 .vevent .event-summary {
2508     font-size: 16px;
2509 }
2510 .vevent .event-description {
2511     padding: 10px 0;
2512 }
2513 .vevent .event-location .location {
2514     font-size: inherit;
2515     color: inherit;
2516 }
2517 .modal-body .vevent .event-summary {
2518     display: none;
2519 }
2520 #event-preview .vevent .event-summary {
2521     display: block;
2522 }
2523
2524 /* Event Cards */
2525 .event-card-details, .event-card-header {
2526     width: 100%;
2527 }
2528 .event-card-header, .event-card-left-date {
2529     float: left;
2530 }
2531 .vevent .event-card-header {
2532     display: table;
2533 }
2534 .event-card-left-date {
2535     width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
2536 }
2537 .event-card .event-date-wrapper > span {
2538     display: block;
2539     overflow: hidden;
2540     text-align: center;
2541     white-space: nowrap;
2542 }
2543 .event-card .event-date-wrapper .event-card-short-month {
2544     font-size: 13px;
2545     text-transform: uppercase;
2546 }
2547 .event-card .event-date-wrapper.medium .event-card-short-date {
2548     font-size: 24px;
2549     line-height: 28px;
2550     margin-top: 2px;
2551 }
2552 .event-card .event-card-content {
2553     width: 100%;
2554     padding: 0 5px 0 15px;
2555     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2556     color: #777;
2557     position: relative;
2558 }
2559 .event-card .event-card-content .event-map-btn {
2560     position: absolute;
2561     right: 0;
2562     top:0;
2563     line-height: 15px;
2564 }
2565 .event-card .event-card-title {
2566     font-size: 14px;
2567     color: #555;
2568     line-height: 15px;
2569     font-weight: bold;
2570     margin: 0;
2571 }
2572 .event-card .event-card-location {
2573     margin-top: 10px;
2574     font-size: 13px;
2575 }
2576 .event-card .event-card-location br {
2577     content: " ";
2578 }
2579 .event-card .event-card-location br::after {
2580     content: " ";
2581 }
2582 .event-card-profile-name a {
2583     color: $link_color;
2584 }
2585 .event-card-profile-name a:hover {
2586     color: $link_hover_color;
2587 }
2588 .event-card .event-card-content .event-location-map {
2589     position: absolute;
2590     left: -9999px;
2591     top: -9999px;
2592 }
2593 .event-card .event-card-content .event-location-map .map{
2594     margin-top: 10px;
2595 }
2596 .event-card .description {
2597     margin-top: 10px;
2598     box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, .1) inset;
2599 }
2600 /* Photos Pages */
2601 #photo-photo {
2602     position: relative;
2603 }
2604 .photo-next-link, .photo-prev-link {
2605     height: 64px;
2606     margin-top: -32px;
2607     opacity: 0;
2608     position: absolute;
2609     top: 50%;
2610     transform: translateZ(0);
2611     transition: opacity .2s;
2612     /*width: 27px;*/
2613     width: 100px;
2614     z-index: 11;
2615     font-size: 64px;
2616     color: #fff;
2617     text-shadow:
2618         -1px -1px 0 #000,
2619         1px -1px 0 #000,
2620         -1px 1px 0 #000,
2621         1px 1px 0 #000;
2622 }
2623 .photo-next-link > i, .photo-prev-link > i {
2624     vertical-align: super;
2625 }
2626 .photo-next-link > i {
2627     float: right;
2628 }
2629 .photo-prev-link {
2630     left: 20px;
2631 }
2632 .photo-next-link {
2633     right: 20px;
2634 }
2635 #photo-photo:hover .photo-next-link,
2636 #photo-photo:hover .photo-prev-link {
2637     opacity: 0.4;
2638 }
2639 #photo-photo .photo-next-link:hover,
2640 #photo-photo .photo-prev-link:hover {
2641     opacity: 1;
2642     color: #fff;
2643 }
2644 .photo-comment-wrapper .comment {
2645     position: relative;
2646 }
2647 .photo-comment-wrapper .wall-item-content {
2648     color: #555;
2649     font-size: 13px;
2650 }
2651 .photo-comment-wrapper .comment-wwedit-wrapper,
2652 .photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
2653     margin-top: 15px;
2654 }
2655
2656 /* Profiles Page */
2657 .profile-listing-table {
2658     display: table;
2659     width: 100%;
2660 }
2661 .profile-listing-row {
2662     display: table-row;
2663 }
2664 .profile-listing-cell {
2665     display: table-cell;
2666 }
2667 .profile-listing-photo {
2668     width: 48px;
2669     height: 48px;
2670     margin: 10px 0px;
2671 }
2672 #profile-listing-new-link-wrapper {
2673     margin-bottom: 20px;
2674 }
2675 .panel-group-settings {
2676     margin-left: -15px;
2677     margin-right: -15px;
2678 }
2679 .panel-group-settings > .panel,
2680 .panel-group-settings > form > .panel {
2681     padding-left: 15px;
2682     padding-right: 15px;
2683 }
2684 .profiles-content-wrapper #profile-photo-upload-section {
2685     display: none;
2686     margin-left: -15px;
2687     margin-right: -15px;
2688     margin-top: 15px;
2689     padding: 15px;
2690 }
2691 #profile-photo-upload-close {
2692     font-size: 14px;
2693 }
2694
2695 /* Settings */
2696 .section-subtitle-wrapper {
2697     padding: 1px 10px;
2698 }
2699 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2700     font-family: FontAwesome;
2701     content: "\f0d7";
2702     padding-right: 5px;
2703 }
2704 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2705     font-family: FontAwesome;
2706     content: "\f0da";
2707 }
2708 #settings-nick-wrapper {
2709     margin-bottom: 20px;
2710 }
2711 .group {
2712     margin-left: 20px;
2713 }
2714
2715 /* Emulates Bootstrap display */
2716 .settings-block {
2717     margin: 0 -15px 5px;
2718     color: #333;
2719     background-color: rgba(255,255,255,0.95);
2720     border-radius: 4px;
2721     padding: 10px 15px;
2722     box-shadow: 0 0 3px #dadada;
2723     -webkit-box-shadow: 0 0 3px #dadada;
2724     -moz-box-shadow: 0 0 3px #dadada;
2725 }
2726
2727 .settings-block.fakelink, .settings-block > .fakelink {
2728     padding: 10px 25px;
2729     display: block;
2730 }
2731 .settings-block > .fakelink {
2732     margin: -10px -15px 10px -15px;
2733     border-radius: 4px 4px 0 0;
2734 }
2735
2736 .settings-block.fakelink:hover, .settings-block > .fakelink:hover {
2737     color: $link_hover_color;
2738 }
2739 .settings-block.fakelink > h3, .settings-block > .fakelink > h3 {
2740     margin: 0;
2741     padding: 0;
2742     color: $link_color;
2743     font-size: 18px;
2744 }
2745
2746 .fakelink > h3:before {
2747     padding-right: 10px;
2748 }
2749 .settings-block.fakelink > h3:before {
2750     font-family: FontAwesome;
2751     content: "\f0da"; /* Right Plain Pointer */
2752 }
2753 .settings-block > .fakelink > h3:before {
2754     font-family: FontAwesome;
2755     content: "\f0d7"; /* Bottom Plain Pointer */
2756 }
2757
2758 h3.connector {
2759     line-height: 40px;
2760 }
2761
2762 /* Intro Notifications */
2763 ul.notif-network-list {
2764     margin-left: -15px;
2765     margin-right: -15px;
2766 }
2767 ul.notif-network-list > li {
2768     padding-left: 15px;
2769     padding-right: 15px;
2770 }
2771 .intro-wrapper.media {
2772     overflow: visible;
2773     word-wrap: break-word;
2774     margin-top: 0;
2775 }
2776 .intro-photo-wrapper img.intro-photo {
2777     height:80px;
2778     width: 80px;
2779     border-radius: 4px;
2780 }
2781 .intro-actions {
2782     display: flex;
2783 }
2784 .intro-enty-name h4 {
2785     font-size: 15px !important;
2786 }
2787 .intro-wrapper button.intro-action-link {
2788     opacity: 0.1;
2789     transition: all 0.25s ease-in-out;
2790 }
2791 .intro-wrapper button.intro-action-link,
2792 .intro-wrapper button.intro-action-link:hover {
2793     padding-right: 5px;
2794     padding-left: 5px;
2795     color: #555;
2796 }
2797 ul li:hover .intro-wrapper button.intro-action-link {
2798     opacity: 0.8;
2799     transition: all 0.25s ease-in-out;
2800 }
2801 ul li:hover .intro-wrapper button.intro-action-link:hover {
2802     opacity: 1;
2803 }
2804 .intro-action-buttons {
2805     margin-top: 15px;
2806     /*display: none;*/
2807     max-height: 0px;
2808     overflow: hidden;
2809     transition: max-height 0.1s ease-out;
2810 }
2811 ul.notif-network-list > li:hover .intro-action-buttons {
2812     /*display: block;*/
2813     max-height: 30px;
2814     transition: max-height 0.1s ease-in;
2815 }
2816 .intro-desc-label, .intro-url-label, .intro-network-label,
2817 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2818 .intro-about-label, .intro-knowyou-label {
2819     font-weight: bold;
2820 }
2821 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2822 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2823 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2824 .intro-contact-info.xs .intro-knowyou-label {
2825     display: block;
2826     margin-top: 5px
2827 }
2828
2829 /* Notifications Page */
2830 ul.notif-network-list li.unseen {
2831     background-color: #f3fcfd;
2832 }
2833 .notif-item img.notif-image {
2834     height: 48px;
2835     width: 48px;
2836     border-radius: 4px;
2837 }
2838 .notif-item .notif-desc-wrapper {
2839     height: 48px;
2840 }
2841 .notif-item .notif-desc-wrapper a {
2842     height: 100%;
2843     display: block;
2844     color: #555;
2845     font-size: 13px;
2846     font-weight: 600;
2847 }
2848
2849 /* Search Page */
2850
2851 /* This is a little bit hacky. Since the search page is used for diferent
2852 content types we can't apply the generic-page-wrapper class.
2853 So we apply the css of the generic-page-wrapper class to the ul element with some
2854 little modifications to emulate a standard page template */
2855 .search-content-wrapper > ul.viewcontact_wrapper {
2856     min-height: calc(100vh - 150px);
2857     padding-top: 15px;
2858     padding-bottom: 20px;
2859     margin: 0;
2860     margin-bottom: 20px;
2861     border: none;
2862     /*background-color: #fff;*/
2863     background-color: rgba(255,255,255,$contentbg_transp);
2864     border-radius: 4px;
2865     position: relative;
2866     /*overflow: hidden;*/
2867     color: #555;
2868     box-shadow: 0 0 3px #dadada;
2869     -webkit-box-shadow: 0 0 3px #dadada;
2870     -moz-box-shadow: 0 0 3px #dadada;
2871 }
2872
2873 /* Help Page */
2874 section.help-content-wrapper h1 {
2875     padding-bottom: 0.3em;
2876     font-size: 1.8em;
2877     border-bottom: 1px solid #ddd;
2878 }
2879 section.help-content-wrapper h2 {
2880     padding-bottom: 0.3em;
2881     font-size: 1.5em;
2882     border-bottom: 1px solid #ddd;
2883 }
2884 section.help-content-wrapper h3 {
2885     font-size: 1.2em;
2886 }
2887 section.help-content-wrapper h4 {
2888     font-size: 1em;
2889 }
2890 section.help-content-wrapper h1,
2891 section.help-content-wrapper h2,
2892 section.help-content-wrapper h3,
2893 section.help-content-wrapper h4,
2894 section.help-content-wrapper h5,
2895 section.help-content-wrapper h6 {
2896     margin-top: 24px;
2897     margin-bottom: 16px;
2898     font-weight: 600;
2899     line-height: 1.25;
2900 }
2901 section.help-content-wrapper p {
2902     margin: 0.4em 0;
2903 }
2904 section.help-content-wrapper p,
2905 section.help-content-wrapper a,
2906 section.help-content-wrapper li {
2907     line-height: 1.6;
2908     font-size: 0.96em;
2909 }
2910
2911 /*Admin Page*/
2912 #adminpage #frio_background_image .image-select {
2913     display: none;
2914 }
2915 #adminpage #frio_background_image.input-group {
2916     display: block;
2917 }
2918 #admin-summary-wrapper {
2919     padding-top: 10px;
2920 }
2921 #adminpage ul#pluginslist, li.plugin {
2922     padding-top: 10px;
2923 }
2924 #adminpage li .icon {
2925     display: inline-block;
2926     vertical-align: text-top;
2927     position: relative;
2928     padding-left: 5px;
2929 }
2930 #adminpage li .icon:before {
2931     content: "";
2932     display: inline-block;
2933     position: absolute;
2934     width: 17px;
2935     height: 17px;
2936     left: 0;
2937     margin-left: -20px;
2938     margin-top: 2px;
2939     border: 1px solid #cccccc;
2940     border-radius: 3px;
2941     background-color: #fff;
2942     -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2943     -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2944     transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
2945 }
2946 #adminpage li .icon.on:after {
2947     font-family: "FontAwesome";
2948     content: "\f00c";
2949     display: inline-block;
2950     position: absolute;
2951     width: 16px;
2952     height: 16px;
2953     left: 0;
2954     top: 0;
2955     margin-left: -20px;
2956     margin-top: 2px;
2957     padding-left: 3px;
2958     padding-top: 1px;
2959     font-size: 11px;
2960     color: #555555;
2961 }
2962 #adminpage .plugin .desc {
2963     padding-left: 10px;
2964 }
2965 .adminpage .admin-settings-action-link,
2966 .adminpage .admin-settings-action-link:hover {
2967     color: #555;
2968 }
2969 .adminpage .admin-settings-action-link:hover {
2970     opacity: 1;
2971 }
2972 .adminpage .admin-settings-action-link {
2973     opacity: 0.8;
2974 }
2975 #admin-users tr.blocked {
2976     background-color: #f8efc0;
2977 }
2978 .adminpage .table-hover > tbody > tr:hover + tr.details {
2979     background-color: #f5f5f5;
2980 }
2981
2982 /* Register Page*/
2983 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
2984     margin-top: 20px;
2985 }
2986 #register-openid-end, #register-nickname-end
2987 {
2988     margin-top: 40px;
2989 }
2990
2991 /*
2992 * Overwriting for transparency and other colors
2993 */
2994 main .nav-tabs>li.active>a,
2995 main .nav-tabs>li.active>a:focus,
2996 main .nav-tabs>li.active>a:hover {
2997     background-color: rgba(255,255,255,$contentbg_transp);
2998 }
2999
3000 /*
3001  * Modal
3002  */
3003 .modal hr {
3004     border-color: #eee;
3005 }
3006
3007 /*
3008  * Framework overwrite
3009  */
3010
3011 /* jRange */
3012 .theme-frio .back-bar {
3013     height: 5px !important;
3014     border-radius: 2px;
3015     background-color: #eeeeee;
3016     background-color: #e7e7e7;
3017     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
3018     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
3019     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
3020     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
3021     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
3022     background-repeat: repeat-x;
3023     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
3024 }
3025 .theme-frio .back-bar .selected-bar {
3026     border-radius: 2px;
3027     background-color: $link_color;
3028 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
3029     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
3030     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
3031     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
3032     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
3033     background-repeat: repeat-x;
3034     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
3035 }
3036 .theme-frio .back-bar .pointer {
3037     width: 14px !important;
3038     height: 14px !important;
3039     top: -5px;
3040     -webkit-box-sizing: border-box;
3041     -moz-box-sizing: border-box;
3042     box-sizing: border-box;
3043     border-radius: 10px;
3044     border: 1px solid #AAA;
3045     background-color: #e7e7e7 !important;
3046     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
3047     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
3048     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
3049     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
3050     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
3051     background-repeat: repeat-x;
3052     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
3053 }
3054 .theme-frio .back-bar .pointer-label {
3055     color: #999;
3056 }
3057
3058 /* textcomplete for contact filtering*/
3059 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
3060     position: relative !important;
3061     top: inherit !important;
3062     bottom: inherit !important;
3063     left: inherit !important;
3064     padding: 0;
3065     margin-left: -15px;
3066     margin-right: -15px;
3067     background-color: transparent;
3068     box-shadow: none;
3069     border: none;
3070 }
3071 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
3072     padding-left: 15px;
3073     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
3074 }
3075 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
3076     display: none;
3077 }
3078 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
3079 .textcomplete-item > a {
3080     padding: 0 !important;
3081     border-left: none;
3082     background-color: transparent !important;
3083 }
3084 /* this is a little hack for texcomplete contact filter
3085 There are for some reasons empty <a> tags. I don't know why */
3086 .textcomplete-item .contact-wrapper a {
3087     padding: 0;
3088 }
3089
3090 /* hovercard fix */
3091 body .tread-wrapper .hovercard a,
3092 body .tread-wrapper .hovercard a:hover {
3093     color: $link_color;
3094 }
3095 body .tread-wrapper .hovercard:hover .hover-card-content a {
3096     color: $link_color !important;
3097 }
3098
3099 /* Pagination improvements */
3100 .pagination {
3101     text-align: center;
3102     display: block;
3103 }
3104 .pagination > li > a,
3105 .pagination > li > span {
3106     color: $link_color;
3107     float: none;
3108 }
3109 .pagination>li>a:hover,
3110 .pagination>li>span:hover {
3111     color: $link_hover_color;
3112 }
3113 .pagination > .active > a,
3114 .pagination > .active > a:focus,
3115 .pagination > .active > a:hover,
3116 .pagination > .active > span,
3117 .pagination > .active > span:focus,
3118 .pagination > .active > span:hover {
3119     background-color: $link_color;
3120     border-color: $link_color;
3121     border-radius: 3px;
3122 }
3123 .pagination li.pager_n a {
3124     margin-left: 3px;
3125     border-radius: 3px;
3126 }
3127 .pagination .pager_prev a {
3128     margin-left: -5px;
3129     margin-right: 4px;
3130     border-top-right-radius: 3px;
3131     border-bottom-right-radius: 3px;
3132 }
3133 .pagination .pager_next a {
3134     margin-left: 4px;
3135     margin-right: -5px;
3136     border-top-left-radius: 3px;
3137     border-bottom-left-radius: 3px;
3138 }
3139 .pager .next > a,
3140 .pager .previous > a {
3141     float: none;
3142     border-radius: 3px;
3143 }
3144 .pagination .disabled > a,
3145 .pager .disabled > a {
3146     display: none;
3147 }
3148
3149 /*
3150  * some temporary workarounds until this will solved
3151  * elsewhere (e.g. new templates)
3152  */
3153 section .profile-match-wrapper {
3154     float: left;
3155 }
3156
3157 /**
3158  * Login page
3159  */
3160 #login-submit-wrapper {
3161     float: right;
3162 }
3163 #lost-password-link { flex-grow: 2; }
3164 #login-lost-password-link {
3165     margin-bottom: 10px;
3166     float: right;
3167 }
3168 #div_id_remember {
3169     float: left;
3170 }
3171 #id_password_wrapper {
3172     margin-bottom: unset;
3173 }
3174 #login_openid {
3175     clear: both;
3176 }
3177 #register-link {
3178     color: white;
3179     background: #8ad0a1;
3180     width: 100%;
3181 }
3182 #login-end {
3183     clear: both;
3184 }
3185
3186 .mod-home.is-not-singleuser,
3187 .mod-login {
3188     background-color: $login_bg_color;
3189     background-image: linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0.4)), url($login_bg_image);
3190     background-size: cover;
3191     background-attachment: fixed;
3192     background-position: center;
3193     padding-top: 0;
3194 }
3195 .mod-home.is-not-singleuser nav.navbar,
3196 .mod-login nav.navbar { background-color: transparent }
3197 .mod-home.is-not-singleuser #topbar-second,
3198 .mod-login #topbar-second {
3199     background-color: transparent;
3200     box-shadow: unset;
3201     border: 0
3202 }
3203 .mod-home.is-not-singleuser .login-content,
3204 .mod-login .login-content {
3205     color: #eee;
3206     margin-top: 2.5%;
3207 }
3208
3209 .mod-home.is-not-singleuser .login-form > #login-extra-links {
3210     margin-top: 4em;
3211 }
3212
3213 .mod-home.is-not-singleuser .login-form > #login-form label,
3214 .mod-login #content #login-form label {
3215     color: #eee;
3216 }
3217
3218 .mod-home.is-not-singleuser .login-panel-content,
3219 .mod-login .login-panel-content {
3220     background-color: rgba(255,255,255,.85);
3221 }
3222
3223 /* Medium devices (desktops, 992px and up) */
3224 @media (min-width: 992px) {
3225     .mod-home.is-not-singleuser #content,
3226     .mod-login #content {
3227         margin-top: 100px!important;
3228     }
3229
3230     .mod-home.is-not-singleuser .login-form > #login-form,
3231     .mod-home.is-not-singleuser .login-form > #login-extra-links,
3232     .mod-login #content #login-form {
3233         background-color: #fff;
3234         padding: 1em;
3235         position: relative;
3236     }
3237     .mod-home.is-not-singleuser .login-form > #login-extra-links {
3238         margin-top: unset;
3239         background-color: white;
3240     }
3241
3242     .mod-home.is-not-singleuser .login-form > #login-form label,
3243     .mod-login #content #login-form label {
3244         color: #444;
3245     }
3246
3247     .mod-home.is-not-singleuser .login-form::before,
3248     .mod-login #content #login-form::before {
3249         display: block;
3250         position: absolute;
3251         content: " ";
3252         background-color: rgba(255,255,255,0.1);
3253         width:90%;
3254         height: 110%;
3255         top: -5%;
3256         left: 5%;
3257         z-index: -1;
3258     }
3259
3260     .mod-home.is-not-singleuser .login-form::after,
3261     .mod-login #content #login-form::after {
3262         display: block;
3263         position: absolute;
3264         content: " ";
3265         background-color: rgba(255,255,255,0.2);
3266         width:80%;
3267         height: 120%;
3268         top: -10%;
3269         left: 10%;
3270         z-index: -1;
3271     }
3272
3273 }
3274
3275
3276