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