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