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