]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge pull request #8384 from annando/issue-8371
[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
2076 /* Birthday */
2077 #birthday-notice, #birthday-wrapper {
2078     margin-bottom: 5px;
2079     padding: 10px;
2080     border: none;
2081     background-color: rgba(247,247,247,$contentbg_transp);
2082     box-shadow: 0 0 3px #dadada;
2083     -webkit-box-shadow: 0 0 3px #dadada;
2084     -moz-box-shadow: 0 0 3px #dadada;
2085     border-radius: 4px;
2086 }
2087
2088 /* Menubar Tabs */
2089 section > .tabbar-wrapper {
2090 /* The tabbar shouldn't' be visibile inside
2091 the section element. Only after we have
2092 moved it to the nav through js */
2093     display: none !important;
2094 }
2095 #tabmenu,
2096 .tabbar-wrapper,
2097 .tabbar,
2098 .tabbar > li {
2099     height: 100%;
2100     /*margin-left: -15px;*/
2101     padding: 0;
2102 }
2103 #tabmenu .search-heading {
2104     overflow: hidden;
2105     text-overflow: ellipsis;
2106     white-space: nowrap;
2107 }
2108 ul.tabs {
2109     list-style: none;
2110     height: 100%;
2111     padding: 0;
2112     padding-top: 10px;
2113     margin: 0;
2114 }
2115 ul.tabs li {
2116     float: left;
2117     margin: 0;
2118     padding: 0;
2119     /*border-bottom: 0 solid #6fdbe8;*/
2120     border-bottom: 0 solid $link_color;
2121     font-size: 13px;
2122     height: 102%;
2123     transition: all .15s ease;
2124 }
2125 /*ul.tabs.visible-xs > li.active {
2126     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
2127 }*/
2128 ul.tabs li a {
2129     margin-left: 10px;
2130     margin-right: 10px;
2131     /*color: #6fdbe8;*/
2132     color: $link_color !important;
2133 }
2134 ul.tabs li:hover, ul.tabs li.active {
2135     border-bottom-width: 4px;
2136 }
2137 ul.tabbar ul.tabs-extended li.active {
2138     width: 100%;
2139     border-bottom-width: 2px;
2140 }
2141 ul.tabbar ul.tabs-extended li.active a {
2142     background: none;
2143 }
2144 ul.dropdown-menu li:hover {
2145     border-bottom-width: 0;
2146 }
2147
2148
2149 /* Dropdown Menu */
2150 .dropdown-menu li a,
2151 .dropdown-menu li .btn-link {
2152     font-size: 13px!important;
2153     font-weight: 600!important;
2154 }
2155 .dropdown-menu li > :hover,
2156 .dropdown-menu li > :visited,
2157 .dropdown-menu li > :focus {
2158     background: 0 0;
2159 }
2160
2161 .dropdown-menu li:first-child {
2162     margin-top: 3px;
2163 }
2164
2165 /* Notificaiotn badges */
2166 #mail-update-li.show {
2167     display: inline-block!important;
2168 }
2169
2170 /* Media Classes */
2171 .media .time,
2172 .media .shared-time,
2173 .media .delivery,
2174 .media .location,
2175 .media .location a {
2176     font-size: 11px;
2177     color: #bebebe;
2178 }
2179 .media-list > li {
2180     padding: 10px;
2181     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2182     position: relative;
2183 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
2184     border-left: 3px solid rgba(255,255,255,0);
2185     font-size: 12px;
2186 }
2187 .media-list > li:hover,
2188 .media-list > li.selected,
2189 .media-list > li.active {
2190     border-left: 3px solid $link_color;
2191     background-color: rgba(247, 247, 247, $contentbg_transp);
2192 }
2193
2194 /* Forms */
2195 .form-control {
2196     border: 2px solid #ededed;
2197     box-shadow: none;
2198 }
2199 .form-control:focus {
2200     /*border: 2px solid #6fdbe8;*/
2201     border: 2px solid $link_color;
2202     outline: 0;
2203     box-shadow: none;
2204 }
2205
2206
2207 .checkbox input[type="checkbox"]:focus + label::before,
2208 .checkbox input[type="radio"]:focus + label::before {
2209     /*border: 2px solid #6fdbe8;*/
2210     border: 2px solid $link_color;
2211     outline: 0;
2212     box-shadow: none;
2213 }
2214
2215 /* Search form */
2216 .form-control.form-search {
2217     border-radius: 30px;
2218     background-image: url(img/icon_search16x16.png);
2219     background-repeat: no-repeat;
2220     background-position: 10px 8px;
2221     padding-left: 34px;
2222 }
2223 .form-group-search {
2224     position: relative;
2225     width: 100%;
2226 }
2227
2228 .form-group-search .form-button-search {
2229     position: absolute;
2230     top: 4px;
2231     right: 4px;
2232     border-radius: 30px;
2233 }
2234 .search-input.form-control.form-search {
2235     width: 100%;
2236 }
2237 .search-heading {
2238     text-align: center;
2239     color: $link_color;
2240     font-size: 20px;
2241 }
2242 .search-content-wrapper > #search-header-wrapper {
2243     display: none;
2244 }
2245 .search-content-wrapper > .section-title-wrapper {
2246     display: none;
2247 }
2248 #navbar-button > #search-save {
2249     margin-top: 3px;
2250 }
2251 /* Section-Content-Wrapper */
2252 #search-header-wrapper {
2253     padding: 15px;
2254     padding-bottom: 20px;
2255     margin-bottom: 20px;
2256     border: none;
2257     /*background-color: #fff;*/
2258     background-color: rgba(255,255,255,$contentbg_transp);
2259     border-radius: 4px;
2260     position: relative;
2261     /*overflow: hidden;*/
2262     color: #555;
2263     box-shadow: 0 0 3px #dadada;
2264     -webkit-box-shadow: 0 0 3px #dadada;
2265     -moz-box-shadow: 0 0 3px #dadada;
2266 }
2267
2268 /* *******
2269  * PAGES
2270  *********/
2271
2272 .generic-page-wrapper, .videos-content-wrapper,
2273  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2274 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2275 .delegation-content-wrapper, .notes-content-wrapper,
2276 .message-content-wrapper, .apps-content-wrapper,
2277 #adminpage, .delegate-content-wrapper, .uexport-content-wrapper,
2278 .dfrn_request-content-wrapper,
2279 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2280 .profperm-content-wrapper, .invite-content-wrapper, .tos-content-wrapper,
2281 .fsuggest-content-wrapper {
2282     min-height: calc(100vh - 150px);
2283     padding: 15px;
2284     padding-bottom: 20px;
2285     margin-bottom: 20px;
2286     border: none;
2287     /*background-color: #fff;*/
2288     background-color: rgba(255,255,255,$contentbg_transp);
2289     border-radius: 4px;
2290     position: relative;
2291     /*overflow: hidden;*/
2292     color: #555;
2293     box-shadow: 0 0 3px #dadada;
2294     -webkit-box-shadow: 0 0 3px #dadada;
2295     -moz-box-shadow: 0 0 3px #dadada;
2296 }
2297 #content:hover .page-action.faded-icon {
2298     opacity: 0.8;
2299     transition: all 0.25s ease-in-out;
2300 }
2301 #content .page-action.faded-icon:hover {
2302     opacity: 1;
2303 }
2304
2305 .section-title-wrapper {
2306     overflow: hidden;
2307 }
2308 /* Home and Login Page */
2309 body.mod-home nav.navbar .nav>li>a:hover {
2310     background-color: rgba(255,255,255,0.2);
2311 }
2312 body.mod-home .navbar #nav-login,
2313 body.mod-login .navbar #nav-login {
2314     display: none;
2315 }
2316 /* Profile-page */
2317 #profile-content-standard,
2318 #profile-content-advanced {
2319     overflow: hidden;
2320 }
2321 #profile-menu {
2322     margin-top: 20px;
2323     margin-bottom: 20px;
2324 }
2325 .contact-block-div.forumlist-profile-advanced {
2326     float: left;
2327 }
2328
2329 /* contacts page */
2330 ul.viewcontact_wrapper {
2331     margin-left: -15px;
2332     margin-right: -15px;
2333 }
2334 ul.viewcontact_wrapper > li {
2335     padding-left: 15px;
2336 }
2337 .contact-wrapper {
2338 /*    padding: 10px;
2339     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2340     position: relative;*/
2341     /*border-left: 3px solid white;*/
2342 }
2343 .contact-wrapper .contact-photo-wrapper button {
2344     padding: 0;
2345 }
2346 .contact-wrapper.media {
2347     overflow: visible;
2348     word-wrap: break-word;
2349     margin-top: 0;
2350 }
2351 /* bootstrap hack for .media */
2352 .contact-wrapper.media .media-body {
2353     display: table-cell;
2354     width: 10000px;
2355     *width: auto;
2356     *zoom: 1;
2357 }
2358 .contact-wrapper.media:before, .media:after {
2359     content: "";
2360     display: table;
2361 }
2362 .contact-wrapper.media:after {
2363     clear: both;
2364 }
2365 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2366     height: 80px;
2367     width: 80px;
2368 }
2369 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2370     height: 48px;
2371     width: 48px;
2372 }
2373 .contact-wrapper .contact-photo-overlay-content.xl {
2374     font-size: 48px;
2375 }
2376 .contact-wrapper .contact-photo-menu {
2377     top: auto;
2378 }
2379
2380 .contact-entry-desc {
2381     color: #555;
2382 }
2383 .contact-entry-checkbox {
2384     margin-top: -20px;
2385 }
2386 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2387     font-weight: bold !important;
2388     color: $link_color;
2389     font-size: 15px !important;
2390 }
2391 .contact-wrapper .contact-actions {
2392     display: flex;
2393 }
2394 .contact-wrapper .contact-action-link,
2395 .contact-wrapper .contact-action-link:hover,
2396 .textcomplete-item .contact-wrapper .contact-action-link {
2397     padding: 0 5px;
2398     color: #555;
2399     border: 0;
2400 }
2401 .contact-wrapper .contact-action-link {
2402     opacity: 0.1;
2403     transition: all 0.25s ease-in-out;
2404 }
2405 ul li:hover .contact-wrapper .contact-action-link {
2406     opacity: 0.8;
2407     transition: all 0.25s ease-in-out;
2408 }
2409 ul li:hover .contact-wrapper .contact-action-link:hover {
2410     opacity: 1;
2411 }
2412 #contacts-search-wrapper,
2413 #directory-search-wrapper{
2414     padding: 10px 0;
2415 }
2416 #contact-drop-confirm .contact-actions,
2417 #contact-drop-confirm .contact-photo-overlay,
2418 #contact-drop-confirm .contact-photo-menu {
2419     display: none;
2420 }
2421 #contact-drop-confirm #confirm-form {
2422     margin-top: 20px;
2423 }
2424
2425 /* contact-edit */
2426 #contact-edit-actions {
2427     position: absolute;
2428 }
2429 #contact-edit-status-wrapper {
2430     border: none;
2431     background-color: #E1F5FE;
2432     margin: 15px -15px;
2433 }
2434 #contact-edit-tools {
2435     margin-left: -15px;
2436     margin-right: -15px;
2437 }
2438 #contact-edit-tools > .panel {
2439     padding-left: 15px;
2440     padding-right: 15px;
2441 }
2442 #contact-edit-settings {
2443     display: block;
2444     margin: 0;
2445 }
2446
2447 /* directory page */
2448 #directory-search-heading {
2449     padding-top: 10px;
2450 }
2451
2452 /* group edit page */
2453 .group-actions {
2454     margin-top: 4px;
2455     margin-bottom: 10px;
2456     font-size: 30px;
2457 }
2458 .group-actions button,
2459 .group-actions a {
2460     font-size: 18px;
2461 }
2462
2463 .contact-group-actions .fa-times-circle { color: #D00000;}
2464 .contact-group-actions .fa-plus-circle { color: #008000;}
2465
2466 #group-edit-wrapper {
2467     margin-top: 14px;
2468     display: none;
2469 }
2470 #group-edit-header {
2471     display: block;
2472 }
2473 #group-update-wrapper .contact-photo-overlay {
2474     display: none;
2475 }
2476 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2477     height: 100%;
2478     margin-top: -10px;
2479     display: flex;
2480 }
2481 #group-update-wrapper .viewcontact_wrapper .contact-group-link {
2482     opacity: 0.8;
2483     font-size: 20px;
2484     line-height: 50px;
2485 }
2486 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2487     opacity: 1;
2488 }
2489 #group-update-wrapper .shortmode {
2490     height: 53px;
2491     overflow: hidden;
2492 }
2493 #group-update-wrapper .shortmode .contact-photo {
2494     height: 32px;
2495     width: 32px;
2496 }
2497 #group-update-wrapper .shortmode .media {
2498     overflow: hidden;
2499 }
2500 #group-update-wrapper .shortmode .contact-entry-desc {
2501     font-size: 12px !important;
2502 }
2503 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2504     margin: 0;
2505 }
2506 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2507     font-size: 13px !important;
2508     white-space: nowrap;
2509 }
2510 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2511 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2512     display: none;
2513 }
2514
2515 /* private mail */
2516 .message-content-wrapper > li {
2517 /* we need this overwriting because we have no template file
2518    for the general mail page /message
2519 */
2520     list-style-type: none;
2521 }
2522 .mail-thread {
2523     max-height: calc(100vh - 200px);
2524 }
2525 #mail-conversation {
2526     overflow-y: auto;
2527     max-height: calc(100vh - 400px);
2528     max-height: auto;
2529     /*height: 500px;*/
2530     margin-bottom: 0px;
2531     padding: 0 15px;
2532 }
2533 #mail-conversation.can-reply {
2534 /*    border-bottom-left-radius: 0px;
2535     border-bottom-right-radius: 0px;*/
2536 }
2537 .mail-conv-wrapper .media .contact-photo-wrapper img {
2538     height: 48px;
2539     width: 48px;
2540 }
2541 .mail-thread #prvmail-to-label,
2542 .mail-thread #prvmail-subject-label {
2543     display: none;
2544 }
2545 .mail-thread #prvmail-message-label > label {
2546     display:none;
2547 }
2548 .mail-thread #prvmail-message-label textarea {
2549 /*    border-top: none;
2550     margin-top: -10px;
2551     border-top-left-radius: 0px;
2552     border-top-right-radius: 0px;*/
2553     max-height: 120px;
2554 }
2555 .mail-conv-wrapper {
2556     padding: 15px 0;
2557     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2558 }
2559 #message-sidebar {
2560     height: calc(100vh - 150px);
2561 }
2562 #message-preview {
2563     /*padding: 0 10px;*/
2564     height: calc(100% - 20px);
2565 }
2566 #message-preview ul {
2567     margin: 0px;
2568 }
2569 #message-preview .media-list li {
2570     padding: 0px 10px;
2571     border: none;
2572 }
2573 #message-preview .media-list li:hover {
2574     border-left: none !important;
2575 }
2576 #message-preview .media-list li a {
2577     color: $link_color;
2578 }
2579 .mail-list-outside-wrapper {
2580     padding: 5px 0;
2581     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2582 }
2583 .mail-list-outside-wrapper .contact-photo-wrapper img {
2584     height: 48px;
2585     width: 48px;
2586 }
2587 #prvmail-end {
2588     clear:both;
2589 }
2590 #modal #prvmail-text-edit-bb .bb-img {
2591     display: none;
2592 }
2593
2594 /* photos */
2595 #photo-album-edit-name-label {
2596     width: 100%;
2597 }
2598 .photo-album-edit-name {
2599     width: 60%;
2600 }
2601
2602 .photo-album-actions {
2603     margin-bottom: 10px;
2604 }
2605 .photo-album-actions .photos-order-link {
2606     float: right;
2607 }
2608 /* poke */
2609 #poke-desc {
2610     margin: 5px 0 30px;
2611 }
2612 #poke-wrapper-end {
2613     clear: both;
2614 }
2615
2616 /* Events page */
2617
2618 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2619     color: $link_hover_color;
2620 }
2621 .fc .fc-list-item-title a {
2622     color: $link_color;
2623 }
2624 .fc .fc-list-item-title a[href]:hover {
2625     color: $link_hover_color;
2626     text-decoration: none;
2627 }
2628 /*.event-date-wrapper.medium .event-hover-short-month {
2629     color: $link_color;
2630 }*/
2631 .event-wrapper .event-owner {
2632   margin-bottom: 15px;
2633 }
2634 .event-wrapper .event-owner img {
2635     display: block;
2636 }
2637 .event-owner img {
2638     margin-right: 5px;
2639     height: 48px;
2640     width:  48;
2641     border-radius: 3px;
2642 }
2643 .event-wrapper .vevent {
2644     margin-left: 0;
2645     margin-right: 0;
2646     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2647 }
2648 .event-wrapper .event-buttons {
2649     margin-top: 15px;
2650 }
2651 #event-form-wrapper {
2652     padding-top: 5px;
2653 }
2654 #event-edit-form-wrapper {
2655     padding-top: 15px;
2656 }
2657 #event-nav a {
2658     color: #555;
2659 }
2660 #event-edit-form-wrapper #event-edit-time {
2661     padding: 10px 0;
2662 }
2663 .event-buttons .plink-event-link {
2664     margin-left: 20px;
2665 }
2666 .vevent .event-summary {
2667     font-size: 16px;
2668 }
2669 .vevent .event-description {
2670     padding: 10px 0;
2671 }
2672 .vevent .event-location .location {
2673     font-size: inherit;
2674     color: inherit;
2675 }
2676 .modal-body .vevent .event-summary {
2677     display: none;
2678 }
2679 #event-preview .vevent .event-summary {
2680     display: block;
2681 }
2682
2683 /* Event Cards */
2684 .event-card-details, .event-card-header {
2685     width: 100%;
2686 }
2687 .event-card-header, .event-card-left-date {
2688     float: left;
2689 }
2690 .vevent .event-card-header {
2691     display: table;
2692 }
2693 .event-card-left-date {
2694     width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
2695 }
2696 .event-card .event-date-wrapper > span {
2697     display: block;
2698     overflow: hidden;
2699     text-align: center;
2700     white-space: nowrap;
2701 }
2702 .event-card .event-date-wrapper .event-card-short-month {
2703     font-size: 13px;
2704     text-transform: uppercase;
2705 }
2706 .event-card .event-date-wrapper.medium .event-card-short-date {
2707     font-size: 24px;
2708     line-height: 28px;
2709     margin-top: 2px;
2710 }
2711 .event-card .event-card-content {
2712     width: 100%;
2713     padding: 0 5px 0 15px;
2714     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2715     color: #777;
2716     position: relative;
2717 }
2718 .event-card .event-card-content .event-map-btn {
2719     position: absolute;
2720     right: 0;
2721     top:0;
2722     line-height: 15px;
2723 }
2724 .event-card .event-card-title {
2725     font-size: 14px;
2726     color: #555;
2727     line-height: 15px;
2728     font-weight: bold;
2729     margin: 0;
2730 }
2731 .event-card .event-card-location {
2732     margin-top: 10px;
2733     font-size: 13px;
2734 }
2735 .event-card .event-card-location br {
2736     content: " ";
2737 }
2738 .event-card .event-card-location br::after {
2739     content: " ";
2740 }
2741 .event-card-profile-name a {
2742     color: $link_color;
2743 }
2744 .event-card-profile-name a:hover {
2745     color: $link_hover_color;
2746 }
2747 .event-card .event-card-content .event-location-map {
2748     position: absolute;
2749     left: -9999px;
2750     top: -9999px;
2751 }
2752 .event-card .event-card-content .event-location-map .map{
2753     margin-top: 10px;
2754 }
2755 .event-card .description {
2756     margin-top: 10px;
2757     box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, .1) inset;
2758 }
2759 /* Photos Pages */
2760 #photo-photo {
2761     position: relative;
2762 }
2763 .photo-next-link, .photo-prev-link {
2764     height: 64px;
2765     margin-top: -32px;
2766     opacity: 0;
2767     position: absolute;
2768     top: 50%;
2769     transform: translateZ(0);
2770     transition: opacity .2s;
2771     /*width: 27px;*/
2772     width: 100px;
2773     z-index: 11;
2774     font-size: 64px;
2775     color: #fff;
2776     text-shadow:
2777         -1px -1px 0 #000,
2778         1px -1px 0 #000,
2779         -1px 1px 0 #000,
2780         1px 1px 0 #000;
2781 }
2782 .photo-next-link > i, .photo-prev-link > i {
2783     vertical-align: super;
2784 }
2785 .photo-next-link > i {
2786     float: right;
2787 }
2788 .photo-prev-link {
2789     left: 20px;
2790 }
2791 .photo-next-link {
2792     right: 20px;
2793 }
2794 #photo-photo:hover .photo-next-link,
2795 #photo-photo:hover .photo-prev-link {
2796     opacity: 0.4;
2797 }
2798 #photo-photo .photo-next-link:hover,
2799 #photo-photo .photo-prev-link:hover {
2800     opacity: 1;
2801     color: #fff;
2802 }
2803 .photo-comment-wrapper .comment {
2804     position: relative;
2805 }
2806 .photo-comment-wrapper .wall-item-content {
2807     color: #555;
2808     font-size: 13px;
2809 }
2810 .photo-comment-wrapper .comment-wwedit-wrapper,
2811 .photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
2812     margin-top: 15px;
2813 }
2814
2815 /* Profiles Page */
2816 .profile-listing-table {
2817     display: table;
2818     width: 100%;
2819 }
2820 .profile-listing-row {
2821     display: table-row;
2822 }
2823 .profile-listing-cell {
2824     display: table-cell;
2825 }
2826 .profile-listing-photo {
2827     width: 48px;
2828     height: 48px;
2829     margin: 10px 0px;
2830 }
2831 #profile-listing-new-link-wrapper {
2832     margin-bottom: 20px;
2833 }
2834
2835 .panel-group-settings > .panel,
2836 .panel-group-settings > form > .panel {
2837     padding-left: 10px;
2838     padding-right: 10px;
2839 }
2840 #profile-photo-upload-section {
2841     display: none;
2842     padding: 10px;
2843 }
2844 #profile-photo-upload-close {
2845     font-size: 14px;
2846 }
2847
2848 /* Settings */
2849 .section-subtitle-wrapper {
2850     padding: 1px 10px;
2851 }
2852 details.profile-jot-net[open] summary:before, .panel .section-subtitle-wrapper a.accordion-toggle:before {
2853     font-family: ForkAwesome;
2854     content: "\f0d7";
2855     padding-right: 5px;
2856 }
2857 details.profile-jot-net summary:before, .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2858     font-family: ForkAwesome;
2859     content: "\f0da";
2860 }
2861 details.profile-jot-net summary:before {
2862     padding-right: 5px;
2863     padding-left: 3px;
2864 }
2865 details.profile-jot-net[open] summary:before {
2866     padding-right: 5px;
2867     padding-left: 0px;
2868 }
2869 #settings-nick-wrapper {
2870     margin-bottom: 20px;
2871 }
2872 .group {
2873     margin-left: 20px;
2874 }
2875
2876 /* Emulates Bootstrap display */
2877 .settings-block {
2878     margin: 0 -15px 5px;
2879     color: #333;
2880     background-color: rgba(255,255,255,0.95);
2881     border-radius: 4px;
2882     padding: 10px 15px;
2883     box-shadow: 0 0 3px #dadada;
2884     -webkit-box-shadow: 0 0 3px #dadada;
2885     -moz-box-shadow: 0 0 3px #dadada;
2886 }
2887
2888 .settings-block.fakelink, .settings-block > .fakelink {
2889     padding: 10px 25px;
2890     display: block;
2891 }
2892 .settings-block > .fakelink {
2893     margin: -10px -15px 10px -15px;
2894     border-radius: 4px 4px 0 0;
2895 }
2896
2897 .settings-block.fakelink:hover, .settings-block > .fakelink:hover {
2898     color: $link_hover_color;
2899 }
2900 .settings-block.fakelink > h3, .settings-block > .fakelink > h3 {
2901     margin: 0;
2902     padding: 0;
2903     color: $link_color;
2904     font-size: 18px;
2905 }
2906
2907 .fakelink > h3:before {
2908     padding-right: 10px;
2909 }
2910 .widget.fakelink > h3:before,
2911 .settings-block.fakelink > h3:before {
2912     font-family: ForkAwesome;
2913     content: "\f0da"; /* Right Plain Pointer */
2914 }
2915 .widget > .fakelink > h3:before,
2916 #sidebar-group-header > .fakelink > h3:before,
2917 .settings-block > .fakelink > h3:before {
2918     font-family: ForkAwesome;
2919     content: "\f0d7"; /* Bottom Plain Pointer */
2920 }
2921
2922 h3.connector {
2923     line-height: 40px;
2924 }
2925
2926 /* Intro Notifications */
2927 ul.notif-network-list {
2928     margin-left: -15px;
2929     margin-right: -15px;
2930 }
2931 ul.notif-network-list > li {
2932     padding-left: 15px;
2933     padding-right: 15px;
2934 }
2935 .intro-wrapper.media {
2936     overflow: visible;
2937     word-wrap: break-word;
2938     margin-top: 0;
2939 }
2940 .intro-photo-wrapper img.intro-photo {
2941     height:80px;
2942     width: 80px;
2943     border-radius: 4px;
2944 }
2945 .intro-actions {
2946     display: flex;
2947 }
2948 .intro-enty-name h4 {
2949     font-size: 15px !important;
2950 }
2951 .intro-wrapper button.intro-action-link {
2952     opacity: 0.1;
2953     transition: all 0.25s ease-in-out;
2954 }
2955 .intro-wrapper button.intro-action-link,
2956 .intro-wrapper button.intro-action-link:hover {
2957     padding-right: 5px;
2958     padding-left: 5px;
2959     color: #555;
2960 }
2961 ul li:hover .intro-wrapper button.intro-action-link {
2962     opacity: 0.8;
2963     transition: all 0.25s ease-in-out;
2964 }
2965 ul li:hover .intro-wrapper button.intro-action-link:hover {
2966     opacity: 1;
2967 }
2968 .intro-action-buttons {
2969     margin-top: 15px;
2970     /*display: none;*/
2971     max-height: 0px;
2972     overflow: hidden;
2973     transition: max-height 0.1s ease-out;
2974 }
2975 ul.notif-network-list > li:hover .intro-action-buttons {
2976     /*display: block;*/
2977     max-height: 30px;
2978     transition: max-height 0.1s ease-in;
2979 }
2980 .intro-desc-label, .intro-url-label, .intro-network-label,
2981 .intro-location-label, .intro-keywords-label,
2982 .intro-about-label, .intro-knowyou-label, .intro-madeby-label {
2983     font-weight: bold;
2984 }
2985 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2986 .intro-contact-info.xs .intro-location-label,
2987 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2988 .intro-contact-info.xs .intro-knowyou-label {
2989     display: block;
2990     margin-top: 5px
2991 }
2992
2993 /* Notifications Page */
2994 ul.notif-network-list li.unseen {
2995     background-color: #e3eff3;
2996 }
2997 .notif-item img.notif-image {
2998     height: 48px;
2999     width: 48px;
3000     border-radius: 4px;
3001 }
3002 .notif-item .notif-desc-wrapper {
3003     height: 48px;
3004 }
3005 .notif-item .notif-desc-wrapper a {
3006     height: 100%;
3007     display: block;
3008     color: #555;
3009     font-size: 13px;
3010     font-weight: 600;
3011 }
3012
3013 /* Search Page */
3014
3015 /* This is a little bit hacky. Since the search page is used for diferent
3016 content types we can't apply the generic-page-wrapper class.
3017 So we apply the css of the generic-page-wrapper class to the ul element with some
3018 little modifications to emulate a standard page template */
3019 .search-content-wrapper > ul.viewcontact_wrapper {
3020     min-height: calc(100vh - 150px);
3021     padding-top: 15px;
3022     padding-bottom: 20px;
3023     margin: 0;
3024     margin-bottom: 20px;
3025     border: none;
3026     /*background-color: #fff;*/
3027     background-color: rgba(255,255,255,$contentbg_transp);
3028     border-radius: 4px;
3029     position: relative;
3030     /*overflow: hidden;*/
3031     color: #555;
3032     box-shadow: 0 0 3px #dadada;
3033     -webkit-box-shadow: 0 0 3px #dadada;
3034     -moz-box-shadow: 0 0 3px #dadada;
3035 }
3036
3037 /* Help Page */
3038 section.help-content-wrapper h1 {
3039     padding-bottom: 0.3em;
3040     font-size: 1.8em;
3041     border-bottom: 1px solid #ddd;
3042 }
3043 section.help-content-wrapper h2 {
3044     padding-bottom: 0.3em;
3045     font-size: 1.5em;
3046     border-bottom: 1px solid #ddd;
3047 }
3048 section.help-content-wrapper h3 {
3049     font-size: 1.2em;
3050 }
3051 section.help-content-wrapper h4 {
3052     font-size: 1em;
3053 }
3054 section.help-content-wrapper h1,
3055 section.help-content-wrapper h2,
3056 section.help-content-wrapper h3,
3057 section.help-content-wrapper h4,
3058 section.help-content-wrapper h5,
3059 section.help-content-wrapper h6 {
3060     margin-top: 24px;
3061     margin-bottom: 16px;
3062     font-weight: 600;
3063     line-height: 1.25;
3064 }
3065 section.help-content-wrapper p {
3066     margin: 0.4em 0;
3067 }
3068 section.help-content-wrapper p,
3069 section.help-content-wrapper a,
3070 section.help-content-wrapper li {
3071     line-height: 1.6;
3072     font-size: 0.96em;
3073 }
3074
3075 /*Admin Page*/
3076 #adminpage #frio_background_image .image-select {
3077     display: none;
3078 }
3079 #adminpage #frio_background_image.input-group {
3080     display: block;
3081 }
3082 #admin-summary-wrapper {
3083     padding-top: 10px;
3084 }
3085 #adminpage ul#addonslist, li.addon {
3086     list-style: none;
3087 }
3088 #adminpage li .icon {
3089     display: inline-block;
3090     vertical-align: text-top;
3091     position: relative;
3092     padding-left: 5px;
3093 }
3094 #adminpage li .icon:before {
3095     content: "";
3096     display: inline-block;
3097     position: absolute;
3098     width: 17px;
3099     height: 17px;
3100     left: 0;
3101     margin-left: -20px;
3102     margin-top: 2px;
3103     border: 1px solid #cccccc;
3104     border-radius: 3px;
3105     background-color: #fff;
3106     -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3107     -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3108     transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3109 }
3110 #adminpage li .icon.on:after {
3111     font-family: "ForkAwesome";
3112     content: "\f00c";
3113     display: inline-block;
3114     position: absolute;
3115     width: 16px;
3116     height: 16px;
3117     left: 0;
3118     top: 0;
3119     margin-left: -20px;
3120     margin-top: 2px;
3121     padding-left: 3px;
3122     padding-top: 1px;
3123     font-size: 11px;
3124     color: #555555;
3125 }
3126 #adminpage .addon .desc {
3127     padding-left: 10px;
3128 }
3129 .adminpage .admin-settings-action-link,
3130 .adminpage .admin-settings-action-link:hover {
3131     color: #555;
3132 }
3133 .adminpage .admin-settings-action-link:hover {
3134     opacity: 1;
3135 }
3136 .adminpage .admin-settings-action-link {
3137     opacity: 0.8;
3138 }
3139 #admin-users tr.blocked {
3140     background-color: #f8efc0;
3141 }
3142 .adminpage .table-hover > tbody > tr:hover + tr.details {
3143     background-color: #f5f5f5;
3144 }
3145 .offset-anchor::before {
3146     display: block;
3147     content: " ";
3148     margin-top: -100px;
3149     height: 100px;
3150     visibility: hidden;
3151     pointer-events: none;
3152 }
3153
3154 /* Manage Page */
3155 #identity-selector-wrapper {
3156     width: auto;
3157     height: auto;
3158     margin-top: 20px;
3159 }
3160 #identity-selector-wrapper .identity-match-photo {
3161     width: auto;
3162     float: none;
3163 }
3164 #identity-selector-wrapper .identity-match-photo button {
3165     position: relative;
3166 }
3167 #identity-selector-wrapper .identity-match-photo .badge {
3168     position: absolute;
3169     top: -8px;
3170     right: -8px;
3171 }
3172 #identity-selector-wrapper .identity-match-name {
3173     text-align: center;
3174 }
3175 #identity-selector-wrapper .identity-match-details {
3176     width: auto;
3177     float: none;
3178 }
3179
3180 /* Register Page */
3181 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
3182     margin-top: 20px;
3183 }
3184 #register-openid-end, #register-nickname-end
3185 {
3186     margin-top: 40px;
3187 }
3188
3189 /*
3190 * Overwriting for transparency and other colors
3191 */
3192 main .nav-tabs>li.active>a,
3193 main .nav-tabs>li.active>a:focus,
3194 main .nav-tabs>li.active>a:hover {
3195     background-color: rgba(255,255,255,$contentbg_transp);
3196 }
3197
3198 /*
3199  * Modal
3200  */
3201 .modal hr {
3202     border-color: #eee;
3203 }
3204
3205 /*
3206  * Framework overwrite
3207  */
3208
3209 /* textcomplete for contact filtering*/
3210 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
3211     position: relative !important;
3212     top: inherit !important;
3213     bottom: inherit !important;
3214     left: inherit !important;
3215     padding: 0;
3216     margin-left: -15px;
3217     margin-right: -15px;
3218     background-color: transparent;
3219     box-shadow: none;
3220     border: none;
3221 }
3222 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
3223     padding-left: 15px;
3224     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
3225 }
3226 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
3227     display: none;
3228 }
3229 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
3230 .textcomplete-item > a {
3231     padding: 0 !important;
3232     border-left: none;
3233     background-color: transparent !important;
3234 }
3235 /* this is a little hack for texcomplete contact filter
3236 There are for some reasons empty <a> tags. I don't know why */
3237 .textcomplete-item .contact-wrapper a {
3238     padding: 0;
3239 }
3240
3241 /* hovercard fix */
3242 body .tread-wrapper .hovercard a,
3243 body .tread-wrapper .hovercard a:hover {
3244     color: $link_color;
3245 }
3246 body .tread-wrapper .hovercard:hover .hover-card-content a {
3247     color: $link_color !important;
3248 }
3249
3250 /* Pagination improvements */
3251 .pagination {
3252     text-align: center;
3253     display: block;
3254 }
3255 .pagination > li > a,
3256 .pagination > li > span {
3257     color: $link_color;
3258     float: none;
3259 }
3260 .pagination>li>a:hover,
3261 .pagination>li>span:hover {
3262     color: $link_hover_color;
3263 }
3264 .pagination > .active > a,
3265 .pagination > .active > a:focus,
3266 .pagination > .active > a:hover,
3267 .pagination > .active > span,
3268 .pagination > .active > span:focus,
3269 .pagination > .active > span:hover {
3270     background-color: $link_color;
3271     border-color: $link_color;
3272     border-radius: 3px;
3273 }
3274 .pagination li.pager_n a {
3275     margin-left: 3px;
3276     border-radius: 3px;
3277 }
3278 .pagination .pager_prev a {
3279     margin-left: -5px;
3280     margin-right: 4px;
3281     border-top-right-radius: 3px;
3282     border-bottom-right-radius: 3px;
3283 }
3284 .pagination .pager_next a {
3285     margin-left: 4px;
3286     margin-right: -5px;
3287     border-top-left-radius: 3px;
3288     border-bottom-left-radius: 3px;
3289 }
3290 .pager .next > a,
3291 .pager .previous > a {
3292     float: none;
3293     border-radius: 3px;
3294 }
3295 .pagination .disabled > a,
3296 .pager .disabled > a {
3297     display: none;
3298 }
3299
3300 /*
3301  * some temporary workarounds until this will solved
3302  * elsewhere (e.g. new templates)
3303  */
3304 section .profile-match-wrapper {
3305     float: left;
3306 }
3307
3308 /**
3309  * Login page
3310  */
3311 #login-submit-wrapper {
3312     float: right;
3313 }
3314 #lost-password-link { flex-grow: 2; }
3315 #login-lost-password-link {
3316     margin-bottom: 10px;
3317     float: right;
3318 }
3319 #div_id_remember {
3320     float: left;
3321 }
3322 #id_password_wrapper {
3323     margin-bottom: unset;
3324 }
3325 #login_openid {
3326     clear: both;
3327 }
3328 #register-link {
3329     color: white;
3330     background: #8ad0a1;
3331     width: 100%;
3332 }
3333 #login-end {
3334     clear: both;
3335 }
3336
3337 .mod-home.is-not-singleuser,
3338 .mod-login {
3339     background-color: $login_bg_color;
3340     background-image: linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0.4)), url($login_bg_image);
3341     background-size: cover;
3342     background-attachment: fixed;
3343     background-position: center;
3344     padding-top: 0;
3345 }
3346 .mod-home.is-not-singleuser nav.navbar,
3347 .mod-login nav.navbar { background-color: transparent }
3348 .mod-home.is-not-singleuser #topbar-second,
3349 .mod-login #topbar-second {
3350     background-color: transparent;
3351     box-shadow: unset;
3352     border: 0
3353 }
3354 .mod-home.is-not-singleuser .login-content,
3355 .mod-login .login-content {
3356     color: #eee;
3357     margin-top: 2.5%;
3358 }
3359
3360 .mod-home.is-not-singleuser .login-form > #login-extra-links {
3361     margin-top: 4em;
3362 }
3363
3364 .mod-home.is-not-singleuser .login-form > #login-form label,
3365 .mod-login #content #login-form label {
3366     color: #eee;
3367 }
3368
3369 .mod-home.is-not-singleuser .login-panel-content,
3370 .mod-login .login-panel-content {
3371     background-color: rgba(255,255,255,.85);
3372 }
3373
3374 .qq-upload-button {
3375     background: $nav_bg !important;
3376     color: $btn_primary_color !important;
3377     float: none;
3378     border: none;
3379     -webkit-box-shadow: none;
3380     box-shadow: none;
3381     -moz-box-shadow: none;
3382     background-image: none;
3383     text-shadow: none;
3384     border-radius: 3px;
3385     margin-bottom: 0;
3386     font-size: 14px;
3387     font-weight: 600;
3388     padding: 8px 16px;
3389     color: inherit;
3390     width: 100% !important;
3391 }
3392
3393 .qq-upload-drop-area {
3394     background: white !important;
3395     float: none;
3396     border: none;
3397     -webkit-box-shadow: none;
3398     box-shadow: none;
3399     -moz-box-shadow: none;
3400     background-image: none;
3401     text-shadow: none;
3402     border-radius: 3px;
3403     margin-bottom: 0;
3404     font-size: 14px;
3405     font-weight: 600;
3406     padding: 8px 16px;
3407     color: inherit;
3408     width: 100% !important;
3409     display: block !important;
3410     position: relative !important;
3411     border: black 1px dashed !important;
3412     margin-bottom: 5px !important;
3413     margin-top: 15px !important;
3414 }
3415
3416 /* Medium devices (desktops, 992px and up) */
3417 @media (min-width: 992px) {
3418     .mod-home.is-not-singleuser #content,
3419     .mod-login #content {
3420         margin-top: 100px!important;
3421     }
3422
3423     .mod-home.is-not-singleuser .login-form > #login-form,
3424     .mod-home.is-not-singleuser .login-form > #login-extra-links,
3425     .mod-login #content #login-form {
3426         background-color: #fff;
3427         padding: 1em;
3428         position: relative;
3429     }
3430     .mod-home.is-not-singleuser .login-form > #login-extra-links {
3431         margin-top: unset;
3432         background-color: white;
3433     }
3434
3435     .mod-home.is-not-singleuser .login-form > #login-form label,
3436     .mod-login #content #login-form label {
3437         color: #444;
3438     }
3439
3440     .mod-home.is-not-singleuser .login-form::before,
3441     .mod-login #content #login-form::before {
3442         display: block;
3443         position: absolute;
3444         content: " ";
3445         background-color: rgba(255,255,255,0.1);
3446         width:90%;
3447         height: 110%;
3448         top: -5%;
3449         left: 5%;
3450         z-index: -1;
3451     }
3452
3453     .mod-home.is-not-singleuser .login-form::after,
3454     .mod-login #content #login-form::after {
3455         display: block;
3456         position: absolute;
3457         content: " ";
3458         background-color: rgba(255,255,255,0.2);
3459         width:80%;
3460         height: 120%;
3461         top: -10%;
3462         left: 10%;
3463         z-index: -1;
3464     }
3465
3466 }
3467
3468 /* Mobile display */
3469 @media (max-width: 600px) {
3470         body {
3471                 padding-top: 95px;
3472         }
3473     body.minimal {
3474         padding: 15px;
3475     }
3476
3477     #friendica-logo-mask {
3478                 display: none;
3479         }
3480
3481         .container {
3482                 padding-right: 0;
3483                 padding-left: 0;
3484         }
3485
3486         .panel {
3487                 border-radius: 0;
3488                 margin-bottom: 5px;
3489         }
3490
3491         .panel .panel-body {
3492                 padding: 10px;
3493         }
3494
3495     .toplevel_item > .wall-item-container {
3496         padding: 0;
3497     }
3498
3499         .wall-spacer {
3500                 height: 0px;
3501         }
3502
3503         .wall-item-actions {
3504                 margin-top: 10px;
3505         }
3506
3507         .media {
3508                 margin-top: 0;
3509         }
3510
3511         .preferences {
3512                 right: 10px;
3513         }
3514
3515         .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 {
3516                 border-radius: 0;
3517                 padding: 10px;
3518         }
3519
3520         .row {
3521                 margin-right: 0;
3522         }
3523
3524         .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 {
3525                 padding-right: 0;
3526         }
3527
3528         .wwto .contact-photo {
3529                 height: 19px;
3530                 padding: 0;
3531                 top: 24px;
3532                 left: 24px;
3533         }
3534
3535         /*
3536                 Prevent automatic zoom on input focus on iOS
3537                 see https://stackoverflow.com/a/16255670
3538         */
3539         .form-control {
3540                 font-size: 16px;
3541         }
3542
3543     .wall-item-container.thread_level_3,
3544     .wall-item-container.thread_level_4,
3545     .wall-item-container.thread_level_5,
3546     .wall-item-container.thread_level_6,
3547     .wall-item-container.thread_level_7 {
3548         margin-left: 5px;
3549     }
3550 }