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