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