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