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