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