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