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