]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
fix some HTML violations in frio
[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 .posted-date-selector-months{
1040     margin-left: 0;
1041     margin-bottom: 10px;
1042     width: 100%
1043 }
1044 aside #datebrowse-sidebar .posted-date-selector-months li{
1045     padding-left: 30px;
1046 }
1047 aside #datebrowse-sidebar .posted-date-selector-months li:hover{
1048     padding-left: 27px;
1049 }
1050
1051 /* vcard / h-card */
1052 aside .vcard #profile-photo-wrapper{
1053     margin: 0;
1054 }
1055 aside .vcard img.u-photo,
1056 aside img.vcard-photo {
1057     width: 100%;
1058     border-radius: 3px;
1059 }
1060 aside .vcard .tool .action{
1061     position: absolute;
1062     top:20px;
1063     right: 20px;
1064     font-size: 32px;
1065     width: 45px;
1066     height: 45px;
1067     background: rgba(0,0,0,.50);
1068     text-align: center;
1069     border-radius: 3px;
1070     opacity: 0;
1071     -webkit-transition: all 0.25s ease-in-out;
1072     -moz-transition: all 0.25s ease-in-out;
1073     -o-transition: all 0.25s ease-in-out;
1074     -ms-transition: all 0.25s ease-in-out;
1075     transition: all 0.25s ease-in-out;
1076 }
1077 aside .vcard .tool a {
1078 color: rgba(255,255,255,.85);
1079 }
1080 aside .vcard #profile-photo-wrapper:hover .tool .action {
1081     opacity: 1;
1082 }
1083 aside .vcard .profile-header {
1084     margin-bottom: 20px;
1085 }
1086 aside .vcard .fn {
1087     font-size: 20px;
1088     font-weight: bold;
1089 }
1090 aside .vcard .p-addr {
1091     font-style: italic;
1092     overflow: hidden;
1093     text-overflow: ellipsis;
1094     white-space: nowrap;
1095     padding-bottom: 2px;
1096 }
1097
1098 aside .vcard .detail {
1099     display: table;
1100     padding: 5px 0;
1101 }
1102 aside .xmpp {
1103     display: table;
1104 }
1105 aside .vcard .icon {
1106     display: table-cell;
1107     padding-right: 10px;
1108 }
1109 #profile-extra-links {
1110     margin-bottom: 20px;
1111 }
1112 aside .vcard #dfrn-request-link-button,
1113 aside .vcard #wallmessage-link-botton {
1114     width: 50%;
1115     margin: 0 0 0 -5px;
1116     float: left;
1117     padding: 0 5px;
1118 }
1119 aside .vcard #dfrn-request-link,
1120 aside .vcard #wallmessage-link {
1121     width: 100%;
1122 }
1123 /* vcard-short-info */
1124 #vcard-short-info,
1125 #nav-short-info .contact-wrapper {
1126     margin-top: 2px;
1127     height: 40px;
1128     white-space: nowrap;
1129     overflow: hidden;
1130     padding-right: 20px;
1131     margin-left: -14px;
1132 }
1133 #nav-short-info .contact-photo-wrapper.media-left {
1134     float: left;
1135 }
1136 #vcard-short-photo-wrapper img,
1137 #nav-short-info .contact-wrapper img {
1138     height: 34px;
1139     width: 34px;
1140     border-radius: 3px;
1141 }
1142 #vcard-short-desc,
1143 #nav-short-info .contact-wrapper .media-body {
1144     display: block;
1145     height: 34px;
1146     width: 100%;
1147     text-overflow: ellipsis;
1148 }
1149 #vcard-short-desc > .media-heading,
1150 #vcard-short-desc > .vcard-short-addr,
1151 #nav-short-info .contact-wrapper .media-heading,
1152 #nav-short-info .contact-wrapper #contact-entry-url-network {
1153     text-overflow: ellipsis;
1154     overflow: hidden;
1155 }
1156 #vcard-short-desc > .media-heading,
1157 #nav-short-info .contact-wrapper .media-heading {
1158     margin-bottom: 1px;
1159     font-weight: bold;
1160 }
1161 #nav-short-info .contact-wrapper .media-heading a {
1162     color: #555;
1163     font-size: 14px !important;
1164 }
1165 #vcard-short-desc > .vcard-short-addr,
1166 #nav-short-info .contact-wrapper #contact-entry-url-network {
1167     color: #777;
1168     font-size: 12px;
1169 }
1170 .network-content-wrapper > #viewcontact_wrapper-network,
1171 #nav-short-info .contact-wrapper .contact-photo-overlay,
1172 #nav-short-info .contact-wrapper .contact-actions{
1173     display: none
1174 }
1175
1176 aside #peoplefind-sidebar input,
1177 aside #follow-sidebar input {
1178     height: 30px;
1179     background-position: 10px 5px;
1180 }
1181 aside #peoplefind-sidebar label,
1182 aside #follow-sidebar label {
1183     font-weight: normal;
1184 }
1185 aside #peoplefind-sidebar .form-group-search .form-button-search,
1186 aside #follow-sidebar .form-group-search .form-button-search {
1187     padding: 2px 8px;
1188 }
1189
1190 aside #group-sidebar .group-edit-tool,
1191 aside #saved-search-list .savedsearchdrop {
1192     opacity: 0.1;
1193     transition: all 0.25s ease-in-out;
1194 }
1195 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
1196 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
1197     opacity: 0.8;
1198     transition: all 0.25s ease-in-out;
1199 }
1200 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
1201 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
1202     opacity: 1;
1203 }
1204 aside #group-sidebar li .group-checkbox {
1205     margin: 0;
1206 }
1207 aside #group-sidebar li .group-edit-tool {
1208     padding-right: 10px;
1209 }
1210 aside #group-sidebar li .group-edit-tool:first-child {
1211     padding-right: 0px;
1212 }
1213
1214 /* contact block widget */
1215 #contact-block .contact-block-content {
1216     clear: both;
1217     overflow: auto;
1218     height: auto;
1219 }
1220 #contact-block .contact-block-div {
1221     float: left;
1222     margin: 0px 5px 5px 0px;
1223 /*    height: 90px;
1224     width: 90px;*/
1225 }
1226 #contact-block contact-block-link {
1227
1228 }
1229 #contact-block .contact-block-img {
1230     height: 75px;
1231     width: 75px;
1232     border-radius: 4px;
1233 }
1234 /* Section */
1235 section ul.tabs {
1236     display: none !important;
1237 }
1238
1239 /* Jot */
1240 section #jotOpen {
1241     display: none;
1242 }
1243 #jotOpen {
1244     margin-top: 3px;
1245     float: right;
1246 }
1247 #jot-content {
1248     display: none;
1249 }
1250 .jothidden {
1251     /*display: none;*/
1252 }
1253 #jot-modal .modal-header a, #jot-modal .modal-header .btn-link,
1254 #profile-jot-submit-wrapper a, #profile-jot-submit-wrapper .btn-link {
1255     color: #555;
1256     text-transform: capitalize;
1257 }
1258 #jot-modal .modal-header {
1259     border-bottom: none;
1260 }
1261 #jot-title-wrap, #jot-category-wrap {
1262     margin-bottom: 5px;
1263 }
1264 #jot-text-wrap {
1265     margin-top: 20px;
1266 }
1267 #jot-text-wrap textarea {
1268     min-height: 100px;
1269 }
1270 #profile-jot-wrapper button#profile-jot-submit {
1271     margin-top: 5px;
1272 }
1273 #profile-jot-wrapper #character-counter {
1274     padding: 10px 15px;
1275 }
1276
1277 /* ACL */
1278 /*#jot-modal-body {
1279     height: auto;
1280     max-height: calc(100vh - 130px);
1281     overflow-y: hidden;
1282 }*/
1283 #acl-search {
1284     margin-top: 20px;
1285     /*padding: 8px;*/
1286     /*border: 1px solid #ccc;*/
1287     width: 100%;
1288 }
1289 #acl-list {
1290     display: block;
1291     border: 1px solid #ccc;
1292     overflow: auto;
1293     clear: both;
1294     min-height: 62px;
1295     margin-top: 20px;
1296     padding: 10px 10px 0px 0px;
1297     -webkit-border-radius: 4px;
1298     -moz-border-radius: 4px;
1299     border-radius: 4px;
1300 }
1301 #acl-list-content {
1302     overflow-y: auto;
1303     max-height: calc(100vh - 330px);
1304     height: auto !important;
1305 }
1306 .acl-list-item {
1307     width: 48%;
1308     width: calc(50% - 10px);
1309     border: 1px solid #ccc;
1310     margin: 0px 0px 10px 10px;
1311     padding: 5px;
1312     float: left;
1313     -webkit-border-radius: 4px;
1314     -moz-border-radius: 4px;
1315     border-radius: 4px;
1316 }
1317 .acl-list-item img {
1318     width: 40px;
1319     height: 40px;
1320     float: left;
1321     margin-right: 5px;
1322     -webkit-border-radius: 4px;
1323     -moz-border-radius: 4px;
1324     border-radius: 4px;
1325 }
1326 .acl-list-item p {
1327     margin: 0px;
1328     white-space: nowrap;
1329     overflow: hidden;
1330     text-overflow: ellipsis;
1331 }
1332 .acl-list-item.groupshow {
1333     background-color: #8DB255
1334 }
1335 .acl-list-item.grouphide {
1336     background-color: #E68364;
1337 }
1338 .acl-button-show, .acl-button-hide {
1339     float: right;
1340     margin-left: 5px;
1341 }
1342 #acl-showall.selected {
1343     background-color: #4CAF50;
1344     color: #fff;
1345 }
1346 .acl-button-show.selected {
1347     background-color: #4CAF50;
1348     color: #fff;
1349 }
1350 .acl-button-hide.selected {
1351     background-color: #F44336;
1352     color: #fff;
1353 }
1354
1355 /* Filebrowser */
1356 .fbrowser .breadcrumb {
1357     margin-bottom: 0px;
1358 }
1359 .fbrowser .path a:before {
1360     content: "";
1361     padding: 0;
1362 }
1363 .fbrowser .breadcrumb > li:last-of-type a{
1364     color: #777;
1365     pointer-events: none;
1366     cursor: default;
1367 }
1368 .fbrowser .folders {
1369     box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
1370     padding-right: 1px;
1371 }
1372 .fbrowser .folders ul {
1373     padding: 0px;
1374     margin-left: -15px;
1375     margin-bottom: 0px;
1376     overflow-y: auto;
1377     min-width: 100px;
1378     max-height: calc(100vh - 210px);
1379     line-height: 1.3;
1380 }
1381 @media (min-width: 768px) {
1382     .fbrowser .folders ul {
1383         max-height: calc(100vh - 255px);
1384     }
1385 }
1386 .fbrowser .folders li {
1387     padding-left: 20px;
1388     padding-right: 10px;
1389     padding-top: 3px;
1390     padding-bottom: 3px;
1391 }
1392 .fbrowser .folders li:hover {
1393     z-index: 2;
1394     color: #555;
1395     background-color: rgba(247, 247, 247, $contentbg_transp);
1396     border-left: 3px solid $link_color !important;
1397     padding-left: 17px;
1398 }
1399 .fbrowser .folders li a,
1400 .fbrowser .folders li a:hover {
1401     color: #555;
1402     font-size: 13px;
1403 }
1404 .fbrowser .folders + .list {
1405     padding-left: 10px;
1406 }
1407 .fbrowser .fbrowser-content-container {
1408     overflow-y: auto;
1409     max-height: calc(100vh - 175px);
1410 }
1411 @media (min-width: 768px) {
1412     .fbrowser .fbrowser-content-container {
1413         max-height: calc(100vh - 220px);
1414     }
1415 }
1416 .fbrowser.image .photo-album-image-wrapper {
1417     box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
1418 }
1419 .fbrowser .profile-rotator-wrapper {
1420     min-height: 200px;
1421 }
1422 .fbrowser .fa-spin {
1423    position: absolute;
1424    left: 45%;
1425    top: 40%;
1426    font-size: 48px;
1427    margin:0px auto;
1428 }
1429
1430 /*
1431 /* Stream
1432 */
1433 .panel {
1434     border: none;
1435     /*background-color: #fff;*/
1436     background-color: rgba(255,255,255,$contentbg_transp);
1437     box-shadow: 0 0 3px #dadada;
1438     -webkit-box-shadow: 0 0 3px #dadada;
1439     -moz-box-shadow: 0 0 3px #dadada;
1440     border-radius: 4px;
1441     position: relative;
1442 }
1443 .panel.panel-inline {
1444     margin-left: -15px;
1445     margin-right: -15px;
1446     margin-top: 15px;
1447     padding: 15px;
1448 }
1449 .panel .panel-body {
1450     padding: 15px;
1451     font-size: 14px;
1452 }
1453 .panel .panel-body .wall-item-content {
1454     color: #555;
1455 }
1456 .tread-wrapper .media {
1457     overflow: visible;
1458     word-wrap: break-word;
1459 }
1460
1461 /* Thread hover effects */
1462 .wall-item-container .wall-item-content a,
1463 .wall-item-container a,
1464 .wall-item-container .fakelink,
1465 .toplevel_item .fakelink,
1466 .toplevel_item .wall-item-container .wall-item-responses a {
1467     color: #555;
1468     -webkit-transition: all 0.25s ease-in-out;
1469     -moz-transition: all 0.25s ease-in-out;
1470     -o-transition: all 0.25s ease-in-out;
1471     -ms-transition: all 0.25s ease-in-out;
1472     transition: all 0.25s ease-in-out;
1473 }
1474
1475 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1476 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1477 .toplevel_item:hover .wall-item-content a,
1478 .toplevel_item:hover .wall-item-name,
1479 .wall-item-container:hover .wall-item-content a,
1480 .wall-item-container:hover .wall-item-name,
1481 .wall-item-container:hover .wall-item-location a {
1482     /*color: #6fdbe8;*/
1483     color: $link_color;
1484     -webkit-transition: all 0.25s ease-in-out;
1485     -moz-transition: all 0.25s ease-in-out;
1486     -o-transition: all 0.25s ease-in-out;
1487     -ms-transition: all 0.25s ease-in-out;
1488     transition: all 0.25s ease-in-out;
1489 }
1490
1491 /* wall items */
1492 .wall-item-container {
1493     position: relative;
1494 }
1495
1496 /* wall items contact photo */
1497 .contact-photo {
1498     height: 48px;
1499     width: 48px;
1500     border-radius: 3px;
1501     /*maybe some adional stuff is needed for the different screen sizes */
1502 }
1503 .contact-photo-image-wrapper {
1504     width: 100%;
1505     height: 100%;
1506     overflow: hidden;
1507     position: relative;
1508     text-align: center;
1509 }
1510 .contact-photo-overlay {
1511     width: 100%;
1512     height: 100%;
1513     position: absolute;
1514     overflow: hidden;
1515     top: 0;
1516     left: 0;
1517     border-radius: 3px;
1518     background:rgba(0,0,0,.50);
1519     text-align:center;
1520     opacity:0;
1521     -webkit-transition: opacity .25s ease;
1522     -moz-transition: opacity .25s ease;
1523 }
1524 .contact-photo-overlay:hover {
1525     opacity: 1;
1526 }
1527 .contact-photo-overlay-content {
1528     font-size: 26px;
1529     text-shadow: 1px 1px 1px #ccc;
1530     color:rgba(255,255,255,.85);
1531     height: 100%;
1532     vertical-align: bottom;
1533 }
1534 .contact-photo-xs{
1535     height: 38px;
1536     width: 38px;
1537     border-radius: 3px;
1538 }
1539 .wwto .contact-photo {
1540     width: auto;
1541     height: 25px;
1542     font-size: 8.8px;
1543     padding: 3.6px 0;
1544     border-radius: 2px;
1545     position: absolute;
1546     top: 30px;
1547     left: 30px;
1548     display: inline-block;
1549 }
1550
1551 /* wall items action dropdown menu */
1552 .nav-pills.preferences {
1553     position: absolute;
1554     right: 15px;
1555     top: 10px;
1556 }
1557 .comment .nav-pills.preferences {
1558     right: 0px;
1559     top: 0px;
1560 }
1561 .wall-item-network {
1562     font-size: 13px;
1563 }
1564
1565 /* wall items contact info */
1566 .media .media-body {
1567     font-size: 13px;
1568 }
1569 .media .media-body h4.media-heading {
1570     font-size: 14px;
1571     font-weight: 500;
1572     color: #555;
1573 }
1574 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1575     display: block;
1576 }
1577 .media .contact-info-comment {
1578     display: table-cell;
1579 }
1580 .media .contact-info-xs h5,
1581 .media .contact-info-comment {
1582     margin: 0 0 5px;
1583 }
1584 .media-heading {
1585     margin: 0 0 5px;
1586 }
1587 .wall-item-name,
1588 .shared-author {
1589     font-size: 15px;
1590     font-weight: bold;
1591 }
1592 .wall-item-name.xs {
1593     font-weight: 700;
1594     font-size: 14px;
1595 }
1596
1597 /* The lock symbol popup */
1598 #panel {
1599     position: absolute;
1600     list-style: none;
1601     background-color: $nav_bg;
1602     border: none;
1603     border-radius: 3px;
1604     float: left;
1605     min-width: 160px;
1606     max-width: 220px;
1607     padding: 10px ;
1608     margin: 2px 0 0;
1609     font-size: 14px;
1610     text-align: left;
1611     color: $nav_icon_color;
1612     z-index: 1000;
1613 }
1614
1615 /* wall items content */
1616 .wall-item-content {
1617     word-break: break-word;
1618 }
1619 .wall-item-content img {
1620     max-height: 480px;
1621     object-fit: contain;
1622 }
1623 .wall-item-body > img,
1624 .wall-item-body > a > img {
1625     border-radius: 3px;
1626 }
1627 .wall-item-body .body-attach > a {
1628     color: #555;
1629     display: inline-block;
1630 }
1631 .wall-item-body .body-attach > a div {
1632     color: #555;
1633     width: 20px;
1634 }
1635
1636 /* wall-item content elements */
1637 .shared-wrapper,
1638 .vevent {
1639     padding: 10px;
1640     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1641 }
1642 @media screen and (max-width: 767px) {
1643     .shared-wrapper,
1644     .vevent {
1645     margin-left: 0px;
1646     margin-right: 0px;
1647     }
1648 }
1649 .shared-wrapper:hover,
1650 .vevent:hover {
1651     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1652 }
1653 .shared_header {
1654     margin-left: 0px;
1655     margin-top: 0px;
1656     padding-top: 0px;
1657     margin-bottom: 10px;
1658     border-top: none;
1659     color: inherit;
1660 }
1661 blockquote.shared_content {
1662     padding: 0px;
1663     margin-left: 0px;
1664     color: inherit;
1665 }
1666 code > .hl-main {
1667     padding: 10px 10px 1px 0;
1668 }
1669 .hl-main ol {
1670     line-height: 1.7;
1671 }
1672 .type-link img.attachment-image {
1673     width: 100%;
1674 }
1675 .type-link blockquote, .type-video blockquote {
1676     margin: 0;
1677     padding: 10px 0;
1678 }
1679 .oembed.video .embed_video > div::before {
1680     font-family: FontAwesome;
1681     font-weight: normal;
1682     font-style: normal;
1683     display: inline-block;
1684     text-decoration: inherit;
1685     vertical-align: top;
1686     font-size: 3em;
1687     content: "\f01d";
1688     color: #fff;
1689     bottom: 0px;
1690     right: 10px;
1691     position: absolute;
1692 }
1693 .oembed.video .embed_video > div {
1694     background-color: rgba(0,0,0,0.2);
1695     -webkit-transition: all 0.25s ease-in-out;
1696     -moz-transition: all 0.25s ease-in-out;
1697     -o-transition: all 0.25s ease-in-out;
1698     -ms-transition: all 0.25s ease-in-out;
1699     transition: all 0.25s ease-in-out;
1700 }
1701 .oembed.video .embed_video > div:hover {
1702     background-color: rgba(0,0,0,0);
1703 }
1704 .wall-item-tags,
1705 .itemedited {
1706     margin-top: 10px;
1707     font-size: 13px;
1708 }
1709
1710 .wall-item-tags a {
1711     color: #555;
1712 }
1713
1714 .wall-item-tags a:hover {
1715     text-decoration: none;
1716 }
1717 .wall-item-bottom .label,
1718 .wall-item-bottom .label a {
1719     color: #fff;
1720 }
1721
1722 /* item social action buttons */
1723 .wall-item-actions {
1724     margin-top: 15px;
1725 }
1726 .wall-item-actions, .wall-item-actions a, .wall-item-actions button {
1727     font-size: 13px;
1728     color: #555;
1729     margin-bottom: 0;
1730 }
1731 .wall-item-actions .active {
1732     font-weight: bold;
1733 }
1734 .wall-item-actions .active:hover {
1735     color: $link_color;
1736 }
1737 .wall-item-actions-left {
1738     display: table-cell;
1739     vertical-align: middle;
1740 }
1741 .wall-item-actions-right {
1742     display: flex;
1743 }
1744 .wall-item-actions .checkbox {
1745     margin: 0;
1746     margin-left: 20px;
1747 }
1748 .wall-item-actions .button-event {
1749     padding-left: 5px;
1750     padding-right: 5px;
1751 }
1752 .wall-item-actions .button-comments,
1753 .wall-item-actions .button-votes,
1754 .wall-item-actions .button-likes {
1755     text-transform: capitalize;
1756 }
1757 .wall-item-actions button:hover {
1758     color: #555;
1759     text-decoration: underline;
1760 }
1761 .wall-item-actions .separator {
1762         margin: 0 .3em;
1763 }
1764
1765 /* wall item hover effects */
1766 .wall-item-container .wall-item-links,
1767 .wall-item-container .wall-item-actions,
1768 .wall-item-container .body-attach > a {
1769     opacity: 0.3;
1770     -webkit-transition: all 0.25s ease-in-out;
1771     -moz-transition: all 0.25s ease-in-out;
1772     -o-transition: all 0.25s ease-in-out;
1773     -ms-transition: all 0.25s ease-in-out;
1774     transition: all 0.25s ease-in-out;
1775 }
1776 .wall-item-container:hover .wall-item-links,
1777 .wall-item-container:hover .wall-item-actions,
1778 .wall-item-container:hover .body-attach > a {
1779     opacity: 0.6;
1780     -webkit-transition: all 0.25s ease-in-out;
1781     -moz-transition: all 0.25s ease-in-out;
1782     -o-transition: all 0.25s ease-in-out;
1783     -ms-transition: all 0.25s ease-in-out;
1784     transition: all 0.25s ease-in-out;
1785 }
1786 .wall-item-container .wall-item-body .body-attach > a:hover {
1787     opacity: 1;
1788 }
1789
1790 /*
1791 /* Comments
1792 */
1793 .well {
1794     border: none;
1795     box-shadow: none;
1796     /*background-color: #ededed;*/
1797     background-color: rgba(237, 237, 237, $contentbg_transp);
1798     background-image: none;
1799     margin-bottom: 1px;
1800 }
1801 .well-small {
1802     padding: 10px;
1803     border-radius: 3px;
1804 }
1805 .well hr {
1806     margin: 15px 0 10px;
1807     border-top: 1px solid #d9d9d9;
1808 }
1809 .wall-entry .well {
1810     margin-bottom: 0;
1811 }
1812 .comment-container {
1813     margin-top: 10px;
1814     margin-bottom: 0px;
1815     border-top-left-radius: 3px;
1816     border-top-right-radius: 3px;
1817     border-bottom-right-radius: 0px;
1818     border-bottom-left-radius: 0px;
1819 }
1820 .comment .media {
1821     position: relative!important;
1822     margin-top: 0;
1823 }
1824 .hide-comments-outer-wrapper {
1825 /*    text-align: center;
1826     margin-top: -18px;*/
1827 }
1828 .hide-comments-total {
1829     cursor: pointer;
1830 }
1831
1832 /*
1833 * Comment Box
1834 */
1835 .thread_level_2 .wall-item-comment-wrapper {
1836     padding-right: 5px;
1837 }
1838 .comment-edit-submit-wrapper {
1839     margin-bottom: 25px;
1840 }
1841 .comment-edit-submit-wrapper a,
1842 .comment-edit-submit-wrapper a:hover {
1843     padding-top: 5px !important;
1844     padding-bottom: 5px !important;
1845 }
1846 .comment-icon-list > li > .icon,
1847 .comment-icon-list > li > .icon:hover {
1848     color: #555;
1849     background-color: transparent;
1850 }
1851
1852 /* acpopup  + textcompletion*/
1853 .acpopup {
1854     /* max-height: 150px; */
1855     background-color: #ffffff;
1856     border-radius: 4px;
1857     overflow: auto;
1858     z-index: 100000;
1859     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1860 }
1861 nav .acpopup {
1862     /*top: 35px !important;*/
1863     margin-left: -23px;
1864 }
1865 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1866  at the beginning of this file to get rid of the !important */
1867 .textcomplete-item > a {
1868     color: #555 !important;
1869     padding: 5px 20px !important;
1870 }
1871 .textcomplete-item.active > a {
1872     background-color: rgb(247, 247, 247) !important;
1873     background-image: none !important;
1874     border-left: 3px solid $link_color;
1875     padding-left: 17px !important;
1876 }
1877 .textcomplete-item a .forum {
1878     color: $link_color;
1879 }
1880 img.acpopup-img {
1881     border-radius: 4px;
1882  }
1883
1884
1885 /* The wall-item thread levels */
1886 /*.wall-item-container.thread_level_3 {
1887   margin-left: 80px;
1888   width: calc(100% - 90px);
1889 }
1890 .wall-item-container.thread_level_4 {
1891   margin-left: 95px;
1892   width: calc(100% - 105px);
1893 }
1894 .wall-item-container.thread_level_5 {
1895   margin-left: 110px;
1896   width: calc(100% - 120px);
1897 }
1898 .wall-item-container.thread_level_6 {
1899   margin-left: 125px;
1900   width: calc(100% - 135px);
1901 }
1902 .wall-item-container.thread_level_7 {
1903   margin-left: 140px;
1904   width: calc(100% - 150px);
1905 }*/
1906
1907 .wall-item-container.thread_level_3,
1908 .wall-item-container.thread_level_4,
1909 .wall-item-container.thread_level_5,
1910 .wall-item-container.thread_level_6,
1911 .wall-item-container.thread_level_7 {
1912   margin-left: 15px;
1913
1914 }
1915 /* Menubar Tabs */
1916 section > .tabbar-wrapper {
1917 /* The tabbar shouldn't' be visibile inside
1918 the section element. Only after we have
1919 moved it to the nav through js */
1920     display: none !important;
1921 }
1922 #tabmenu,
1923 .tabbar-wrapper,
1924 .tabbar,
1925 .tabbar > li {
1926     height: 100%;
1927     /*margin-left: -15px;*/
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 #6fdbe8;*/
1947     border-bottom: 0 solid $link_color;
1948     font-size: 13px;
1949     height: 102%;
1950     transition: all .15s ease;
1951 }
1952 /*ul.tabs.visible-xs > li.active {
1953     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here
1954 }*/
1955 ul.tabs li a {
1956     margin-left: 10px;
1957     margin-right: 10px;
1958     /*color: #6fdbe8;*/
1959     color: $link_color !important;
1960 }
1961 ul.tabs li:hover, ul.tabs li.active {
1962     border-bottom-width: 4px;
1963 }
1964 ul.tabbar ul.tabs-extended li.active {
1965     width: 100%;
1966     border-bottom-width: 2px;
1967 }
1968 ul.tabbar ul.tabs-extended li.active a {
1969     background: none;
1970 }
1971 ul.dropdown-menu li:hover {
1972     border-bottom-width: 0;
1973 }
1974
1975
1976 /* Dropdown Menu */
1977 .dropdown-menu li a,
1978 .dropdown-menu li .btn-link {
1979     font-size: 13px!important;
1980     font-weight: 600!important;
1981 }
1982 .dropdown-menu li > :hover,
1983 .dropdown-menu li > :visited,
1984 .dropdown-menu li > :focus {
1985     background: 0 0;
1986 }
1987
1988 .dropdown-menu li:first-child {
1989     margin-top: 3px;
1990 }
1991
1992 /* Notificaiotn badges */
1993 .nav-notify .show {
1994     display: block;
1995 }
1996
1997 /* Media Classes */
1998 .media .time,
1999 .media .shared-time,
2000 .media .location,
2001 .media .location a {
2002     font-size: 11px;
2003     color: #bebebe;
2004 }
2005 .media-list > li {
2006     padding: 10px;
2007     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2008     position: relative;
2009 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
2010     border-left: 3px solid rgba(255,255,255,0);
2011     font-size: 12px;
2012 }
2013 .media-list > li:hover,
2014 .media-list > li.selected,
2015 .media-list > li.active {
2016     border-left: 3px solid $link_color;
2017     background-color: rgba(247, 247, 247, $contentbg_transp);
2018 }
2019
2020 /* Forms */
2021 .form-control {
2022     border: 2px solid #ededed;
2023     box-shadow: none;
2024 }
2025 .form-control:focus {
2026     /*border: 2px solid #6fdbe8;*/
2027     border: 2px solid $link_color;
2028     outline: 0;
2029     box-shadow: none;
2030 }
2031
2032
2033 .checkbox input[type="checkbox"]:focus + label::before,
2034 .checkbox input[type="radio"]:focus + label::before {
2035     /*border: 2px solid #6fdbe8;*/
2036     border: 2px solid $link_color;
2037     outline: 0;
2038     box-shadow: none;
2039 }
2040
2041 /* Search form */
2042 .form-control.form-search {
2043     border-radius: 30px;
2044     background-image: url(img/icon_search16x16.png);
2045     background-repeat: no-repeat;
2046     background-position: 10px 8px;
2047     padding-left: 34px;
2048 }
2049 .form-group-search {
2050     position: relative;
2051     width: 100%;
2052 }
2053
2054 .form-group-search .form-button-search {
2055     position: absolute;
2056     top: 4px;
2057     right: 4px;
2058     border-radius: 30px;
2059 }
2060 .search-input.form-control.form-search {
2061     width: 100%;
2062 }
2063 .search-heading {
2064     text-align: center;
2065     color: $link_color;
2066     font-size: 20px;
2067 }
2068 .search-content-wrapper > #search-header-wrapper {
2069     display: none;
2070 }
2071 .search-content-wrapper > .section-title-wrapper {
2072     display: none;
2073 }
2074 #navbar-button > #search-save-form > #search-save {
2075     margin-top: 3px;
2076 }
2077 /* Section-Content-Wrapper */
2078 #search-header-wrapper {
2079     padding: 15px;
2080     padding-bottom: 20px;
2081     margin-bottom: 20px;
2082     border: none;
2083     /*background-color: #fff;*/
2084     background-color: rgba(255,255,255,$contentbg_transp);
2085     border-radius: 4px;
2086     position: relative;
2087     /*overflow: hidden;*/
2088     color: #555;
2089     box-shadow: 0 0 3px #dadada;
2090     -webkit-box-shadow: 0 0 3px #dadada;
2091     -moz-box-shadow: 0 0 3px #dadada;
2092 }
2093
2094 /* *******
2095  * PAGES
2096  *********/
2097
2098 .generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
2099  .suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
2100 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
2101 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
2102 .message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
2103 .admin-content-wrapper, .viewcontacts-content-wrapper, .dfrn_request-content-wrapper,
2104 .friendica-content-wrapper, .credits-content-wrapper, .nogroup-content-wrapper,
2105 .profperm-content-wrapper {
2106     min-height: calc(100vh - 150px);
2107     padding: 15px;
2108     padding-bottom: 20px;
2109     margin-bottom: 20px;
2110     border: none;
2111     /*background-color: #fff;*/
2112     background-color: rgba(255,255,255,$contentbg_transp);
2113     border-radius: 4px;
2114     position: relative;
2115     /*overflow: hidden;*/
2116     color: #555;
2117     box-shadow: 0 0 3px #dadada;
2118     -webkit-box-shadow: 0 0 3px #dadada;
2119     -moz-box-shadow: 0 0 3px #dadada;
2120 }
2121
2122 .section-title-wrapper {
2123     overflow: hidden;
2124 }
2125 /* Profile-page */
2126 #profile-content-standard,
2127 #profile-content-advanced {
2128     overflow: hidden;
2129 }
2130 #profile-menu {
2131     margin-top: 20px;
2132     margin-bottom: 20px;
2133 }
2134 .contact-block-div.forumlist-profile-advanced {
2135     float: left;
2136 }
2137
2138 /* contacts page */
2139 ul.viewcontact_wrapper {
2140     margin-left: -15px;
2141     margin-right: -15px;
2142 }
2143 ul.viewcontact_wrapper > li {
2144     padding-left: 15px;
2145 }
2146 .contact-wrapper {
2147 /*    padding: 10px;
2148     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
2149     position: relative;*/
2150     /*border-left: 3px solid white;*/
2151 }
2152 .contact-wrapper .contact-photo-wrapper button {
2153     padding: 0;
2154 }
2155 .contact-wrapper.media {
2156     overflow: visible;
2157     word-wrap: break-word;
2158     margin-top: 0;
2159 }
2160 /* bootstrap hack for .media */
2161 .contact-wrapper.media .media-body {
2162     display: table-cell;
2163     width: 10000px;
2164     *width: auto;
2165     *zoom: 1;
2166 }
2167 .contact-wrapper.media:before, .media:after {
2168     content: "";
2169     display: table;
2170 }
2171 .contact-wrapper.media:after {
2172     clear: both;
2173 }
2174 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
2175     height: 80px;
2176     width: 80px;
2177 }
2178 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
2179     height: 48px;
2180     width: 48px;
2181 }
2182 .contact-wrapper .contact-photo-overlay-content.xl {
2183     font-size: 48px;
2184 }
2185 .contact-wrapper .contact-photo-menu {
2186     top: auto;
2187 }
2188
2189 .contact-entry-desc {
2190     color: #555;
2191 }
2192 .contact-entry-checkbox {
2193     margin-top: -20px;
2194 }
2195 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
2196     font-weight: bold !important;
2197     color: $link_color;
2198     font-size: 15px !important;
2199 }
2200 .contact-wrapper .contact-actions {
2201     display: flex;
2202 }
2203 .contact-wrapper .contact-action-link,
2204 .contact-wrapper .contact-action-link:hover,
2205 .textcomplete-item .contact-wrapper .contact-action-link {
2206     padding: 0 5px;
2207     color: #555;
2208     border: 0;
2209 }
2210 .contact-wrapper .contact-action-link {
2211     opacity: 0.1;
2212     transition: all 0.25s ease-in-out;
2213 }
2214 ul li:hover .contact-wrapper .contact-action-link {
2215     opacity: 0.8;
2216     transition: all 0.25s ease-in-out;
2217 }
2218 ul li:hover .contact-wrapper .contact-action-link:hover {
2219     opacity: 1;
2220 }
2221 #contacts-search-wrapper,
2222 #directory-search-wrapper{
2223     padding: 10px 0;
2224 }
2225 #contact-drop-confirm .contact-actions,
2226 #contact-drop-confirm .contact-photo-overlay,
2227 #contact-drop-confirm .contact-photo-menu {
2228     display: none;
2229 }
2230 #contact-drop-confirm #confirm-form {
2231     margin-top: 20px;
2232 }
2233
2234 /* contact-edit */
2235 #contact-edit-actions {
2236     position: absolute;
2237 }
2238 #contact-edit-status-wrapper {
2239     border: none;
2240     background-color: #E1F5FE;
2241     margin: 15px -15px;
2242 }
2243 #contact-edit-tools {
2244     margin-left: -15px;
2245     margin-right: -15px;
2246 }
2247 #contact-edit-tools > .panel {
2248     padding-left: 15px;
2249     padding-right: 15px;
2250 }
2251 #contact-edit-settings {
2252     display: block;
2253     margin: 0;
2254 }
2255
2256 /* directory page */
2257 #directory-search-heading {
2258     padding-top: 10px;
2259 }
2260
2261 /* group edit page */
2262 .group-actions {
2263     margin-top: 20px;
2264     margin-bottom: 10px;
2265     font-size: 30px;
2266 }
2267 .group-actions button,
2268 .group-actions a {
2269     font-size: 18px;
2270 }
2271 #group-edit-wrapper {
2272     display: none;
2273 }
2274 #group-update-wrapper .contact-photo-overlay {
2275     display: none;
2276 }
2277 #group-update-wrapper .viewcontact_wrapper .contact-group-actions {
2278     height: 100%;
2279     margin-top: -10px;
2280     display: flex;
2281 }
2282 #group-update-wrapper .viewcontact_wrapper .contact-action-link {
2283     opacity: 0.8;
2284     font-size: 20px;
2285     line-height: 50px;
2286 }
2287 #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
2288     opacity: 1;
2289 }
2290 #group-update-wrapper .shortmode {
2291     height: 53px;
2292     overflow: hidden;
2293 }
2294 #group-update-wrapper .shortmode .contact-photo {
2295     height: 32px;
2296     width: 32px;
2297 }
2298 #group-update-wrapper .shortmode .media {
2299     overflow: hidden;
2300 }
2301 #group-update-wrapper .shortmode .contact-entry-desc {
2302     font-size: 12px !important;
2303 }
2304 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
2305     margin: 0;
2306 }
2307 #group-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
2308     font-size: 13px !important;
2309     white-space: nowrap;
2310 }
2311 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
2312 #group-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
2313     display: none;
2314 }
2315
2316 /* private mail */
2317 .message-content-wrapper > li {
2318 /* we need this overwriting because we have no template file
2319    for the general mail page /message
2320 */
2321     list-style-type: none;
2322 }
2323 .mail-thread {
2324     max-height: calc(100vh - 200px);
2325 }
2326 #mail-conversation {
2327     overflow-y: auto;
2328     max-height: calc(100vh - 400px);
2329     max-height: auto;
2330     /*height: 500px;*/
2331     margin-bottom: 0px;
2332     padding: 0 15px;
2333 }
2334 #mail-conversation.can-reply {
2335 /*    border-bottom-left-radius: 0px;
2336     border-bottom-right-radius: 0px;*/
2337 }
2338 .mail-conv-wrapper .media .contact-photo-wrapper img {
2339     height: 48px;
2340     width: 48px;
2341 }
2342 .mail-thread #prvmail-to-label,
2343 .mail-thread #prvmail-subject-label {
2344     display: none;
2345 }
2346 .mail-thread #prvmail-message-label > label {
2347     display:none;
2348 }
2349 .mail-thread #prvmail-message-label textarea {
2350 /*    border-top: none;
2351     margin-top: -10px;
2352     border-top-left-radius: 0px;
2353     border-top-right-radius: 0px;*/
2354     max-height: 120px;
2355 }
2356 .mail-conv-wrapper {
2357     padding: 15px 0;
2358     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2359 }
2360 #message-sidebar {
2361     height: calc(100vh - 150px);
2362 }
2363 #message-preview {
2364     /*padding: 0 10px;*/
2365     height: calc(100% - 20px);
2366 }
2367 #message-preview ul {
2368     margin: 0px;
2369 }
2370 #message-preview .media-list li {
2371     padding: 0px 10px;
2372     border: none;
2373 }
2374 #message-preview .media-list li:hover {
2375     border-left: none !important;
2376 }
2377 #message-preview .media-list li a {
2378     color: $link_color;
2379 }
2380 .mail-list-outside-wrapper {
2381     padding: 5px 0;
2382     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2383 }
2384 .mail-list-outside-wrapper .contact-photo-wrapper img {
2385     height: 48px;
2386     width: 48px;
2387 }
2388
2389 #prvmail-end {
2390     clear:both;
2391 }
2392 /* photos */
2393 .photo-album-actions {
2394     margin-bottom: 10px;
2395 }
2396 .photo-album-actions .photos-order-link {
2397     float: right;
2398 }
2399 /* poke */
2400 #poke-desc {
2401     margin: 5px 0 30px;
2402 }
2403 #poke-wrapper-end {
2404     clear: both;
2405 }
2406
2407 /* Events page */
2408
2409 .fc .fc-month-view .fc-content .fc-title .item-desc:hover {
2410     color: $link_hover_color;
2411 }
2412 .fc .fc-list-item-title a {
2413     color: $link_color;
2414 }
2415 .fc .fc-list-item-title a[href]:hover {
2416     color: $link_hover_color;
2417     text-decoration: none;
2418 }
2419 /*.event-date-wrapper.medium .event-hover-short-month {
2420     color: $link_color;
2421 }*/
2422 .event-wrapper .event-owner {
2423   margin-bottom: 15px;
2424 }
2425 .event-wrapper .event-owner img {
2426     display: block;
2427 }
2428 .event-owner img {
2429     margin-right: 5px;
2430     height: 48px;
2431     width:  48;
2432     border-radius: 3px;
2433 }
2434 .event-wrapper .vevent {
2435     margin-left: 0;
2436     margin-right: 0;
2437     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2438 }
2439 .event-wrapper .event-buttons {
2440     margin-top: 15px;
2441 }
2442 #event-form-wrapper {
2443     padding-top: 5px;
2444 }
2445 #event-edit-form-wrapper {
2446     padding-top: 15px;
2447 }
2448 #event-nav a {
2449     color: #555;
2450 }
2451 #event-edit-form-wrapper #event-edit-time {
2452     padding: 10px 0;
2453 }
2454 .event-buttons .plink-event-link {
2455     margin-left: 20px;
2456 }
2457 .vevent .event-summary {
2458     font-size: 16px;
2459 }
2460 .vevent .event-description {
2461     padding: 10px 0;
2462 }
2463 .vevent .event-location .location {
2464     font-size: inherit;
2465     color: inherit;
2466 }
2467 .modal-body .vevent .event-summary {
2468     display: none;
2469 }
2470 #event-preview .vevent .event-summary {
2471     display: block;
2472 }
2473
2474 /* Event Cards */
2475 .event-card-details, .event-card-header {
2476     width: 100%;
2477 }
2478 .event-card-header, .event-card-left-date {
2479     float: left;
2480 }
2481 .vevent .event-card-header {
2482     display: table;
2483 }
2484 .event-card-left-date {
2485     width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
2486 }
2487 .event-card .event-date-wrapper > span {
2488     display: block;
2489     overflow: hidden;
2490     text-align: center;
2491     white-space: nowrap;
2492 }
2493 .event-card .event-date-wrapper .event-card-short-month {
2494     font-size: 13px;
2495     text-transform: uppercase;
2496 }
2497 .event-card .event-date-wrapper.medium .event-card-short-date {
2498     font-size: 24px;
2499     line-height: 28px;
2500     margin-top: 2px;
2501 }
2502 .event-card .event-card-content {
2503     width: 100%;
2504     padding: 0 5px 0 15px;
2505     box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, .1) inset;
2506     color: #777;
2507     position: relative;
2508 }
2509 .event-card .event-card-content .event-map-btn {
2510     position: absolute;
2511     right: 0;
2512     top:0;
2513     line-height: 15px;
2514 }
2515 .event-card .event-card-title {
2516     font-size: 14px;
2517     color: #555;
2518     line-height: 15px;
2519     font-weight: bold;
2520     margin: 0;
2521 }
2522 .event-card .event-card-location {
2523     margin-top: 10px;
2524     font-size: 13px;
2525 }
2526 .event-card .event-card-location br {
2527     content: " ";
2528 }
2529 .event-card .event-card-location br::after {
2530     content: " ";
2531 }
2532 .event-card-profile-name a {
2533     color: $link_color;
2534 }
2535 .event-card-profile-name a:hover {
2536     color: $link_hover_color;
2537 }
2538 .event-card .event-card-content .event-location-map {
2539     position: absolute;
2540     left: -9999px;
2541     top: -9999px;
2542 }
2543 .event-card .event-card-content .event-location-map .map{
2544     margin-top: 10px;
2545 }
2546 .event-card .description {
2547     margin-top: 10px;
2548     box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, .1) inset;
2549 }
2550 /* Photos Pages */
2551 #photo-photo {
2552     position: relative;
2553 }
2554 .photo-next-link, .photo-prev-link {
2555     height: 64px;
2556     margin-top: -32px;
2557     opacity: 0;
2558     position: absolute;
2559     top: 50%;
2560     transform: translateZ(0);
2561     transition: opacity .2s;
2562     /*width: 27px;*/
2563     width: 100px;
2564     z-index: 11;
2565     font-size: 64px;
2566     color: #fff;
2567     text-shadow:
2568         -1px -1px 0 #000,
2569         1px -1px 0 #000,
2570         -1px 1px 0 #000,
2571         1px 1px 0 #000;
2572 }
2573 .photo-next-link > i, .photo-prev-link > i {
2574     vertical-align: super;
2575 }
2576 .photo-next-link > i {
2577     float: right;
2578 }
2579 .photo-prev-link {
2580     left: 20px;
2581 }
2582 .photo-next-link {
2583     right: 20px;
2584 }
2585 #photo-photo:hover .photo-next-link,
2586 #photo-photo:hover .photo-prev-link {
2587     opacity: 0.4;
2588 }
2589 #photo-photo .photo-next-link:hover,
2590 #photo-photo .photo-prev-link:hover {
2591     opacity: 1;
2592     color: #fff;
2593 }
2594 .photo-comment-wrapper .comment {
2595     position: relative;
2596 }
2597 .photo-comment-wrapper .wall-item-content {
2598     color: #555;
2599     font-size: 13px;
2600 }
2601 .photo-comment-wrapper .comment-wwedit-wrapper,
2602 .photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
2603     margin-top: 15px;
2604 }
2605
2606 /* Profiles Page */
2607 .profile-listing-table {
2608     display: table;
2609     width: 100%;
2610 }
2611 .profile-listing-row {
2612     display: table-row;
2613 }
2614 .profile-listing-cell {
2615     display: table-cell;
2616 }
2617 .profile-listing-photo {
2618     width: 48px;
2619     height: 48px;
2620     margin: 10px 0px;
2621 }
2622 #profile-listing-new-link-wrapper {
2623     margin-bottom: 20px;
2624 }
2625 .panel-group-settings {
2626     margin-left: -15px;
2627     margin-right: -15px;
2628 }
2629 .panel-group-settings > .panel {
2630     padding-left: 15px;
2631     padding-right: 15px;
2632 }
2633 .profiles-content-wrapper #profile-photo-upload-section {
2634     display: none;
2635     margin-left: -15px;
2636     margin-right: -15px;
2637     margin-top: 15px;
2638     padding: 15px;
2639 }
2640 #profile-photo-upload-close {
2641     font-size: 14px;
2642 }
2643
2644 /* Settings */
2645 .section-subtitle-wrapper {
2646     padding: 1px 10px;
2647 }
2648 .panel .section-subtitle-wrapper a.accordion-toggle:before {
2649     font-family: FontAwesome;
2650     content: "\f0d7";
2651     padding-right: 5px;
2652 }
2653 .panel .section-subtitle-wrapper a.accordion-toggle.collapsed:before {
2654     font-family: FontAwesome;
2655     content: "\f0da";
2656 }
2657 #settings-nick-wrapper {
2658     margin-bottom: 20px;
2659 }
2660 .group {
2661     margin-left: 20px;
2662 }
2663
2664 /* Intro Notifications */
2665 ul.notif-network-list {
2666     margin-left: -15px;
2667     margin-right: -15px;
2668 }
2669 ul.notif-network-list > li {
2670     padding-left: 15px;
2671     padding-right: 15px;
2672 }
2673 .intro-wrapper.media {
2674     overflow: visible;
2675     word-wrap: break-word;
2676     margin-top: 0;
2677 }
2678 .intro-photo-wrapper img.intro-photo {
2679     height:80px;
2680     width: 80px;
2681     border-radius: 4px;
2682 }
2683 .intro-actions {
2684     display: flex;
2685 }
2686 .intro-enty-name h4 {
2687     font-size: 15px !important;
2688 }
2689 .intro-wrapper button.intro-action-link {
2690     opacity: 0.1;
2691     transition: all 0.25s ease-in-out;
2692 }
2693 .intro-wrapper button.intro-action-link,
2694 .intro-wrapper button.intro-action-link:hover {
2695     padding-right: 5px;
2696     padding-left: 5px;
2697     color: #555;
2698 }
2699 ul li:hover .intro-wrapper button.intro-action-link {
2700     opacity: 0.8;
2701     transition: all 0.25s ease-in-out;
2702 }
2703 ul li:hover .intro-wrapper button.intro-action-link:hover {
2704     opacity: 1;
2705 }
2706 .intro-action-buttons {
2707     margin-top: 15px;
2708     /*display: none;*/
2709     max-height: 0px;
2710     overflow: hidden;
2711     transition: max-height 0.1s ease-out;
2712 }
2713 ul.notif-network-list > li:hover .intro-action-buttons {
2714     /*display: block;*/
2715     max-height: 30px;
2716     transition: max-height 0.1s ease-in;
2717 }
2718 .intro-desc-label, .intro-url-label, .intro-network-label,
2719 .intro-location-label, .intro-gender-label, .intro-keywords-label,
2720 .intro-about-label, .intro-knowyou-label {
2721     font-weight: bold;
2722 }
2723 .intro-contact-info.xs .intro-url-label, .intro-contact-info.xs .intro-network-label,
2724 .intro-contact-info.xs .intro-location-label, .intro-contact-info.xs .intro-gender-label,
2725 .intro-contact-info.xs .intro-keywords-label, .intro-contact-info.xs .intro-about-label,
2726 .intro-contact-info.xs .intro-knowyou-label {
2727     display: block;
2728     margin-top: 5px
2729 }
2730
2731 /* Notifications Page */
2732 ul.notif-network-list li.unseen {
2733     background-color: #f3fcfd;
2734 }
2735 .notif-item img.notif-image {
2736     height: 48px;
2737     width: 48px;
2738     border-radius: 4px;
2739 }
2740 .notif-item .notif-desc-wrapper {
2741     height: 48px;
2742 }
2743 .notif-item .notif-desc-wrapper a {
2744     height: 100%;
2745     display: block;
2746     color: #555;
2747     font-size: 13px;
2748     font-weight: 600;
2749 }
2750
2751 /* Search Page */
2752
2753 /* This is a little bit hacky. Since the search page is used for diferent
2754 content types we can't apply the generic-page-wrapper class.
2755 So we apply the css of the generic-page-wrapper class to the ul element with some
2756 little modifications to emulate a standard page template */
2757 .search-content-wrapper > ul.viewcontact_wrapper {
2758     min-height: calc(100vh - 150px);
2759     padding-top: 15px;
2760     padding-bottom: 20px;
2761     margin: 0;
2762     margin-bottom: 20px;
2763     border: none;
2764     /*background-color: #fff;*/
2765     background-color: rgba(255,255,255,$contentbg_transp);
2766     border-radius: 4px;
2767     position: relative;
2768     /*overflow: hidden;*/
2769     color: #555;
2770     box-shadow: 0 0 3px #dadada;
2771     -webkit-box-shadow: 0 0 3px #dadada;
2772     -moz-box-shadow: 0 0 3px #dadada;
2773 }
2774
2775 /* Help Page */
2776 section.help-content-wrapper h1 {
2777     padding-bottom: 0.3em;
2778     font-size: 1.8em;
2779     border-bottom: 1px solid #ddd;
2780 }
2781 section.help-content-wrapper h2 {
2782     padding-bottom: 0.3em;
2783     font-size: 1.5em;
2784     border-bottom: 1px solid #ddd;
2785 }
2786 section.help-content-wrapper h3 {
2787     font-size: 1.2em;
2788 }
2789 section.help-content-wrapper h4 {
2790     font-size: 1em;
2791 }
2792 section.help-content-wrapper h1,
2793 section.help-content-wrapper h2,
2794 section.help-content-wrapper h3,
2795 section.help-content-wrapper h4,
2796 section.help-content-wrapper h5,
2797 section.help-content-wrapper h6 {
2798     margin-top: 24px;
2799     margin-bottom: 16px;
2800     font-weight: 600;
2801     line-height: 1.25;
2802 }
2803 section.help-content-wrapper p {
2804     margin: 0.4em 0;
2805 }
2806 section.help-content-wrapper p,
2807 section.help-content-wrapper a,
2808 section.help-content-wrapper li {
2809     line-height: 1.6;
2810     font-size: 0.96em;
2811 }
2812
2813 /* Register Page*/
2814 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
2815     margin-top: 20px;
2816 }
2817 #register-openid-end, #register-nickname-end
2818 {
2819     margin-top: 40px;
2820 }
2821
2822 /*
2823 * Overwriting for transparency and other colors
2824 */
2825 main .nav-tabs>li.active>a,
2826 main .nav-tabs>li.active>a:focus,
2827 main .nav-tabs>li.active>a:hover {
2828     background-color: rgba(255,255,255,$contentbg_transp);
2829 }
2830
2831 /*
2832  * Modal
2833  */
2834 .modal hr {
2835     border-color: #eee;
2836 }
2837
2838 /*
2839  * Framework overwrite
2840  */
2841
2842 /* jRange */
2843 .theme-frio .back-bar {
2844     height: 5px !important;
2845     border-radius: 2px;
2846     background-color: #eeeeee;
2847     background-color: #e7e7e7;
2848     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2849     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2850     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2851     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2852     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2853     background-repeat: repeat-x;
2854     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2855 }
2856 .theme-frio .back-bar .selected-bar {
2857     border-radius: 2px;
2858     background-color: $link_color;
2859 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
2860     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
2861     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
2862     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
2863     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
2864     background-repeat: repeat-x;
2865     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
2866 }
2867 .theme-frio .back-bar .pointer {
2868     width: 14px !important;
2869     height: 14px !important;
2870     top: -5px;
2871     -webkit-box-sizing: border-box;
2872     -moz-box-sizing: border-box;
2873     box-sizing: border-box;
2874     border-radius: 10px;
2875     border: 1px solid #AAA;
2876     background-color: #e7e7e7 !important;
2877     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2878     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
2879     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2880     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2881     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
2882     background-repeat: repeat-x;
2883     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
2884 }
2885 .theme-frio .back-bar .pointer-label {
2886     color: #999;
2887 }
2888
2889 /* textcomplete for contact filtering*/
2890 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
2891     position: relative !important;
2892     top: inherit !important;
2893     bottom: inherit !important;
2894     left: inherit !important;
2895     padding: 0;
2896     margin-left: -15px;
2897     margin-right: -15px;
2898     background-color: transparent;
2899     box-shadow: none;
2900     border: none;
2901 }
2902 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
2903     padding-left: 15px;
2904     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
2905 }
2906 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
2907     display: none;
2908 }
2909 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list
2910 .textcomplete-item > a {
2911     padding: 0 !important;
2912     border-left: none;
2913     background-color: transparent !important;
2914 }
2915 /* this is a little hack for texcomplete contact filter
2916 There are for some reasons empty <a> tags. I don't know why */
2917 .textcomplete-item .contact-wrapper a {
2918     padding: 0;
2919 }
2920
2921 /* hovercard fix */
2922 body .tread-wrapper .hovercard a,
2923 body .tread-wrapper .hovercard a:hover {
2924     color: $link_color;
2925 }
2926 body .tread-wrapper .hovercard:hover .hover-card-content a {
2927     color: $link_color !important;
2928 }
2929
2930 /* Pagination improvements */
2931 .pagination {
2932     text-align: center;
2933     display: block;
2934 }
2935 .pagination > li > a,
2936 .pagination > li > span {
2937     color: $link_color;
2938     float: none;
2939 }
2940 .pagination>li>a:hover,
2941 .pagination>li>span:hover {
2942     color: $link_hover_color;
2943 }
2944 .pagination > .active > a,
2945 .pagination > .active > a:focus,
2946 .pagination > .active > a:hover,
2947 .pagination > .active > span,
2948 .pagination > .active > span:focus,
2949 .pagination > .active > span:hover {
2950     background-color: $link_color;
2951     border-color: $link_color;
2952     border-radius: 3px;
2953 }
2954 .pagination li.pager_n a {
2955     margin-left: 3px;
2956     border-radius: 3px;
2957 }
2958 .pagination .pager_prev a {
2959     margin-left: -5px;
2960     margin-right: 4px;
2961     border-top-right-radius: 3px;
2962     border-bottom-right-radius: 3px;
2963 }
2964 .pagination .pager_next a {
2965     margin-left: 4px;
2966     margin-right: -5px;
2967     border-top-left-radius: 3px;
2968     border-bottom-left-radius: 3px;
2969 }
2970 .pager .next > a,
2971 .pager .previous > a {
2972     float: none;
2973     border-radius: 3px;
2974 }
2975 .pagination .disabled > a,
2976 .pager .disabled > a {
2977     display: none;
2978 }
2979
2980 /*
2981  * some temporary workarounds until this will solved
2982  * elsewhere (e.g. new templates)
2983  */
2984 section .profile-match-wrapper {
2985     float: left;
2986 }
2987