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