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