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