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