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