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