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