]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
[frio] Mobile: force input font size to 16px
[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: 12.5px;
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: 8px 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: 12px 12px;
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 #photo-edit-link-wrap {
962     color: #555;
963     margin-bottom: 15px;
964 }
965 .nav-pills.preferences .dropdown .dropdown-toggle,
966 .nav-pills.preferences > li > .btn {
967     color: #bebebe;
968 }
969 .nav-pills.preferences .dropdown.open .dropdown-toggle,
970 .nav-pills.preferences .dropdown.open .dropdown-toggle:hover {
971     background-color: $nav_bg;
972 }
973
974 .nav-pills.preferences .dropdown .dropdown-toggle,
975 .nav-pills.preferences > li > .btn {
976     padding: 2px 10px;
977 }
978
979 #newmember-tab > a {
980   font-size: 1.2em;
981   font-weight: 800;
982 }
983
984 /*
985  * Aside
986  *
987  */
988
989 aside .widget,
990 .nav-container .widget {
991     border: none;
992     color: #777;
993     /*background-color: #fff;*/
994     background-color: rgba(255,255,255,$contentbg_transp);
995     box-shadow: 0 0 3px #dadada;
996     -webkit-box-shadow: 0 0 3px #dadada;
997     -moz-box-shadow: 0 0 3px #dadada;
998     border-radius: 4px;
999     position: relative;
1000     margin-bottom: 20px;
1001     padding: 10px;
1002     font-size: 13px;
1003     overflow: auto;
1004 }
1005 aside .widget h3,
1006 .nav-container .widget h3 {
1007     font-weight: bold;
1008     font-size: 16px;
1009     margin: 0;
1010     padding-bottom: 20px;
1011 }
1012
1013 aside .widget ul,
1014 .nav-container .widget ul {
1015     padding: 0px;
1016     margin-top: 0px;
1017     margin-bottom: 0px;
1018     margin-left: -10px;
1019     margin-right: -10px;
1020     /*padding-left: 10px;*/
1021     list-style: none;
1022 }
1023
1024 aside .widget li,
1025 .nav-container .widget li {
1026     padding-top: 2px;
1027     padding-bottom: 2px;
1028     padding-left: 20px;
1029     padding-right: 10px;
1030 }
1031 aside .widget li:hover,
1032 aside .widget li.selected,
1033 .nav-container .widget li:hover {
1034     z-index: 2;
1035     color: #555;
1036     /*background-color: #f7f7f7;*/
1037     background-color: rgba(247, 247, 247, $contentbg_transp);
1038     /*border-left: 3px solid #6fdbe8!important;*/
1039     border-left: 3px solid $link_color !important;
1040     padding-left: 17px;
1041 }
1042 aside .widget li a,
1043 aside .widget li a:hover {
1044     color: #555;
1045 }
1046
1047 /* forumlist widget */
1048 aside > #datebrowse-sidebar li.posted-date-selector-months {
1049     margin-bottom: 10px;;
1050     padding: 0;
1051     width: 100%
1052 }
1053 aside > #datebrowse-sidebar li.posted-date-selector-months:hover {
1054     border-left: none !important;
1055     background-color: transparent !important;
1056 }
1057 aside > #datebrowse-sidebar .posted-date-selector-months > ul {
1058     margin: 0;
1059 }
1060 aside > #datebrowse-sidebar .posted-date-selector-months > ul > li{
1061     padding-left: 30px;
1062 }
1063 aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover{
1064     padding-left: 27px;
1065 }
1066
1067 /* help page widget */
1068 aside > .help-content-wrapper code, .help-aside-wrapper code {
1069     display: inline
1070 }
1071 aside > .help-aside-wrapper p strong:first-child {
1072     display: block;
1073     margin: 1em 0 0em;
1074 }
1075 aside > .help-aside-wrapper h1 {
1076     font-weight: bold;
1077     font-size: 16px;
1078     margin: 0;
1079     padding: 20px 0 10px;
1080 }
1081 aside > .help-aside-wrapper h2 {
1082     font-weight: bold;
1083     font-size: 14px;
1084 }
1085
1086 /* vcard / h-card */
1087 aside .vcard #profile-photo-wrapper{
1088     margin: 0;
1089 }
1090 aside .vcard img.u-photo,
1091 aside img.vcard-photo {
1092     width: 100%;
1093     border-radius: 3px;
1094 }
1095 aside .vcard .tool .action{
1096     position: absolute;
1097     top:20px;
1098     right: 20px;
1099     font-size: 32px;
1100     width: 45px;
1101     height: 45px;
1102     background: rgba(0,0,0,.50);
1103     text-align: center;
1104     border-radius: 3px;
1105     opacity: 0;
1106     -webkit-transition: all 0.25s ease-in-out;
1107     -moz-transition: all 0.25s ease-in-out;
1108     -o-transition: all 0.25s ease-in-out;
1109     -ms-transition: all 0.25s ease-in-out;
1110     transition: all 0.25s ease-in-out;
1111 }
1112 aside .vcard .tool a {
1113     color: rgba(255,255,255,.85);
1114 }
1115 aside .vcard #profile-photo-wrapper:hover .tool .action {
1116     opacity: 1;
1117 }
1118 aside .vcard #profile-photo-wrapper.crop-preview {
1119     padding: 0;
1120 }
1121 aside .vcard .profile-header {
1122     padding: 5px 0px 20px 0px;
1123 }
1124 aside .vcard .fn {
1125     font-weight: bold;
1126     padding: 5px 0px 5px 0px;
1127 }
1128 aside .vcard .p-addr {
1129     font-style: italic;
1130     overflow: hidden;
1131     text-overflow: ellipsis;
1132     white-space: nowrap;
1133     padding-bottom: 2px;
1134 }
1135
1136 aside .vcard .detail {
1137     display: table;
1138     padding: 5px 0;
1139 }
1140 aside .xmpp {
1141     display: table;
1142 }
1143 aside .vcard .icon {
1144     display: table-cell;
1145     padding-right: 10px;
1146     width: 30px;
1147 }
1148 #profile-extra-links {
1149     overflow: auto;
1150 }
1151 aside .vcard #dfrn-request-link-button,
1152 aside .vcard #wallmessage-link-botton {
1153     width: 50%;
1154     margin: 0 0 0 -5px;
1155     float: left;
1156     padding: 0 5px;
1157 }
1158 aside .vcard #dfrn-request-link,
1159 aside .vcard #wallmessage-link {
1160     width: 100%;
1161 }
1162 /* vcard-short-info */
1163 #vcard-short-info,
1164 #nav-short-info .contact-wrapper {
1165     margin-top: 2px;
1166     height: 40px;
1167     white-space: nowrap;
1168     overflow: hidden;
1169     padding-right: 20px;
1170     margin-left: -14px;
1171 }
1172 #nav-short-info .contact-photo-wrapper.media-left {
1173     float: left;
1174 }
1175 #vcard-short-photo-wrapper img,
1176 #nav-short-info .contact-wrapper img {
1177     height: 34px;
1178     width: 34px;
1179     border-radius: 3px;
1180 }
1181 #vcard-short-desc,
1182 #nav-short-info .contact-wrapper .media-body {
1183     display: block;
1184     height: 34px;
1185     width: 100%;
1186     text-overflow: ellipsis;
1187 }
1188 #vcard-short-desc > .media-heading,
1189 #vcard-short-desc > .vcard-short-addr,
1190 #nav-short-info .contact-wrapper .media-heading,
1191 #nav-short-info .contact-wrapper #contact-entry-url-network {
1192     text-overflow: ellipsis;
1193     overflow: hidden;
1194 }
1195 #vcard-short-desc > .media-heading,
1196 #nav-short-info .contact-wrapper .media-heading {
1197     margin-bottom: 1px;
1198     font-weight: bold;
1199 }
1200 #nav-short-info .contact-wrapper .media-heading a {
1201     color: #555;
1202     font-size: 14px !important;
1203 }
1204 #vcard-short-desc > .vcard-short-addr,
1205 #nav-short-info .contact-wrapper #contact-entry-url-network {
1206     color: #777;
1207     font-size: 12px;
1208 }
1209 .network-content-wrapper > #viewcontact_wrapper-network,
1210 #nav-short-info .contact-wrapper .contact-photo-overlay,
1211 #nav-short-info .contact-wrapper .contact-actions{
1212     display: none
1213 }
1214
1215 aside #peoplefind-sidebar input,
1216 aside #follow-sidebar input {
1217     height: 30px;
1218     background-position: 10px 5px;
1219 }
1220 aside #peoplefind-sidebar label,
1221 aside #follow-sidebar label {
1222     font-weight: normal;
1223 }
1224 aside #peoplefind-sidebar .form-group-search .form-button-search,
1225 aside #follow-sidebar .form-group-search .form-button-search {
1226     padding: 2px 8px;
1227 }
1228
1229 div#sidebar-group-header h3 {
1230     float: left;
1231 }
1232
1233 div#sidebar-group-list {
1234     clear: both;
1235 }
1236
1237 .group-new-form {
1238     clear: both;
1239 }
1240
1241 .group-edit-tool {
1242     color: #555;
1243 }
1244
1245 .faded-icon {
1246     color: #555;
1247     opacity: 0.3;
1248     transition: all 0.1s ease-in-out;
1249 }
1250 .faded-icon:hover {
1251     color: #555;
1252     opacity: 1;
1253 }
1254 .icon-padding {
1255     margin-left: 20px;
1256 }
1257
1258 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool.faded-icon,
1259 aside #saved-search-list .saved-search-li:hover .savedsearchdrop.faded-icon,
1260 aside .widget:hover .widget-action.faded-icon {
1261     opacity: 0.8;
1262     transition: all 0.25s ease-in-out;
1263 }
1264 aside #group-sidebar .sidebar-group-li .group-edit-tool.faded-icon:hover,
1265 aside #saved-search-list .saved-search-li .savedsearchdrop.faded-icon:hover,
1266 aside .widget .widget-action.faded-icon:hover {
1267     opacity: 1;
1268 }
1269 aside #group-sidebar li .group-checkbox {
1270     margin: 0;
1271 }
1272 aside #group-sidebar li .group-edit-tool {
1273     padding-right: 10px;
1274 }
1275 aside #group-sidebar li .group-edit-tool:first-child {
1276     padding-right: 0px;
1277 }
1278
1279 /* contact block widget */
1280 #contact-block .contact-block-content {
1281     clear: both;
1282     overflow: auto;
1283     height: auto;
1284 }
1285 #contact-block .contact-block-div {
1286     float: left;
1287     margin: 0px 5px 5px 0px;
1288 /*    height: 90px;
1289     width: 90px;*/
1290 }
1291 #contact-block contact-block-link {
1292
1293 }
1294 #contact-block .contact-block-img {
1295     height: 75px;
1296     width: 75px;
1297     border-radius: 4px;
1298 }
1299
1300 /* Tag cloud widget */
1301 .tagblock.widget > .tag-cloud {
1302     text-align: center;
1303 }
1304 /* Section */
1305 section ul.tabs {
1306     display: none !important;
1307 }
1308
1309 /* Jot */
1310 section #jotOpen {
1311     display: none;
1312 }
1313 #jotOpen {
1314     margin-top: 3px;
1315     float: right;
1316 }
1317 #jot-content {
1318     display: none;
1319 }
1320 .jothidden {
1321     /*display: none;*/
1322 }
1323 #jot-modal .modal-header a, #jot-modal .modal-header .btn-link,
1324 #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link {
1325     color: #555;
1326     text-transform: capitalize;
1327 }
1328 #jot-modal .modal-header {
1329     border-bottom: none;
1330 }
1331 #jot-title-wrap, #jot-category-wrap {
1332     margin-bottom: 5px;
1333 }
1334 #jot-text-wrap {
1335     margin-top: 20px;
1336 }
1337 #jot-text-wrap textarea {
1338     min-height: 100px;
1339 }
1340 #profile-jot-wrapper button#profile-jot-submit {
1341     margin-top: 5px;
1342 }
1343 #profile-jot-wrapper #character-counter {
1344     padding: 10px 15px;
1345 }
1346
1347 /* ACL */
1348 /*#jot-modal-body {
1349     height: auto;
1350     max-height: calc(100vh - 130px);
1351     overflow-y: hidden;
1352 }*/
1353 #acl-search {
1354     margin-top: 20px;
1355     /*padding: 8px;*/
1356     /*border: 1px solid #ccc;*/
1357     width: 100%;
1358 }
1359 #acl-list {
1360     display: block;
1361     border: 1px solid #ccc;
1362     overflow: auto;
1363     clear: both;
1364     min-height: 62px;
1365     margin-top: 20px;
1366     padding: 10px 10px 0px 0px;
1367     -webkit-border-radius: 4px;
1368     -moz-border-radius: 4px;
1369     border-radius: 4px;
1370 }
1371 #acl-list-content {
1372     overflow-y: auto;
1373     max-height: calc(100vh - 330px);
1374     height: auto !important;
1375 }
1376 .acl-list-item {
1377     width: 48%;
1378     width: calc(50% - 10px);
1379     border: 1px solid #ccc;
1380     margin: 0px 0px 10px 10px;
1381     padding: 5px;
1382     float: left;
1383     -webkit-border-radius: 4px;
1384     -moz-border-radius: 4px;
1385     border-radius: 4px;
1386 }
1387 .acl-list-item img {
1388     width: 40px;
1389     height: 40px;
1390     float: left;
1391     margin-right: 5px;
1392     -webkit-border-radius: 4px;
1393     -moz-border-radius: 4px;
1394     border-radius: 4px;
1395 }
1396 .acl-list-item p {
1397     margin: 0px;
1398     white-space: nowrap;
1399     overflow: hidden;
1400     text-overflow: ellipsis;
1401 }
1402 .acl-list-item.groupshow {
1403     background-color: #8DB255
1404 }
1405 .acl-list-item.grouphide {
1406     background-color: #E68364;
1407 }
1408 .acl-button-show, .acl-button-hide {
1409     float: right;
1410     margin-left: 5px;
1411 }
1412 #acl-showall.selected {
1413     background-color: #4CAF50;
1414     color: #fff;
1415 }
1416 .acl-button-show.selected {
1417     background-color: #4CAF50;
1418     color: #fff;
1419 }
1420 .acl-button-hide.selected {
1421     background-color: #F44336;
1422     color: #fff;
1423 }
1424
1425 .fa.lock:before {
1426     font-family: FontAwesome;
1427     content: "\f023";
1428 }
1429 .fa.unlock:before {
1430     font-family: FontAwesome;
1431     content: "\f09c";
1432 }
1433
1434 /* Filebrowser */
1435 .fbrowser .breadcrumb {
1436     margin-bottom: 0px;
1437 }
1438 .fbrowser .path a:before {
1439     content: "";
1440     padding: 0;
1441 }
1442 .fbrowser .breadcrumb > li:last-of-type a{
1443     color: #777;
1444     pointer-events: none;
1445     cursor: default;
1446 }
1447 .fbrowser .folders {
1448     box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
1449     padding-right: 1px;
1450 }
1451 .fbrowser .folders ul {
1452     padding: 0px;
1453     margin-left: -15px;
1454     margin-bottom: 0px;
1455     overflow-y: auto;
1456     min-width: 100px;
1457     max-height: calc(100vh - 210px);
1458     line-height: 1.3;
1459 }
1460 @media (min-width: 768px) {
1461     .fbrowser .folders ul {
1462         max-height: calc(100vh - 255px);
1463     }
1464 }
1465 .fbrowser .folders li {
1466     padding-left: 20px;
1467     padding-right: 10px;
1468     padding-top: 3px;
1469     padding-bottom: 3px;
1470 }
1471 .fbrowser .folders li:hover {
1472     z-index: 2;
1473     color: #555;
1474     background-color: rgba(247, 247, 247, $contentbg_transp);
1475     border-left: 3px solid $link_color !important;
1476     padding-left: 17px;
1477 }
1478 .fbrowser .folders li a,
1479 .fbrowser .folders li a:hover {
1480     color: #555;
1481     font-size: 13px;
1482 }
1483 .fbrowser .folders + .list {
1484     padding-left: 10px;
1485 }
1486 .fbrowser .fbrowser-content-container {
1487     overflow-y: auto;
1488     max-height: calc(100vh - 175px);
1489 }
1490 @media (min-width: 768px) {
1491     .fbrowser .fbrowser-content-container {
1492         max-height: calc(100vh - 220px);
1493     }
1494 }
1495 .fbrowser.image .photo-album-image-wrapper {
1496     box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
1497 }
1498 .fbrowser .profile-rotator-wrapper {
1499     min-height: 200px;
1500 }
1501 .fbrowser .fa-spin {
1502    position: absolute;
1503    left: 45%;
1504    top: 40%;
1505    font-size: 48px;
1506    margin:0px auto;
1507 }
1508
1509 /*
1510 /* Stream
1511 */
1512 .panel {
1513     border: none;
1514     /*background-color: #fff;*/
1515     background-color: rgba(255,255,255,$contentbg_transp);
1516     box-shadow: 0 0 3px #dadada;
1517     -webkit-box-shadow: 0 0 3px #dadada;
1518     -moz-box-shadow: 0 0 3px #dadada;
1519     border-radius: 4px;
1520     position: relative;
1521 }
1522 .panel.panel-inline {
1523     margin-left: -15px;
1524     margin-right: -15px;
1525     margin-top: 15px;
1526     padding: 15px;
1527 }
1528 .panel .panel-body {
1529     padding: 15px;
1530     font-size: 14px;
1531 }
1532 .panel .panel-body .wall-item-content {
1533     color: #555;
1534 }
1535 .tread-wrapper .media {
1536     overflow: visible;
1537     word-wrap: break-word;
1538 }
1539 aside .panel-body {
1540     padding: 0px;
1541 }
1542
1543 /* Thread hover effects */
1544 .wall-item-container .wall-item-content a,
1545 .wall-item-container a,
1546 .wall-item-container .fakelink,
1547 .toplevel_item .fakelink,
1548 .toplevel_item .wall-item-container .wall-item-responses a {
1549     color: #555;
1550     -webkit-transition: all 0.25s ease-in-out;
1551     -moz-transition: all 0.25s ease-in-out;
1552     -o-transition: all 0.25s ease-in-out;
1553     -ms-transition: all 0.25s ease-in-out;
1554     transition: all 0.25s ease-in-out;
1555 }
1556
1557 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1558 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1559 .toplevel_item:hover .wall-item-content a,
1560 .toplevel_item:hover .wall-item-name,
1561 .wall-item-container:hover .wall-item-content a,
1562 .wall-item-container:hover .wall-item-name,
1563 .wall-item-container:hover .wall-item-location a {
1564     /*color: #6fdbe8;*/
1565     color: $link_color;
1566     -webkit-transition: all 0.25s ease-in-out;
1567     -moz-transition: all 0.25s ease-in-out;
1568     -o-transition: all 0.25s ease-in-out;
1569     -ms-transition: all 0.25s ease-in-out;
1570     transition: all 0.25s ease-in-out;
1571 }
1572
1573 /* wall items */
1574 .wall-item-container {
1575     position: relative;
1576 }
1577
1578 /* wall items contact photo */
1579 .contact-photo {
1580     height: 48px;
1581     width: 48px;
1582     border-radius: 3px;
1583     /*maybe some adional stuff is needed for the different screen sizes */
1584 }
1585 .contact-photo-image-wrapper {
1586     width: 100%;
1587     height: 100%;
1588     overflow: hidden;
1589     position: relative;
1590     text-align: center;
1591 }
1592 .contact-photo-overlay {
1593     width: 100%;
1594     height: 100%;
1595     position: absolute;
1596     overflow: hidden;
1597     top: 0;
1598     left: 0;
1599     border-radius: 3px;
1600     background:rgba(0,0,0,.50);
1601     text-align:center;
1602     opacity:0;
1603     -webkit-transition: opacity .25s ease;
1604     -moz-transition: opacity .25s ease;
1605 }
1606 .contact-photo-overlay:hover {
1607     opacity: 1;
1608 }
1609 .contact-photo-overlay-content {
1610     font-size: 26px;
1611     text-shadow: 1px 1px 1px #ccc;
1612     color:rgba(255,255,255,.85);
1613     height: 100%;
1614     vertical-align: bottom;
1615 }
1616 .contact-photo-xs{
1617     height: 38px;
1618     width: 38px;
1619     border-radius: 3px;
1620 }
1621 .wwto .contact-photo {
1622     width: auto;
1623     height: 25px;
1624     font-size: 8.8px;
1625     border-radius: 2px;
1626     position: absolute;
1627     top: 28px;
1628     left: 28px;
1629     display: inline-block;
1630 }
1631
1632 /* wall items action dropdown menu */
1633 .nav-pills.preferences {
1634     position: absolute;
1635     right: 15px;
1636     top: 10px;
1637 }
1638 .comment .nav-pills.preferences {
1639     right: 0px;
1640     top: 0px;
1641 }
1642 .wall-item-network {
1643     font-size: 13px;
1644 }
1645
1646 /* wall items contact info */
1647 .media .media-body {
1648     font-size: 13px;
1649 }
1650 .media .media-body h4.media-heading {
1651     font-size: 14px;
1652     font-weight: 500;
1653     color: #555;
1654 }
1655 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1656     display: block;
1657 }
1658 .media .contact-info-comment {
1659     display: table-cell;
1660 }
1661 .media .contact-info-xs h5,
1662 .media .contact-info-comment {
1663     margin: 0 0 5px;
1664 }
1665 .media-heading {
1666     margin: 0 0 5px;
1667 }
1668 .wall-item-name,
1669 .shared-author {
1670     font-size: 15px;
1671     font-weight: bold;
1672 }
1673 .wall-item-name.xs {
1674     font-weight: 700;
1675     font-size: 14px;
1676 }
1677
1678 /* The lock symbol popup */
1679 #panel {
1680     position: absolute;
1681     list-style: none;
1682     background-color: $nav_bg;
1683     border: none;
1684     border-radius: 3px;
1685     float: left;
1686     min-width: 160px;
1687     max-width: 220px;
1688     padding: 10px ;
1689     margin: 2px 0 0;
1690     font-size: 14px;
1691     text-align: left;
1692     color: $nav_icon_color;
1693     z-index: 1000;
1694 }
1695
1696 /* Space between content and head */
1697 .wall-spacer {
1698     height: 10px;
1699 }
1700
1701 /* wall items content */
1702 .wall-item-content {
1703     word-break: break-word;
1704 }
1705 .wall-item-content img {
1706     max-height: 480px;
1707     object-fit: contain;
1708 }
1709 .wall-item-body > img,
1710 .wall-item-body > a > img {
1711     border-radius: 3px;
1712 }
1713 .wall-item-body .body-attach > a {
1714     color: #555;
1715     display: inline-block;
1716 }
1717 .wall-item-body .body-attach > a div {
1718     color: #555;
1719     width: 20px;
1720 }
1721
1722 /* wall-item content elements */
1723 .shared-wrapper,
1724 .vevent {
1725     padding: 10px;
1726     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1727 }
1728 @media screen and (max-width: 767px) {
1729     .shared-wrapper,
1730     .vevent {
1731     margin-left: 0px;
1732     margin-right: 0px;
1733     }
1734 }
1735 .shared-wrapper:hover,
1736 .vevent:hover {
1737     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1738 }
1739 .shared_header {
1740     margin-left: 0px;
1741     margin-top: 0px;
1742     padding-top: 0px;
1743     margin-bottom: 10px;
1744     border-top: none;
1745     color: inherit;
1746 }
1747 blockquote.shared_content {
1748     padding: 0px;
1749     margin-left: 0px;
1750     color: inherit;
1751 }
1752 code > .hl-main {
1753     padding: 10px 10px 1px 0;
1754 }
1755 .hl-main ol {
1756     line-height: 1.7;
1757 }
1758 .type-link img.attachment-image {
1759     width: 100%;
1760 }
1761 .type-link blockquote, .type-video blockquote {
1762     margin: 0;
1763     padding: 10px 0;
1764 }
1765 .oembed.video .embed_video > div::before {
1766     font-family: FontAwesome;
1767     font-weight: normal;
1768     font-style: normal;
1769     display: inline-block;
1770     text-decoration: inherit;
1771     vertical-align: top;
1772     font-size: 3em;
1773     content: "\f01d";
1774     color: #fff;
1775     bottom: 0px;
1776     right: 10px;
1777     position: absolute;
1778 }
1779 .oembed.video .embed_video > div {
1780     background-color: rgba(0,0,0,0.2);
1781     -webkit-transition: all 0.25s ease-in-out;
1782     -moz-transition: all 0.25s ease-in-out;
1783     -o-transition: all 0.25s ease-in-out;
1784     -ms-transition: all 0.25s ease-in-out;
1785     transition: all 0.25s ease-in-out;
1786 }
1787 .oembed.video .embed_video > div:hover {
1788     background-color: rgba(0,0,0,0);
1789 }
1790 .wall-item-tags,
1791 .itemedited {
1792     margin-top: 10px;
1793     font-size: 13px;
1794 }
1795
1796 .wall-item-tags a {
1797     color: #555;
1798 }
1799
1800 .wall-item-tags a:hover {
1801     text-decoration: none;
1802 }
1803 .wall-item-bottom .label,
1804 .wall-item-bottom .label a {
1805     color: #fff;
1806 }
1807
1808 /* item social action buttons */
1809 .wall-item-actions {
1810     margin-top: 15px;
1811 }
1812 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1813     font-size: 13px;
1814     color: #555;
1815     margin-bottom: 0;
1816 }
1817 .wall-item-actions .active {
1818     font-weight: bold;
1819 }
1820 .wall-item-actions .active:hover {
1821     color: $link_color;
1822 }
1823 .wall-item-actions-left {
1824     display: table-cell;
1825     vertical-align: middle;
1826 }
1827 .wall-item-actions-right {
1828     display: flex;
1829 }
1830 .wall-item-actions .checkbox {
1831     margin: 0;
1832     margin-left: 20px;
1833 }
1834 .wall-item-actions .button-event {
1835     padding-left: 5px;
1836     padding-right: 5px;
1837 }
1838 .wall-item-actions .button-comments,
1839 .wall-item-actions .button-votes,
1840 .wall-item-actions .button-likes {
1841     text-transform: capitalize;
1842 }
1843 .wall-item-actions button:hover {
1844     color: #555;
1845     text-decoration: underline;
1846 }
1847 .wall-item-actions .separator {
1848     margin: 0 .3em;
1849 }
1850
1851 /* wall item hover effects */
1852 .wall-item-container .wall-item-links,
1853 .wall-item-container .wall-item-actions,
1854 .wall-item-container .body-attach > a {
1855     opacity: 0.3;
1856     -webkit-transition: all 0.25s ease-in-out;
1857     -moz-transition: all 0.25s ease-in-out;
1858     -o-transition: all 0.25s ease-in-out;
1859     -ms-transition: all 0.25s ease-in-out;
1860     transition: all 0.25s ease-in-out;
1861 }
1862 .wall-item-container:hover .wall-item-links,
1863 .wall-item-container:hover .wall-item-actions,
1864 .wall-item-container:hover .body-attach > a {
1865     opacity: 0.6;
1866     -webkit-transition: all 0.25s ease-in-out;
1867     -moz-transition: all 0.25s ease-in-out;
1868     -o-transition: all 0.25s ease-in-out;
1869     -ms-transition: all 0.25s ease-in-out;
1870     transition: all 0.25s ease-in-out;
1871 }
1872 .wall-item-container .wall-item-body .body-attach > a:hover {
1873     opacity: 1;
1874 }
1875
1876 /*
1877 /* Comments
1878 */
1879 .well {
1880     border: none;
1881     box-shadow: none;
1882     /*background-color: #ededed;*/
1883     background-color: rgba(237, 237, 237, $contentbg_transp);
1884     background-image: none;
1885     margin-bottom: 1px;
1886 }
1887 .well-small {
1888     padding: 10px;
1889     border-radius: 3px;
1890 }
1891 .well hr {
1892     border-top: 1px solid #d9d9d9;
1893 }
1894 .wall-entry .well {
1895     margin-bottom: 0;
1896 }
1897 .comment-container {
1898     margin-top: 10px;
1899     margin-bottom: 0px;
1900     border-top-left-radius: 3px;
1901     border-top-right-radius: 3px;
1902     border-bottom-right-radius: 0px;
1903     border-bottom-left-radius: 0px;
1904 }
1905 .comment .media {
1906     position: relative!important;
1907     margin-top: 0;
1908 }
1909 .hide-comments-outer-wrapper {
1910 /*    text-align: center;
1911     margin-top: -18px;*/
1912 }
1913 .hide-comments-total {
1914     cursor: pointer;
1915 }
1916
1917 /*
1918 * Comment Box
1919 */
1920 .thread_level_2 .wall-item-comment-wrapper {
1921     padding-right: 5px;
1922 }
1923 .comment-edit-submit-wrapper {
1924     margin-bottom: 25px;
1925 }
1926 .comment-edit-submit-wrapper a,
1927 .comment-edit-submit-wrapper a:hover {
1928     padding-top: 5px !important;
1929     padding-bottom: 5px !important;
1930 }
1931 .comment-icon-list > li > .icon,
1932 .comment-icon-list > li > .icon:hover {
1933     color: #555;
1934     background-color: transparent;
1935 }
1936
1937 /* acpopup  + textcompletion*/
1938 .acpopup {
1939     /* max-height: 150px; */
1940     background-color: #ffffff;
1941     border-radius: 4px;
1942     overflow: auto;
1943     z-index: 100000;
1944     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1945 }
1946 nav .acpopup {
1947     /*top: 35px !important;*/
1948     margin-left: -23px;
1949 }
1950 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1951  at the beginning of this file to get rid of the !important */
1952 .textcomplete-item > a {
1953     color: #555 !important;
1954     padding: 5px 20px !important;
1955 }
1956 .textcomplete-item.active > a {
1957     background-color: rgb(247, 247, 247) !important;
1958     background-image: none !important;
1959     border-left: 3px solid $link_color;
1960     padding-left: 17px !important;
1961 }
1962 .textcomplete-item a .forum {
1963     color: $link_color;
1964 }
1965 img.acpopup-img {
1966     border-radius: 4px;
1967  }
1968
1969
1970 /* The wall-item thread levels */
1971 /*.wall-item-container.thread_level_3 {
1972   margin-left: 80px;
1973   width: calc(100% - 90px);
1974 }
1975 .wall-item-container.thread_level_4 {
1976   margin-left: 95px;
1977   width: calc(100% - 105px);
1978 }
1979 .wall-item-container.thread_level_5 {
1980   margin-left: 110px;
1981   width: calc(100% - 120px);
1982 }
1983 .wall-item-container.thread_level_6 {
1984   margin-left: 125px;
1985   width: calc(100% - 135px);
1986 }
1987 .wall-item-container.thread_level_7 {
1988   margin-left: 140px;
1989   width: calc(100% - 150px);
1990 }*/
1991
1992 .wall-item-container.thread_level_3,
1993 .wall-item-container.thread_level_4,
1994 .wall-item-container.thread_level_5,
1995 .wall-item-container.thread_level_6,
1996 .wall-item-container.thread_level_7 {
1997   margin-left: 15px;
1998
1999 }
2000 /* Menubar Tabs */
2001 section > .tabbar-wrapper {
2002 /* The tabbar shouldn't' be visibile inside
2003 the section element. Only after we have
2004 moved it to the nav through js */
2005     display: none !important;
2006 }
2007 #tabmenu,
2008 .tabbar-wrapper,
2009 .tabbar,
2010 .tabbar > li {
2011     height: 100%;
2012     /*margin-left: -15px;*/
2013     padding: 0;
2014 }
2015 #tabmenu .search-heading {
2016     overflow: hidden;
2017     text-overflow: ellipsis;
2018     white-space: nowrap;
2019 }
2020 ul.tabs {
2021     list-style: none;
2022     height: 100%;
2023     padding: 0;
2024     padding-top: 10px;
2025     margin: 0;
2026 }
2027 ul.tabs li {
2028     float: left;
2029     margin: 0;
2030     padding: 0;
2031     /*border-bottom: 0 solid #6fdbe8;*/
2032     border-bottom: 0 solid $link_color;
2033     font-size: 13px;
2034     height: 102%;
2035     transition: all .15s ease;
2036 }
2037 /*ul.tabs.visible-xs > li.active {
2038     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
2039 }*/
2040 ul.tabs li a {
2041     margin-left: 10px;
2042     margin-right: 10px;
2043     /*color: #6fdbe8;*/
2044     color: $link_color !important;
2045 }
2046 ul.tabs li:hover, ul.tabs li.active {
2047     border-bottom-width: 4px;
2048 }
2049 ul.tabbar ul.tabs-extended li.active {
2050     width: 100%;
2051     border-bottom-width: 2px;
2052 }
2053 ul.tabbar ul.tabs-extended li.active a {
2054     background: none;
2055 }
2056 ul.dropdown-menu li:hover {
2057     border-bottom-width: 0;
2058 }
2059
2060
2061 /* Dropdown Menu */
2062 .dropdown-menu li a,
2063 .dropdown-menu li .btn-link {
2064     font-size: 13px!important;
2065     font-weight: 600!important;
2066 }
2067 .dropdown-menu li > :hover,
2068 .dropdown-menu li > :visited,
2069 .dropdown-menu li > :focus {
2070     background: 0 0;
2071 }
2072
2073 .dropdown-menu li:first-child {
2074     margin-top: 3px;
2075 }
2076
2077 /* Notificaiotn badges */
2078 .nav-notify .show {
2079     display: block;
2080 }
2081
2082 /* Media Classes */
2083 .media .time,
2084 .media .shared-time,
2085 .media .location,
2086 .media .location a {
2087     font-size: 11px;
2088     color: #bebebe;
2089 }
2090 .media-list > li {
2091     padding: 10px;
2092     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2093     position: relative;
2094 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
2095     border-left: 3px solid rgba(255,255,255,0);
2096     font-size: 12px;
2097 }
2098 .media-list > li:hover,
2099 .media-list > li.selected,
2100 .media-list > li.active {
2101     border-left: 3px solid $link_color;
2102     background-color: rgba(247, 247, 247, $contentbg_transp);
2103 }
2104
2105 /* Forms */
2106 .form-control {
2107     border: 2px solid #ededed;
2108     box-shadow: none;
2109 }
2110 .form-control:focus {
2111     /*border: 2px solid #6fdbe8;*/
2112     border: 2px solid $link_color;
2113     outline: 0;
2114     box-shadow: none;
2115 }
2116
2117
2118 .checkbox input[type="checkbox"]:focus + label::before,
2119 .checkbox input[type="radio"]:focus + label::before {
2120     /*border: 2px solid #6fdbe8;*/
2121     border: 2px solid $link_color;
2122     outline: 0;
2123     box-shadow: none;
2124 }
2125
2126 /* Search form */
2127 .form-control.form-search {
2128     border-radius: 30px;
2129     background-image: url(img/icon_search16x16.png);
2130     background-repeat: no-repeat;
2131     background-position: 10px 8px;
2132     padding-left: 34px;
2133 }
2134 .form-group-search {
2135     position: relative;
2136     width: 100%;
2137 }
2138
2139 .form-group-search .form-button-search {
2140     position: absolute;
2141     top: 4px;
2142     right: 4px;
2143     border-radius: 30px;
2144 }
2145 .search-input.form-control.form-search {
2146     width: 100%;
2147 }
2148 .search-heading {
2149     text-align: center;
2150     color: $link_color;
2151     font-size: 20px;
2152 }
2153 .search-content-wrapper > #search-header-wrapper {
2154     display: none;
2155 }
2156 .search-content-wrapper > .section-title-wrapper {
2157     display: none;
2158 }
2159 #navbar-button > #search-save-form > #search-save {
2160     margin-top: 3px;
2161 }
2162 /* Section-Content-Wrapper */
2163 #search-header-wrapper {
2164     padding: 15px;
2165     padding-bottom: 20px;
2166     margin-bottom: 20px;
2167     border: none;
2168     /*background-color: #fff;*/
2169     background-color: rgba(255,255,255,$contentbg_transp);
2170     border-radius: 4px;
2171     position: relative;
2172     /*overflow: hidden;*/
2173     color: #555;
2174     box-shadow: 0 0 3px #dadada;
2175     -webkit-box-shadow: 0 0 3px #dadada;
2176     -moz-box-shadow: 0 0 3px #dadada;
2177 }
2178
2179 /* *******
2180  * PAGES
2181  *********/
2182
2183 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2184  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2185 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2186 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2187 .message-content-wrapper, .apps-content-wrapper,
2188 #adminpage, .delegate-content-wrapper, .uexport-content-wrapper,
2189 .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
2190 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2191 .profperm-content-wrapper, .invite-content-wrapper, .tos-content-wrapper,
2192 .fsuggest-content-wrapper {
2193     min-height: calc(100vh - 150px);
2194     padding: 15px;
2195     padding-bottom: 20px;
2196     margin-bottom: 20px;
2197     border: none;
2198     /*background-color: #fff;*/
2199     background-color: rgba(255,255,255,$contentbg_transp);
2200     border-radius: 4px;
2201     position: relative;
2202     /*overflow: hidden;*/
2203     color: #555;
2204     box-shadow: 0 0 3px #dadada;
2205     -webkit-box-shadow: 0 0 3px #dadada;
2206     -moz-box-shadow: 0 0 3px #dadada;
2207 }
2208 #content:hover .page-action.faded-icon {
2209     opacity: 0.8;
2210     transition: all 0.25s ease-in-out;
2211 }
2212 #content .page-action.faded-icon:hover {
2213     opacity: 1;
2214 }
2215
2216 .section-title-wrapper {
2217     overflow: hidden;
2218 }
2219 /* Home and Login Page */
2220 body.mod-home nav.navbar .nav>li>a:hover {
2221     background-color: rgba(255,255,255,0.2);
2222 }
2223 body.mod-home .navbar #nav-login,
2224 body.mod-login .navbar #nav-login {
2225     display: none;
2226 }
2227 /* Profile-page */
2228 #profile-content-standard,
2229 #profile-content-advanced {
2230     overflow: hidden;
2231 }
2232 #profile-menu {
2233     margin-top: 20px;
2234     margin-bottom: 20px;
2235 }
2236 .contact-block-div.forumlist-profile-advanced {
2237     float: left;
2238 }
2239
2240 /* contacts page */
2241 ul.viewcontact_wrapper {
2242     margin-left: -15px;
2243     margin-right: -15px;
2244 }
2245 ul.viewcontact_wrapper > li {
2246     padding-left: 15px;
2247 }
2248 .contact-wrapper {
2249 /*    padding: 10px;
2250     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2251     position: relative;*/
2252     /*border-left: 3px solid white;*/
2253 }
2254 .contact-wrapper .contact-photo-wrapper button {
2255     padding: 0;
2256 }
2257 .contact-wrapper.media {
2258     overflow: visible;
2259     word-wrap: break-word;
2260     margin-top: 0;
2261 }
2262 /* bootstrap hack for .media */
2263 .contact-wrapper.media .media-body {
2264     display: table-cell;
2265     width: 10000px;
2266     *width: auto;
2267     *zoom: 1;
2268 }
2269 .contact-wrapper.media:before, .media:after {
2270     content: "";
2271     display: table;
2272 }
2273 .contact-wrapper.media:after {
2274     clear: both;
2275 }
2276 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2277     height: 80px;
2278     width: 80px;
2279 }
2280 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2281     height: 48px;
2282     width: 48px;
2283 }
2284 .contact-wrapper .contact-photo-overlay-content.xl {
2285     font-size: 48px;
2286 }
2287 .contact-wrapper .contact-photo-menu {
2288     top: auto;
2289 }
2290
2291 .contact-entry-desc {
2292     color: #555;
2293 }
2294 .contact-entry-checkbox {
2295     margin-top: -20px;
2296 }
2297 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2298     font-weight: bold !important;
2299     color: $link_color;
2300     font-size: 15px !important;
2301 }
2302 .contact-wrapper .contact-actions {
2303     display: flex;
2304 }
2305 .contact-wrapper .contact-action-link,
2306 .contact-wrapper .contact-action-link:hover,
2307 .textcomplete-item .contact-wrapper .contact-action-link {
2308     padding: 0 5px;
2309     color: #555;
2310     border: 0;
2311 }
2312 .contact-wrapper .contact-action-link {
2313     opacity: 0.1;
2314     transition: all 0.25s ease-in-out;
2315 }
2316 ul li:hover .contact-wrapper .contact-action-link {
2317     opacity: 0.8;
2318     transition: all 0.25s ease-in-out;
2319 }
2320 ul li:hover .contact-wrapper .contact-action-link:hover {
2321     opacity: 1;
2322 }
2323 #contacts-search-wrapper,
2324 #directory-search-wrapper{
2325     padding: 10px 0;
2326 }
2327 #contact-drop-confirm .contact-actions,
2328 #contact-drop-confirm .contact-photo-overlay,
2329 #contact-drop-confirm .contact-photo-menu {
2330     display: none;
2331 }
2332 #contact-drop-confirm #confirm-form {
2333     margin-top: 20px;
2334 }
2335
2336 /* contact-edit */
2337 #contact-edit-actions {
2338     position: absolute;
2339 }
2340 #contact-edit-status-wrapper {
2341     border: none;
2342     background-color: #E1F5FE;
2343     margin: 15px -15px;
2344 }
2345 #contact-edit-tools {
2346     margin-left: -15px;
2347     margin-right: -15px;
2348 }
2349 #contact-edit-tools > .panel {
2350     padding-left: 15px;
2351     padding-right: 15px;
2352 }
2353 #contact-edit-settings {
2354     display: block;
2355     margin: 0;
2356 }
2357
2358 /* directory page */
2359 #directory-search-heading {
2360     padding-top: 10px;
2361 }
2362
2363 /* group edit page */
2364 .group-actions {
2365     margin-top: 4px;
2366     margin-bottom: 10px;
2367     font-size: 30px;
2368 }
2369 .group-actions button,
2370 .group-actions a {
2371     font-size: 18px;
2372 }
2373
2374 .contact-group-actions .fa-times-circle { color: #D00000;}
2375 .contact-group-actions .fa-plus-circle { color: #008000;}
2376
2377 #group-edit-wrapper {
2378     margin-top: 14px;
2379     display: none;
2380 }
2381 #group-edit-header {
2382     display: block;
2383 }
2384 #group-update-wrapper .contact-photo-overlay {
2385     display: none;
2386 }
2387 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2388     height: 100%;
2389     margin-top: -10px;
2390     display: flex;
2391 }
2392 #group-update-wrapper .viewcontact_wrapper .contact-group-link {
2393     opacity: 0.8;
2394     font-size: 20px;
2395     line-height: 50px;
2396 }
2397 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2398     opacity: 1;
2399 }
2400 #group-update-wrapper .shortmode {
2401     height: 53px;
2402     overflow: hidden;
2403 }
2404 #group-update-wrapper .shortmode .contact-photo {
2405     height: 32px;
2406     width: 32px;
2407 }
2408 #group-update-wrapper .shortmode .media {
2409     overflow: hidden;
2410 }
2411 #group-update-wrapper .shortmode .contact-entry-desc {
2412     font-size: 12px !important;
2413 }
2414 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2415     margin: 0;
2416 }
2417 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2418     font-size: 13px !important;
2419     white-space: nowrap;
2420 }
2421 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2422 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2423     display: none;
2424 }
2425
2426 /* private mail */
2427 .message-content-wrapper > li {
2428 /* we need this overwriting because we have no template file
2429    for the general mail page /message
2430 */
2431     list-style-type: none;
2432 }
2433 .mail-thread {
2434     max-height: calc(100vh - 200px);
2435 }
2436 #mail-conversation {
2437     overflow-y: auto;
2438     max-height: calc(100vh - 400px);
2439     max-height: auto;
2440     /*height: 500px;*/
2441     margin-bottom: 0px;
2442     padding: 0 15px;
2443 }
2444 #mail-conversation.can-reply {
2445 /*    border-bottom-left-radius: 0px;
2446     border-bottom-right-radius: 0px;*/
2447 }
2448 .mail-conv-wrapper .media .contact-photo-wrapper img {
2449     height: 48px;
2450     width: 48px;
2451 }
2452 .mail-thread #prvmail-to-label,
2453 .mail-thread #prvmail-subject-label {
2454     display: none;
2455 }
2456 .mail-thread #prvmail-message-label > label {
2457     display:none;
2458 }
2459 .mail-thread #prvmail-message-label textarea {
2460 /*    border-top: none;
2461     margin-top: -10px;
2462     border-top-left-radius: 0px;
2463     border-top-right-radius: 0px;*/
2464     max-height: 120px;
2465 }
2466 .mail-conv-wrapper {
2467     padding: 15px 0;
2468     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2469 }
2470 #message-sidebar {
2471     height: calc(100vh - 150px);
2472 }
2473 #message-preview {
2474     /*padding: 0 10px;*/
2475     height: calc(100% - 20px);
2476 }
2477 #message-preview ul {
2478     margin: 0px;
2479 }
2480 #message-preview .media-list li {
2481     padding: 0px 10px;
2482     border: none;
2483 }
2484 #message-preview .media-list li:hover {
2485     border-left: none !important;
2486 }
2487 #message-preview .media-list li a {
2488     color: $link_color;
2489 }
2490 .mail-list-outside-wrapper {
2491     padding: 5px 0;
2492     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2493 }
2494 .mail-list-outside-wrapper .contact-photo-wrapper img {
2495     height: 48px;
2496     width: 48px;
2497 }
2498 #prvmail-end {
2499     clear:both;
2500 }
2501 #modal #prvmail-text-edit-bb .bb-img {
2502     display: none;
2503 }
2504
2505 /* photos */
2506 #photo-album-edit-name-label {
2507     width: 100%;
2508 }
2509 .photo-album-edit-name {
2510     width: 60%;
2511 }
2512
2513 .photo-album-actions {
2514     margin-bottom: 10px;
2515 }
2516 .photo-album-actions .photos-order-link {
2517     float: right;
2518 }
2519 /* poke */
2520 #poke-desc {
2521     margin: 5px 0 30px;
2522 }
2523 #poke-wrapper-end {
2524     clear: both;
2525 }
2526
2527 /* Events page */
2528
2529 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2530     color: $link_hover_color;
2531 }
2532 .fc .fc-list-item-title a {
2533     color: $link_color;
2534 }
2535 .fc .fc-list-item-title a[href]:hover {
2536     color: $link_hover_color;
2537     text-decoration: none;
2538 }
2539 /*.event-date-wrapper.medium .event-hover-short-month {
2540     color: $link_color;
2541 }*/
2542 .event-wrapper .event-owner {
2543   margin-bottom: 15px;
2544 }
2545 .event-wrapper .event-owner img {
2546     display: block;
2547 }
2548 .event-owner img {
2549     margin-right: 5px;
2550     height: 48px;
2551     width:  48;
2552     border-radius: 3px;
2553 }
2554 .event-wrapper .vevent {
2555     margin-left: 0;
2556     margin-right: 0;
2557     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2558 }
2559 .event-wrapper .event-buttons {
2560     margin-top: 15px;
2561 }
2562 #event-form-wrapper {
2563     padding-top: 5px;
2564 }
2565 #event-edit-form-wrapper {
2566     padding-top: 15px;
2567 }
2568 #event-nav a {
2569     color: #555;
2570 }
2571 #event-edit-form-wrapper #event-edit-time {
2572     padding: 10px 0;
2573 }
2574 .event-buttons .plink-event-link {
2575     margin-left: 20px;
2576 }
2577 .vevent .event-summary {
2578     font-size: 16px;
2579 }
2580 .vevent .event-description {
2581     padding: 10px 0;
2582 }
2583 .vevent .event-location .location {
2584     font-size: inherit;
2585     color: inherit;
2586 }
2587 .modal-body .vevent .event-summary {
2588     display: none;
2589 }
2590 #event-preview .vevent .event-summary {
2591     display: block;
2592 }
2593
2594 /* Event Cards */
2595 .event-card-details, .event-card-header {
2596     width: 100%;
2597 }
2598 .event-card-header, .event-card-left-date {
2599     float: left;
2600 }
2601 .vevent .event-card-header {
2602     display: table;
2603 }
2604 .event-card-left-date {
2605     width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
2606 }
2607 .event-card .event-date-wrapper > span {
2608     display: block;
2609     overflow: hidden;
2610     text-align: center;
2611     white-space: nowrap;
2612 }
2613 .event-card .event-date-wrapper .event-card-short-month {
2614     font-size: 13px;
2615     text-transform: uppercase;
2616 }
2617 .event-card .event-date-wrapper.medium .event-card-short-date {
2618     font-size: 24px;
2619     line-height: 28px;
2620     margin-top: 2px;
2621 }
2622 .event-card .event-card-content {
2623     width: 100%;
2624     padding: 0 5px 0 15px;
2625     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2626     color: #777;
2627     position: relative;
2628 }
2629 .event-card .event-card-content .event-map-btn {
2630     position: absolute;
2631     right: 0;
2632     top:0;
2633     line-height: 15px;
2634 }
2635 .event-card .event-card-title {
2636     font-size: 14px;
2637     color: #555;
2638     line-height: 15px;
2639     font-weight: bold;
2640     margin: 0;
2641 }
2642 .event-card .event-card-location {
2643     margin-top: 10px;
2644     font-size: 13px;
2645 }
2646 .event-card .event-card-location br {
2647     content: " ";
2648 }
2649 .event-card .event-card-location br::after {
2650     content: " ";
2651 }
2652 .event-card-profile-name a {
2653     color: $link_color;
2654 }
2655 .event-card-profile-name a:hover {
2656     color: $link_hover_color;
2657 }
2658 .event-card .event-card-content .event-location-map {
2659     position: absolute;
2660     left: -9999px;
2661     top: -9999px;
2662 }
2663 .event-card .event-card-content .event-location-map .map{
2664     margin-top: 10px;
2665 }
2666 .event-card .description {
2667     margin-top: 10px;
2668     box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, .1) inset;
2669 }
2670 /* Photos Pages */
2671 #photo-photo {
2672     position: relative;
2673 }
2674 .photo-next-link, .photo-prev-link {
2675     height: 64px;
2676     margin-top: -32px;
2677     opacity: 0;
2678     position: absolute;
2679     top: 50%;
2680     transform: translateZ(0);
2681     transition: opacity .2s;
2682     /*width: 27px;*/
2683     width: 100px;
2684     z-index: 11;
2685     font-size: 64px;
2686     color: #fff;
2687     text-shadow:
2688         -1px -1px 0 #000,
2689         1px -1px 0 #000,
2690         -1px 1px 0 #000,
2691         1px 1px 0 #000;
2692 }
2693 .photo-next-link > i, .photo-prev-link > i {
2694     vertical-align: super;
2695 }
2696 .photo-next-link > i {
2697     float: right;
2698 }
2699 .photo-prev-link {
2700     left: 20px;
2701 }
2702 .photo-next-link {
2703     right: 20px;
2704 }
2705 #photo-photo:hover .photo-next-link,
2706 #photo-photo:hover .photo-prev-link {
2707     opacity: 0.4;
2708 }
2709 #photo-photo .photo-next-link:hover,
2710 #photo-photo .photo-prev-link:hover {
2711     opacity: 1;
2712     color: #fff;
2713 }
2714 .photo-comment-wrapper .comment {
2715     position: relative;
2716 }
2717 .photo-comment-wrapper .wall-item-content {
2718     color: #555;
2719     font-size: 13px;
2720 }
2721 .photo-comment-wrapper .comment-wwedit-wrapper,
2722 .photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
2723     margin-top: 15px;
2724 }
2725
2726 /* Profiles Page */
2727 .profile-listing-table {
2728     display: table;
2729     width: 100%;
2730 }
2731 .profile-listing-row {
2732     display: table-row;
2733 }
2734 .profile-listing-cell {
2735     display: table-cell;
2736 }
2737 .profile-listing-photo {
2738     width: 48px;
2739     height: 48px;
2740     margin: 10px 0px;
2741 }
2742 #profile-listing-new-link-wrapper {
2743     margin-bottom: 20px;
2744 }
2745 .panel-group-settings {
2746     margin-left: -15px;
2747     margin-right: -15px;
2748 }
2749 .panel-group-settings > .panel,
2750 .panel-group-settings > form > .panel {
2751     padding-left: 15px;
2752     padding-right: 15px;
2753 }
2754 .profiles-content-wrapper #profile-photo-upload-section {
2755     display: none;
2756     margin-left: -15px;
2757     margin-right: -15px;
2758     margin-top: 15px;
2759     padding: 15px;
2760 }
2761 #profile-photo-upload-close {
2762     font-size: 14px;
2763 }
2764
2765 /* Settings */
2766 .section-subtitle-wrapper {
2767     padding: 1px 10px;
2768 }
2769 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2770     font-family: FontAwesome;
2771     content: "\f0d7";
2772     padding-right: 5px;
2773 }
2774 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2775     font-family: FontAwesome;
2776     content: "\f0da";
2777 }
2778 #settings-nick-wrapper {
2779     margin-bottom: 20px;
2780 }
2781 .group {
2782     margin-left: 20px;
2783 }
2784
2785 /* Emulates Bootstrap display */
2786 .settings-block {
2787     margin: 0 -15px 5px;
2788     color: #333;
2789     background-color: rgba(255,255,255,0.95);
2790     border-radius: 4px;
2791     padding: 10px 15px;
2792     box-shadow: 0 0 3px #dadada;
2793     -webkit-box-shadow: 0 0 3px #dadada;
2794     -moz-box-shadow: 0 0 3px #dadada;
2795 }
2796
2797 .settings-block.fakelink, .settings-block > .fakelink {
2798     padding: 10px 25px;
2799     display: block;
2800 }
2801 .settings-block > .fakelink {
2802     margin: -10px -15px 10px -15px;
2803     border-radius: 4px 4px 0 0;
2804 }
2805
2806 .settings-block.fakelink:hover, .settings-block > .fakelink:hover {
2807     color: $link_hover_color;
2808 }
2809 .settings-block.fakelink > h3, .settings-block > .fakelink > h3 {
2810     margin: 0;
2811     padding: 0;
2812     color: $link_color;
2813     font-size: 18px;
2814 }
2815
2816 .fakelink > h3:before {
2817     padding-right: 10px;
2818 }
2819 .settings-block.fakelink > h3:before {
2820     font-family: FontAwesome;
2821     content: "\f0da"; /* Right Plain Pointer */
2822 }
2823 .settings-block > .fakelink > h3:before {
2824     font-family: FontAwesome;
2825     content: "\f0d7"; /* Bottom Plain Pointer */
2826 }
2827
2828 h3.connector {
2829     line-height: 40px;
2830 }
2831
2832 /* Intro Notifications */
2833 ul.notif-network-list {
2834     margin-left: -15px;
2835     margin-right: -15px;
2836 }
2837 ul.notif-network-list > li {
2838     padding-left: 15px;
2839     padding-right: 15px;
2840 }
2841 .intro-wrapper.media {
2842     overflow: visible;
2843     word-wrap: break-word;
2844     margin-top: 0;
2845 }
2846 .intro-photo-wrapper img.intro-photo {
2847     height:80px;
2848     width: 80px;
2849     border-radius: 4px;
2850 }
2851 .intro-actions {
2852     display: flex;
2853 }
2854 .intro-enty-name h4 {
2855     font-size: 15px !important;
2856 }
2857 .intro-wrapper button.intro-action-link {
2858     opacity: 0.1;
2859     transition: all 0.25s ease-in-out;
2860 }
2861 .intro-wrapper button.intro-action-link,
2862 .intro-wrapper button.intro-action-link:hover {
2863     padding-right: 5px;
2864     padding-left: 5px;
2865     color: #555;
2866 }
2867 ul li:hover .intro-wrapper button.intro-action-link {
2868     opacity: 0.8;
2869     transition: all 0.25s ease-in-out;
2870 }
2871 ul li:hover .intro-wrapper button.intro-action-link:hover {
2872     opacity: 1;
2873 }
2874 .intro-action-buttons {
2875     margin-top: 15px;
2876     /*display: none;*/
2877     max-height: 0px;
2878     overflow: hidden;
2879     transition: max-height 0.1s ease-out;
2880 }
2881 ul.notif-network-list > li:hover .intro-action-buttons {
2882     /*display: block;*/
2883     max-height: 30px;
2884     transition: max-height 0.1s ease-in;
2885 }
2886 .intro-desc-label, .intro-url-label, .intro-network-label,
2887 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2888 .intro-about-label, .intro-knowyou-label, .intro-madeby-label {
2889     font-weight: bold;
2890 }
2891 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2892 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2893 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2894 .intro-contact-info.xs .intro-knowyou-label {
2895     display: block;
2896     margin-top: 5px
2897 }
2898
2899 /* Notifications Page */
2900 ul.notif-network-list li.unseen {
2901     background-color: #f3fcfd;
2902 }
2903 .notif-item img.notif-image {
2904     height: 48px;
2905     width: 48px;
2906     border-radius: 4px;
2907 }
2908 .notif-item .notif-desc-wrapper {
2909     height: 48px;
2910 }
2911 .notif-item .notif-desc-wrapper a {
2912     height: 100%;
2913     display: block;
2914     color: #555;
2915     font-size: 13px;
2916     font-weight: 600;
2917 }
2918
2919 /* Search Page */
2920
2921 /* This is a little bit hacky. Since the search page is used for diferent
2922 content types we can't apply the generic-page-wrapper class.
2923 So we apply the css of the generic-page-wrapper class to the ul element with some
2924 little modifications to emulate a standard page template */
2925 .search-content-wrapper > ul.viewcontact_wrapper {
2926     min-height: calc(100vh - 150px);
2927     padding-top: 15px;
2928     padding-bottom: 20px;
2929     margin: 0;
2930     margin-bottom: 20px;
2931     border: none;
2932     /*background-color: #fff;*/
2933     background-color: rgba(255,255,255,$contentbg_transp);
2934     border-radius: 4px;
2935     position: relative;
2936     /*overflow: hidden;*/
2937     color: #555;
2938     box-shadow: 0 0 3px #dadada;
2939     -webkit-box-shadow: 0 0 3px #dadada;
2940     -moz-box-shadow: 0 0 3px #dadada;
2941 }
2942
2943 /* Help Page */
2944 section.help-content-wrapper h1 {
2945     padding-bottom: 0.3em;
2946     font-size: 1.8em;
2947     border-bottom: 1px solid #ddd;
2948 }
2949 section.help-content-wrapper h2 {
2950     padding-bottom: 0.3em;
2951     font-size: 1.5em;
2952     border-bottom: 1px solid #ddd;
2953 }
2954 section.help-content-wrapper h3 {
2955     font-size: 1.2em;
2956 }
2957 section.help-content-wrapper h4 {
2958     font-size: 1em;
2959 }
2960 section.help-content-wrapper h1,
2961 section.help-content-wrapper h2,
2962 section.help-content-wrapper h3,
2963 section.help-content-wrapper h4,
2964 section.help-content-wrapper h5,
2965 section.help-content-wrapper h6 {
2966     margin-top: 24px;
2967     margin-bottom: 16px;
2968     font-weight: 600;
2969     line-height: 1.25;
2970 }
2971 section.help-content-wrapper p {
2972     margin: 0.4em 0;
2973 }
2974 section.help-content-wrapper p,
2975 section.help-content-wrapper a,
2976 section.help-content-wrapper li {
2977     line-height: 1.6;
2978     font-size: 0.96em;
2979 }
2980
2981 /*Admin Page*/
2982 #adminpage #frio_background_image .image-select {
2983     display: none;
2984 }
2985 #adminpage #frio_background_image.input-group {
2986     display: block;
2987 }
2988 #admin-summary-wrapper {
2989     padding-top: 10px;
2990 }
2991 #adminpage ul#addonslist, li.addon {
2992     list-style: none;
2993 }
2994 #adminpage li .icon {
2995     display: inline-block;
2996     vertical-align: text-top;
2997     position: relative;
2998     padding-left: 5px;
2999 }
3000 #adminpage li .icon:before {
3001     content: "";
3002     display: inline-block;
3003     position: absolute;
3004     width: 17px;
3005     height: 17px;
3006     left: 0;
3007     margin-left: -20px;
3008     margin-top: 2px;
3009     border: 1px solid #cccccc;
3010     border-radius: 3px;
3011     background-color: #fff;
3012     -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3013     -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3014     transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
3015 }
3016 #adminpage li .icon.on:after {
3017     font-family: "FontAwesome";
3018     content: "\f00c";
3019     display: inline-block;
3020     position: absolute;
3021     width: 16px;
3022     height: 16px;
3023     left: 0;
3024     top: 0;
3025     margin-left: -20px;
3026     margin-top: 2px;
3027     padding-left: 3px;
3028     padding-top: 1px;
3029     font-size: 11px;
3030     color: #555555;
3031 }
3032 #adminpage .addon .desc {
3033     padding-left: 10px;
3034 }
3035 .adminpage .admin-settings-action-link,
3036 .adminpage .admin-settings-action-link:hover {
3037     color: #555;
3038 }
3039 .adminpage .admin-settings-action-link:hover {
3040     opacity: 1;
3041 }
3042 .adminpage .admin-settings-action-link {
3043     opacity: 0.8;
3044 }
3045 #admin-users tr.blocked {
3046     background-color: #f8efc0;
3047 }
3048 .adminpage .table-hover > tbody > tr:hover + tr.details {
3049     background-color: #f5f5f5;
3050 }
3051 .offset-anchor::before {
3052     display: block;
3053     content: " ";
3054     margin-top: -100px;
3055     height: 100px;
3056     visibility: hidden;
3057     pointer-events: none;
3058 }
3059
3060 /* Register Page*/
3061 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
3062     margin-top: 20px;
3063 }
3064 #register-openid-end, #register-nickname-end
3065 {
3066     margin-top: 40px;
3067 }
3068
3069 /*
3070 * Overwriting for transparency and other colors
3071 */
3072 main .nav-tabs>li.active>a,
3073 main .nav-tabs>li.active>a:focus,
3074 main .nav-tabs>li.active>a:hover {
3075     background-color: rgba(255,255,255,$contentbg_transp);
3076 }
3077
3078 /*
3079  * Modal
3080  */
3081 .modal hr {
3082     border-color: #eee;
3083 }
3084
3085 /*
3086  * Framework overwrite
3087  */
3088
3089 /* jRange */
3090 .theme-frio .back-bar {
3091     height: 5px !important;
3092     border-radius: 2px;
3093     background-color: #eeeeee;
3094     background-color: #e7e7e7;
3095     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
3096     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
3097     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
3098     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
3099     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
3100     background-repeat: repeat-x;
3101     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
3102 }
3103 .theme-frio .back-bar .selected-bar {
3104     border-radius: 2px;
3105     background-color: $link_color;
3106 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
3107     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
3108     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
3109     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
3110     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
3111     background-repeat: repeat-x;
3112     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
3113 }
3114 .theme-frio .back-bar .pointer {
3115     width: 14px !important;
3116     height: 14px !important;
3117     top: -5px;
3118     -webkit-box-sizing: border-box;
3119     -moz-box-sizing: border-box;
3120     box-sizing: border-box;
3121     border-radius: 10px;
3122     border: 1px solid #AAA;
3123     background-color: #e7e7e7 !important;
3124     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
3125     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
3126     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
3127     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
3128     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
3129     background-repeat: repeat-x;
3130     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
3131 }
3132 .theme-frio .back-bar .pointer-label {
3133     color: #999;
3134 }
3135
3136 /* textcomplete for contact filtering*/
3137 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
3138     position: relative !important;
3139     top: inherit !important;
3140     bottom: inherit !important;
3141     left: inherit !important;
3142     padding: 0;
3143     margin-left: -15px;
3144     margin-right: -15px;
3145     background-color: transparent;
3146     box-shadow: none;
3147     border: none;
3148 }
3149 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
3150     padding-left: 15px;
3151     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
3152 }
3153 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
3154     display: none;
3155 }
3156 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
3157 .textcomplete-item > a {
3158     padding: 0 !important;
3159     border-left: none;
3160     background-color: transparent !important;
3161 }
3162 /* this is a little hack for texcomplete contact filter
3163 There are for some reasons empty <a> tags. I don't know why */
3164 .textcomplete-item .contact-wrapper a {
3165     padding: 0;
3166 }
3167
3168 /* hovercard fix */
3169 body .tread-wrapper .hovercard a,
3170 body .tread-wrapper .hovercard a:hover {
3171     color: $link_color;
3172 }
3173 body .tread-wrapper .hovercard:hover .hover-card-content a {
3174     color: $link_color !important;
3175 }
3176
3177 /* Pagination improvements */
3178 .pagination {
3179     text-align: center;
3180     display: block;
3181 }
3182 .pagination > li > a,
3183 .pagination > li > span {
3184     color: $link_color;
3185     float: none;
3186 }
3187 .pagination>li>a:hover,
3188 .pagination>li>span:hover {
3189     color: $link_hover_color;
3190 }
3191 .pagination > .active > a,
3192 .pagination > .active > a:focus,
3193 .pagination > .active > a:hover,
3194 .pagination > .active > span,
3195 .pagination > .active > span:focus,
3196 .pagination > .active > span:hover {
3197     background-color: $link_color;
3198     border-color: $link_color;
3199     border-radius: 3px;
3200 }
3201 .pagination li.pager_n a {
3202     margin-left: 3px;
3203     border-radius: 3px;
3204 }
3205 .pagination .pager_prev a {
3206     margin-left: -5px;
3207     margin-right: 4px;
3208     border-top-right-radius: 3px;
3209     border-bottom-right-radius: 3px;
3210 }
3211 .pagination .pager_next a {
3212     margin-left: 4px;
3213     margin-right: -5px;
3214     border-top-left-radius: 3px;
3215     border-bottom-left-radius: 3px;
3216 }
3217 .pager .next > a,
3218 .pager .previous > a {
3219     float: none;
3220     border-radius: 3px;
3221 }
3222 .pagination .disabled > a,
3223 .pager .disabled > a {
3224     display: none;
3225 }
3226
3227 /*
3228  * some temporary workarounds until this will solved
3229  * elsewhere (e.g. new templates)
3230  */
3231 section .profile-match-wrapper {
3232     float: left;
3233 }
3234
3235 /**
3236  * Login page
3237  */
3238 #login-submit-wrapper {
3239     float: right;
3240 }
3241 #lost-password-link { flex-grow: 2; }
3242 #login-lost-password-link {
3243     margin-bottom: 10px;
3244     float: right;
3245 }
3246 #div_id_remember {
3247     float: left;
3248 }
3249 #id_password_wrapper {
3250     margin-bottom: unset;
3251 }
3252 #login_openid {
3253     clear: both;
3254 }
3255 #register-link {
3256     color: white;
3257     background: #8ad0a1;
3258     width: 100%;
3259 }
3260 #login-end {
3261     clear: both;
3262 }
3263
3264 .mod-home.is-not-singleuser,
3265 .mod-login {
3266     background-color: $login_bg_color;
3267     background-image: linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0.4)), url($login_bg_image);
3268     background-size: cover;
3269     background-attachment: fixed;
3270     background-position: center;
3271     padding-top: 0;
3272 }
3273 .mod-home.is-not-singleuser nav.navbar,
3274 .mod-login nav.navbar { background-color: transparent }
3275 .mod-home.is-not-singleuser #topbar-second,
3276 .mod-login #topbar-second {
3277     background-color: transparent;
3278     box-shadow: unset;
3279     border: 0
3280 }
3281 .mod-home.is-not-singleuser .login-content,
3282 .mod-login .login-content {
3283     color: #eee;
3284     margin-top: 2.5%;
3285 }
3286
3287 .mod-home.is-not-singleuser .login-form > #login-extra-links {
3288     margin-top: 4em;
3289 }
3290
3291 .mod-home.is-not-singleuser .login-form > #login-form label,
3292 .mod-login #content #login-form label {
3293     color: #eee;
3294 }
3295
3296 .mod-home.is-not-singleuser .login-panel-content,
3297 .mod-login .login-panel-content {
3298     background-color: rgba(255,255,255,.85);
3299 }
3300
3301 .qq-upload-button {
3302     background: $nav_bg !important;
3303     color: $btn_primary_color !important;
3304     float: none;
3305     border: none;
3306     -webkit-box-shadow: none;
3307     box-shadow: none;
3308     -moz-box-shadow: none;
3309     background-image: none;
3310     text-shadow: none;
3311     border-radius: 3px;
3312     outline: 0!important;
3313     margin-bottom: 0;
3314     font-size: 14px;
3315     font-weight: 600;
3316     padding: 8px 16px;
3317     color: inherit;
3318     width: 100% !important;
3319 }
3320
3321 .qq-upload-drop-area {
3322     background: white !important;
3323     float: none;
3324     border: none;
3325     -webkit-box-shadow: none;
3326     box-shadow: none;
3327     -moz-box-shadow: none;
3328     background-image: none;
3329     text-shadow: none;
3330     border-radius: 3px;
3331     outline: 0!important;
3332     margin-bottom: 0;
3333     font-size: 14px;
3334     font-weight: 600;
3335     padding: 8px 16px;
3336     color: inherit;
3337     width: 100% !important;
3338     display: block !important;
3339     position: relative !important;
3340     border: black 1px dashed !important;
3341     margin-bottom: 5px !important;
3342     margin-top: 15px !important;
3343 }
3344
3345 /* Medium devices (desktops, 992px and up) */
3346 @media (min-width: 992px) {
3347     .mod-home.is-not-singleuser #content,
3348     .mod-login #content {
3349         margin-top: 100px!important;
3350     }
3351
3352     .mod-home.is-not-singleuser .login-form > #login-form,
3353     .mod-home.is-not-singleuser .login-form > #login-extra-links,
3354     .mod-login #content #login-form {
3355         background-color: #fff;
3356         padding: 1em;
3357         position: relative;
3358     }
3359     .mod-home.is-not-singleuser .login-form > #login-extra-links {
3360         margin-top: unset;
3361         background-color: white;
3362     }
3363
3364     .mod-home.is-not-singleuser .login-form > #login-form label,
3365     .mod-login #content #login-form label {
3366         color: #444;
3367     }
3368
3369     .mod-home.is-not-singleuser .login-form::before,
3370     .mod-login #content #login-form::before {
3371         display: block;
3372         position: absolute;
3373         content: " ";
3374         background-color: rgba(255,255,255,0.1);
3375         width:90%;
3376         height: 110%;
3377         top: -5%;
3378         left: 5%;
3379         z-index: -1;
3380     }
3381
3382     .mod-home.is-not-singleuser .login-form::after,
3383     .mod-login #content #login-form::after {
3384         display: block;
3385         position: absolute;
3386         content: " ";
3387         background-color: rgba(255,255,255,0.2);
3388         width:80%;
3389         height: 120%;
3390         top: -10%;
3391         left: 10%;
3392         z-index: -1;
3393     }
3394
3395 }
3396
3397 /* Mobile display */
3398 @media (max-width: 600px) {
3399         body {
3400                 padding-top: 95px;
3401         }
3402
3403         #friendica-logo-mask {
3404                 display: none;
3405         }
3406
3407         .container {
3408                 padding-right: 0;
3409                 padding-left: 0;
3410         }
3411
3412         .panel {
3413                 border-radius: 0;
3414                 margin-bottom: 5px;
3415         }
3416
3417         .panel .panel-body {
3418                 padding: 10px;
3419         }
3420
3421         .wall-spacer {
3422                 height: 0px;
3423         }
3424
3425         .wall-item-actions {
3426                 margin-top: 10px;
3427         }
3428
3429         .media {
3430                 margin-top: 0;
3431         }
3432
3433         .nav-pills.preferences {
3434                 right: 10px;
3435         }
3436
3437         .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 {
3438                 border-radius: 0;
3439                 padding: 10px;
3440         }
3441
3442         .row {
3443                 margin-right: 0;
3444         }
3445
3446         .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 {
3447                 padding-right: 0;
3448         }
3449
3450         .wwto .contact-photo {
3451                 height: 19px;
3452                 padding: 0;
3453                 top: 24px;
3454                 left: 24px;
3455         }
3456
3457         /*
3458                 Prevent automatic zoom on input focus on iOS
3459                 see https://stackoverflow.com/a/16255670
3460         */
3461         .form-control {
3462                 font-size: 16px;
3463         }
3464 }