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