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