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