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