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