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