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