]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/css/style.css
Merge pull request #2575 from annando/1606-shared-template
[friendica.git] / view / theme / frio / css / style.css
1 /*
2 To change this license header, choose License Headers in Project Properties.
3 To change this template file, choose Tools | Templates
4 and open the template in the editor.
5 */
6 /* 
7     Created on : 17.02.2016, 23:55:45
8     Author     : rabuzarus
9 */
10
11 /* Imports */
12 /*@import url("frameworks/bootstrap/css/bootstrap.min.css");
13 @import url("frameworks/bootstrap/css/bootstrap-theme.min.css");
14 @import url("frameworks/font-awesome/css/font-awesome.min.css");
15 @import url("frameworks/jasny/css/jasny-bootstrap.min.css");
16 @import url("frameworks/bootstrap-select/css/bootstrap-select.min.css");
17 @import url("frameworks/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css");
18 @import url("frameworks/ekko-lightbox/ekko-lightbox.min.css");
19 @import url("frameworks/justifiedGallery/justifiedGallery.min.css");
20 @import url("frameworks/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css");
21 @import url("font/open_sans/open-sans.css");
22 @import url("css/hovercard.css");*/
23
24
25 body {
26     padding-top: 110px;
27     background-color: $bgcolor;
28     background-image: url("$background_image");
29     background-size: $background_size_img;
30     background-attachment: fixed;
31     color: #777;
32     /*color: #555;*/
33     font-family: 'Open Sans',sans-serif;
34 }
35 body a {
36     /*color: #555;*/
37     /*color: #6fdbe8;*/
38     color: $link_color;
39     text-decoration: none;
40 }
41
42 body a:hover, body a:focus, body a:active, body a.active, body .btn-link:hover{
43     /*color: #59d6e4;*/
44     color: $link_hover_color;
45     text-decoration: none;
46 }
47
48 .wall-item-container a:hover {
49     text-decoration: underline;
50 }
51
52 hr {
53     margin-top: 10px;
54     margin-bottom: 10px;
55 }
56 aside hr,
57 section hr {
58     border-color: rgba(238, 238, 238, $contentbg_transp);
59 }
60 iframe, img {
61     max-width: 100%;
62 }
63 .clear {
64     clear: both;
65 }
66 .no-padding {
67     padding: 0;
68 }
69 .fakelink {
70     cursor: pointer;
71 }
72
73 /*
74 * standard page elements
75 */
76 #back-to-top {
77     display: none;
78     cursor: pointer;
79     color: white;
80     position: fixed;
81     z-index: 49;
82     right: 20px;
83     bottom: 20px;
84     opacity: 1;
85     font-size: 2.9em;
86     padding: 0 12px 0 12px;
87     border-radius: 10px;
88     background-color: #aaa;
89     line-height: 1.5;
90 }
91
92 a#item-delete-selected {
93     cursor: pointer;
94     color: white;
95     position: fixed;
96     z-index: 49;
97     right: 20px;
98     top: 100px;
99     opacity: 0.8;
100     font-size: 2.9em;
101     padding: 0 12px 0 12px;
102     border-radius: 10px;
103     background-color: $link_color;
104     line-height: 1.5;
105     display: none;
106 }
107
108 /*
109 * Overwriting and Extend Bootstrap
110 */
111 .label, .label a {
112     color: #fff;
113 }
114
115 /* Buttons */
116
117 .btn {
118     float: none;
119     border: none;
120     -webkit-box-shadow: none;
121     box-shadow: none;
122     -moz-box-shadow: none;
123     background-image: none;
124     text-shadow: none;
125     border-radius: 3px;
126     outline: 0!important;
127     margin-bottom: 0;
128     font-size: 14px;
129     font-weight: 600;
130     padding: 8px 16px;
131 }
132
133 .btn-default {
134     background: #ededed;
135     color: #7a7a7a;
136 }
137 .btn-sm {
138     padding: 4px 8px;
139     font-size: 12px;
140 }
141 .btn-small {
142     padding: 6px 10px;
143     font-size: 12px;
144     line-height: 1.5;
145     border-radius: 3px;
146 }
147 .btn-primary {
148     background: $nav_bg;
149     color: $btn_primary_color !important;
150 }
151 .btn-primary:hover, .btn-primary:focus {
152     background: $btn_primary_hover_color;
153     text-decoration: none;
154 }
155 .btn-primary:active, .btn-primary.active {
156     outline: 0;
157     background: $btn_primary_hover_color !important;
158 }
159 .btn-link {
160 /*    color: #6fdbe8;*/
161     color: $link_color;
162 }
163 .btn-link:focus, .btn-link:hover {
164     color: #23527c;
165 }
166 /*.btn-info {
167     background: #6fdbe8;
168     color: #fff!important;
169 }
170 .btn-info:hover, .btn-info:focus {
171     background: #59d6e4!important;
172     text-decoration: none;
173 }
174 .btn-info:active, .btn-info.active {
175     outline: 0;
176     background: #59d6e4;
177 }*/
178
179 .btn-main {
180     /*background: #6fdbe8;*/
181     background: $link_color;
182     color: #fff!important;
183 }
184 .btn-main:hover, .btn-main:focus {
185     /*background: #59d6e4!important;*/
186     background: $link_hover_color !important;
187     text-decoration: none;
188 }
189 .btn-main:active, .btn-main.active {
190     outline: 0;
191     /*background: #59d6e4;*/
192     background: $link_hover_color;
193 }
194
195 .form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn {
196     padding: .275rem .75rem;
197     /*font-size: .875rem;*/
198     line-height: 1.5;
199     height: 30px;
200     border-radius: .2rem;
201 }
202 /* Bootstrap media class fix/hack
203  * This is a test. I thought it does have some
204  * issues in some corner cases. Maybe we remove
205  * once more
206  * https://github.com/twbs/bootstrap/issues/6053
207  */
208 .media, .media-body {
209     overflow: visible;
210 }
211 .media .media-body {
212     display: table-cell;
213     width: 10000px;
214     *width: auto;
215     *zoom: 1;
216 }
217 .media:before, .media:after {
218     content: "";
219     display: table;
220 }
221 .media:after {
222     clear: both;
223 }
224
225 /* Badges */
226 .badge {
227     vertical-align: baseline;
228     background-color: $link_color;
229     border-radius: 4px;
230 }
231 aside .badge {
232     opacity: 0.7;
233 }
234
235
236 header #site-location {
237     display: none;
238 }
239 header #banner {
240     position: fixed;
241     top: 0px;
242 /*    width: 33%;
243     margin-left: 33%;
244     margin-right: 33%;*/
245     left:49%;
246     right: 49%;
247     z-index: 1040;
248     margin-top: 14px;
249     text-align: center;
250     text-shadow: 1px 1px 2px rgba(0,0,0,.5);
251     font-size: 14px;
252     font-family: tahoma, "Lucida Sans", sans;
253     color: #fff;
254     font-weight: bold;
255     whitespace: nowrap;
256     padding-left: 55px;
257 }
258 header #banner #logo-img, 
259 .navbar-brand #logo-img {
260     /*mask: url('network#m1');*/
261     /*mask-image: url('img/friendica-25.png');*/
262     -webkit-mask-image: url('img/friendica-25.png');
263     background-color: $nav_icon_color;
264     height: 25px;
265     width: 25px;
266     margin-left: auto;
267     margin-right: auto;
268 }
269
270 #navbrand-container {
271     display: flex;
272 }
273 #navbrand-container #navbar-brand-text {
274     padding-left: 5px;
275 }
276
277 /* NavBar */
278 .topbar {
279     position: fixed;
280     display: block;
281     height: 50px;
282     width: 100%;
283     padding-left: 15px;
284     padding-right: 15px
285 }
286 .topbar ul.nav {
287     float: left
288 }
289 .topbar ul.nav>li {
290     float: left
291 }
292 @media (min-width: 992px) {
293 .topbar ul.nav>li>a {
294     padding-top: 15px;
295     padding-bottom: 15px;
296     line-height: 20px
297 }
298 }
299 @media (max-width: 991px) {
300     .topbar ul.nav>li>a { padding-left: 10px; padding-right: 10px; };
301 }
302 .topbar .dropdown-footer {
303     margin: 10px
304 }
305 .topbar .dropdown-header {
306     font-size: 16px;
307     padding: 3px 10px;
308     margin-bottom: 10px;
309     font-weight: 300;
310     color: #bebebe
311 }
312 .topbar .dropdown-header .dropdown-header-link {
313     position: absolute;
314     top: 2px;
315     right: 10px
316 }
317 .topbar .dropdown-header .dropdown-header-link a {
318     /*color: #6fdbe8!important;*/
319     color: $link_color !important;
320     font-size: 12px;
321     font-weight: 400
322 }
323 .topbar .dropdown-header:hover {
324     color: #bebebe
325 }
326 #topbar-first,
327 nav.navbar {
328     background-color: $nav_bg;
329     top: 0;
330     z-index: 1030;
331     color: $nav_icon_color;
332 }
333 #topbar-first .nav>li>a:hover,
334 #topbar-first .nav>li>a:focus,
335 #topbar-first .nav>.open>a,
336 nav.navbar .nav>li>a:hover,
337 nav.navbar .nav>li>a:focus{
338     background-color: $nav_icon_hover_color;
339 }
340 #topbar-first .nav>.account {
341     height: 50px;
342     margin-left: 20px
343 }
344 #topbar-first .nav>.account img {
345     margin-left: 10px;
346     height: 32px;
347     width: 32px;
348     border-radius: 3px;
349 }
350 #topbar-first .nav>.account .dropdown-toggle {
351     padding: 10px 5px 8px;
352     line-height: 1.1em;
353     text-align: left
354 }
355 #topbar-first .nav>.account .dropdown-toggle span {
356     font-size: 12px
357 }
358 #topbar-first .topbar-brand {
359     position: relative;
360     z-index: 2
361 }
362 #topbar-first .topbar-actions {
363     position: relative;
364     z-index: 3
365 }
366 #topbar-first .topbar-nav {
367     /*position: absolute;*/
368     left: 0;
369     right: 0;
370     text-align: center;
371     z-index: 1
372 }
373 #topbar-first .topbar-nav .nav-segment {
374     position: relative;
375     text-align: left
376 }
377 #topbar-first .topbar-nav .nav-segment>a {
378 /*    padding: 5px 10px;
379     margin: 10px 2px;*/
380     display: inline-block;
381 /*    border-radius: 2px;*/
382     text-decoration: none;
383     text-align: left
384 }
385 #topbar-first .topbar-nav .nav-segment .nav-notify {
386     position: absolute;
387     top: 4px;
388     right: -2px;
389     background-color: #ff8989;
390     
391 /*    text-transform: uppercase;
392     display: inline-block;
393     padding: 3px 5px 4px;
394     font-weight: 600;
395     font-size: 10px!important;
396     color: #fff!important;
397     vertical-align: baseline;
398     white-space: nowrap;
399     text-shadow: none;
400     display: none;*/
401 }
402 #topbar-first #intro-update{
403     cursor: pointer;
404 }
405 #topbar-first .topbar-nav .arrow:after {
406     position: absolute;
407     display: block;
408     width: 0;
409     height: 0;
410     border-color: transparent;
411     border-style: solid;
412     border-width: 10px;
413     content: " ";
414     top: 1px;
415     margin-left: -10px;
416     border-top-width: 0;
417     border-bottom-color: #fff;
418     z-index: 1035
419 }
420 #topbar-first .topbar-nav .arrow {
421     position: absolute;
422     display: block;
423     width: 0;
424     height: 0;
425     border-color: transparent;
426     border-style: solid;
427     z-index: 1001;
428     border-width: 11px;
429     left: 50%;
430     margin-left: -18px;
431     border-top-width: 0;
432     border-bottom-color: rgba(0, 0, 0, .15);
433     top: -19px;
434     z-index: 1035
435 }
436 #topbar-first .topbar-nav .dropdown-menu {
437     width: 350px;
438     margin-left: -148px
439 }
440 #topbar-first .topbar-nav .dropdown-menu ul.media-list {
441     max-height: 400px;
442     overflow: auto
443 }
444 #topbar-first .topbar-nav .dropdown-menu li {
445     position: relative
446 }
447 #topbar-first .topbar-nav .dropdown-menu li i.approval {
448     position: absolute;
449     left: 2px;
450     top: 36px;
451     font-size: 14px
452 }
453 #topbar-first .topbar-nav .dropdown-menu li i.accepted {
454     color: #5cb85c
455 }
456 #topbar-first .topbar-nav .dropdown-menu li i.declined {
457     color: #d9534f
458 }
459 #topbar-first .topbar-nav .dropdown-menu li .media {
460     position: relative
461 }
462 #topbar-first .topbar-nav .dropdown-menu li .media .img-space {
463     position: absolute;
464     top: 14px;
465     left: 14px
466 }
467 #topbar-first .dropdown-footer {
468     margin: 10px 10px 5px
469 }
470 #topbar-first a,
471 nav.navbar a {
472     /*color: #fff*/
473     color: $nav_icon_color;
474 }
475 #topbar-first .caret {
476     border-top-color: #bebebe
477 }
478 #topbar-first .btn-group>a {
479     background-color: #7f9baa
480 }
481 #topbar-first .btn-enter {
482     background-color: #7f9baa;
483     margin: 6px 0
484 }
485 #topbar-first .btn-enter:hover {
486     background-color: #89a2b0
487 }
488
489
490 /* Notification Menu */
491 #topbar-first #nav-notifications-menu {
492     max-height: 400px;
493 }
494 #topbar-first #nav-notifications-menu a {
495     color: #555;
496     padding: 0;
497 }
498 #topbar-first #nav-notifications-menu li.notif-entry {
499     color: #555;
500     padding: 10px;
501     border-bottom: 1px solid #eee;
502     position: relative;
503     border-left: 3px solid #fff;
504     font-size: 12px;
505 }
506
507 #topbar-first #nav-notifications-menu li.notify-unseen {
508     border-left: 3px solid #f3fcfd;
509     background-color: #f3fcfd;
510 }
511 #topbar-first #nav-notifications-menu li.notif-entry:hover {
512     background-color: #f7f7f7;
513     /*border-left: 3px solid #6fdbe8;*/
514     border-left: 3px solid $link_color;
515 }
516 /*#topbar-first #nav-notifications-menu i.accepted {
517     color: #6fdbe8!important
518 }
519 #topbar-first #nav-notifications-menu i.declined {
520     color: #ff8989!important
521 }*/
522 #topbar-first #nav-notifications-menu li.placeholder {
523     border-bottom: none
524 }
525 #topbar-first #nav-notifications-menu .media .media-body {
526     font-size: 13px!important;
527     font-weight: 600!important;
528     cursor: pointer;
529 }
530 #topbar-first #nav-notifications-menu .media .media-body .contactname {
531     font-weight: bold;
532 }
533 #topbar-first #nav-notifications-menu .media .media-body .label {
534     padding: .1em .5em
535 }
536 #topbar-first #nav-notifications-menu li.notif-entry .media-object a img {
537     height: 32px;
538     width: 32px;
539     border-radius: 3px;
540 }
541 /* The Top Nav Bar user menu */
542 #topbar-first .account .user-title {
543     text-align: right;
544     margin-top: 7px;
545 }
546 #topbar-first .account .user-title span {
547     color: $nav_icon_color;
548 }
549 #topbar-first .account #main-menu .nav-notify {
550     position: absolute;
551     top: 4px;
552     right: -2px;
553     background-color: #ff8989;
554 }
555 #myNavmenu li,
556 #myNavmenu a {
557     background-color: $nav_bg;
558     color: $nav_icon_color;
559 }
560 #myNavmenu li.nav-sitename {
561     font-weight: bold;
562 }
563 #topbar-first .dropdown.account>a,
564 #topbar-first .dropdown.account.open>a,
565 #topbar-first .dropdown.account>a:hover,
566 #topbar-first .dropdown.account.open>a:hover {
567     background-color: $nav_bg;
568 }
569 #topbar-first .dropdown.account li#nav-sitename {
570     padding-left: 15px;
571     padding-right: 15px;
572     font-weight: bold;
573     word-break: break-word;
574 }
575 #topbar-first .dropdown.account li#nav-sitename:hover {
576     border: none;
577     background-color: $nav_bg;
578 }
579 /* Nav Search */
580 #topbar-first #search-box .navbar-form {
581     margin: 0px;
582     padding: 10px 15px;
583 }
584 #topbar-first #search-box .form-search {
585     height: 25px;
586     font-size: 13px;
587     background-position: 8px 4px;
588 }
589 #topbar-first #search-box .btn {
590     font-size: 10px;
591     padding: 1px 8px;
592 }
593
594 /* second topbar */
595 #topbar-second {
596     height: 40px;
597     top: 50px;
598     background-color: #fff;
599     z-index: 1029;
600     background-image: none;
601     -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
602     -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
603     box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
604     border-bottom: 1px solid #d4d4d4
605 }
606 #topbar-second > .container {
607     height: 100%;
608 }
609 @media screen and (max-width: 767px) {
610     #topbar-second > .container,
611     #topbar-second #navbar-button {
612         padding: 0;
613     }
614 }
615 #topbar-second .dropdown-menu {
616     padding-top: 0;
617     padding-bottom: 0
618 }
619 #topbar-second .dropdown-menu .divider {
620     margin: 0
621 }
622 #topbar-second #space-menu-dropdown,
623 #topbar-second #search-menu-dropdown {
624     width: 400px
625 }
626 #topbar-second #space-menu-dropdown .media-list,
627 #topbar-second #search-menu-dropdown .media-list {
628     max-height: 400px;
629     overflow: auto
630 }
631 @media screen and (max-width: 768px) {
632     #topbar-second #space-menu-dropdown .media-list,
633     #topbar-second #search-menu-dropdown .media-list {
634         max-height: 200px
635     }
636 }
637 #topbar-second #space-menu-dropdown form,
638 #topbar-second #search-menu-dropdown form {
639     margin: 10px
640 }
641 #topbar-second #space-menu-dropdown .search-reset,
642 #topbar-second #search-menu-dropdown .search-reset {
643     position: absolute;
644     color: #999;
645     margin: 10px;
646     top: 8px;
647     right: 10px;
648     display: none;
649     cursor: pointer
650 }
651 #topbar-second .nav>li>a {
652     padding: 6px 13px 0;
653     text-decoration: none;
654     text-shadow: none;
655     font-weight: 600;
656     font-size: 10px;
657     text-transform: uppercase;
658     text-align: center;
659     min-height: 49px
660 }
661 #topbar-second .nav>li>a:hover,
662 #topbar-second .nav>li>a:active,
663 #topbar-second .nav>li>a:focus {
664     /*border-bottom: 3px solid #6fdbe8;*/
665     border-bottom: 3px solid $link_color;
666     background-color: #f7f7f7;
667     color: #555;
668     text-decoration: none
669 }
670 #topbar-second .nav>li>a i {
671     font-size: 14px
672 }
673 #topbar-second .nav>li>a .caret {
674     border-top-color: #7a7a7a
675 }
676 #topbar-second .nav>li>ul>li>a {
677     border-left: 3px solid #fff;
678     background-color: #fff;
679     color: #555
680 }
681 #topbar-second .nav>li>ul>li>a:hover,
682 #topbar-second .nav>li>ul>li>a.active {
683     /*border-left: 3px solid #6fdbe8;*/
684     border-left: 3px solid $link_color;
685     background-color: #f7f7f7;
686     color: #555
687 }
688 #topbar-second .nav>li.active>a {
689     min-height: 46px
690 }
691 #topbar-second .nav>li>a#space-menu {
692     padding-right: 13px;
693     border-right: 1px solid #ededed
694 }
695 #topbar-second .nav>li>a#search-menu {
696     padding-top: 15px
697 }
698 #topbar-second .nav>li>a:hover,
699 #topbar-second .nav .open>a,
700 #topbar-second .nav>li.active {
701     /*border-bottom: 3px solid #6fdbe8;*/
702     border-left: 3px solid $link_color;
703     background-color: #f7f7f7;
704     color: #555
705 }
706 #topbar-second .nav>li.active>a:hover {
707     border-bottom: none
708 }
709 #topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p {
710     color: #bebebe;
711     font-size: 11px;
712     margin: 0;
713     font-weight: 400
714 }
715
716
717 /* Dropdown Menus */
718 .nav-pills .dropdown-menu,
719 .nav-tabs .dropdown-menu,
720 .account .dropdown-menu,
721 .contact-photo-wrapper .dropdown-menu {
722     background-color: $nav_bg;
723     border: none
724 }
725 .nav-pills .dropdown-menu li.divider,
726 .nav-tabs .dropdown-menu li.divider,
727 .account .dropdown-menu li.divider,
728 .contact-photo-wrapper .dropdown-menu li.divider {
729     background-color: $menu_background_hover_color;
730     border-bottom: none;
731     margin: 9px 1px!important
732 }
733 .nav-pills .dropdown-menu li,
734 .nav-tabs .dropdown-menu li,
735 .account .dropdown-menu li,
736 .contact-photo-wrapper .dropdown-menu li {
737     border-left: 3px solid $nav_bg;
738 }
739 .nav-pills .dropdown-menu li a,
740 .nav-tabs .dropdown-menu li a,
741 .account .dropdown-menu li a,
742 .contact-photo-wrapper .dropdown-menu li a {
743     color: $nav_icon_color;
744     font-weight: 400;
745     font-size: 13px;
746     padding: 4px 15px
747 }
748 .nav-pills .dropdown-menu li a i,
749 .nav-tabs .dropdown-menu li a i,
750 .account .dropdown-menu li a i,
751 .contact-photo-wrapper .dropdown-menu li a i {
752     margin-right: 5px;
753     font-size: 14px;
754     display: inline-block;
755     width: 14px
756 }
757 .nav-pills .dropdown-menu li a:hover,
758 .nav-tabs .dropdown-menu li a:hover,
759 .account .dropdown-menu li a:hover,
760 .contact-photo-wrapper .dropdown-menu li a:hover,
761 .nav-pills .dropdown-menu li a:visited,
762 .nav-tabs .dropdown-menu li a:visited,
763 .account .dropdown-menu li a:visited,
764 .contact-photo-wrapper .dropdown-menu li a:visited,
765 .nav-pills .dropdown-menu li a:hover,
766 .nav-tabs .dropdown-menu li a:hover,
767 .account .dropdown-menu li a:hover,
768 .contact-photo-wrapper .dropdown-menu li a:hover,
769 .nav-pills .dropdown-menu li a:focus,
770 .nav-tabs .dropdown-menu li a:focus,
771 .account .dropdown-menu li a:focus,
772 .contact-photo-wrapper .dropdown-menu li a:focus {
773     background: 0 0
774 }
775 .nav-pills .dropdown-menu li:hover,
776 .nav-tabs .dropdown-menu li:hover,
777 .account .dropdown-menu li:hover,
778 .contact-photo-wrapper .dropdown-menu li:hover,
779 .nav-pills .dropdown-menu li.selected,
780 .nav-tabs .dropdown-menu li.selected,
781 .account .dropdown-menu li.selected,
782 .contact-photo-wrapper .dropdown-menu li.selected {
783     /*border-left: 3px solid #6fdbe8;*/
784     border-left: 3px solid $link_color;
785     color: #fff!important;
786     background-color: $menu_background_hover_color !important
787 }
788 .nav-pills.preferences .dropdown .dropdown-toggle {
789     color: #bebebe
790 }
791 .nav-pills.preferences .dropdown.open .dropdown-toggle,
792 .nav-pills.preferences .dropdown.open .dropdown-toggle:hover {
793     background-color: $nav_bg
794 }
795
796 .nav-pills.preferences .dropdown .dropdown-toggle {
797     padding: 2px 10px;
798 }
799
800
801 /*
802  * Aside
803  *
804  */
805
806 aside .widget,
807 .nav-container .widget {
808     border: none;
809     color: #777;
810     /*background-color: #fff;*/
811     background-color: rgba(255,255,255,$contentbg_transp);
812     box-shadow: 0 0 3px #dadada;
813     -webkit-box-shadow: 0 0 3px #dadada;
814     -moz-box-shadow: 0 0 3px #dadada;
815     border-radius: 4px;
816     position: relative;
817     margin-bottom: 20px;
818     padding: 10px;
819     font-size: 13px;
820 }
821 aside .widget h3,
822 .nav-container .widget h3 {
823     font-weight: bold;
824     font-size: 16px;
825     margin: 0;
826     padding-bottom: 20px;
827 }
828
829 aside .widget ul,
830 .nav-container .widget ul {
831     padding: 0px;
832     margin-top: 0px;
833     margin-bottom: 0px;
834     margin-left: -10px;
835     margin-right: -10px;
836     /*padding-left: 10px;*/
837     list-style: none;
838 }
839
840 aside .widget li,
841 .nav-container .widget li {
842     padding-top: 2px;
843     padding-bottom: 2px;
844     padding-left: 20px;
845     padding-right: 20px;
846 }
847 aside .widget li:hover,
848 aside .widget li.selected,
849 .nav-container .widget li:hover {
850     z-index: 2;
851     color: #555;
852     /*background-color: #f7f7f7;*/
853     background-color: rgba(247, 247, 247, $contentbg_transp);
854     /*border-left: 3px solid #6fdbe8!important;*/
855     border-left: 3px solid $link_color !important;
856     padding-left: 17px;
857 }
858 aside .widget li a,
859 aside .widget li a:hover {
860     color: #555;
861 }
862
863 /* forumlist widget */
864 aside #datebrowse-sidebar .posted-date-selector-months{
865     margin-left: 0;
866     margin-bottom: 10px;
867     width: 100%
868 }
869 aside #datebrowse-sidebar .posted-date-selector-months li{
870     padding-left: 30px;
871 }
872 aside #datebrowse-sidebar .posted-date-selector-months li:hover{
873     padding-left: 27px;
874 }
875
876 /* vcard / h-card */
877 aside .vcard #profile-photo-wrapper{
878     margin: 0;
879 }
880 aside .vcard img.u-photo,
881 aside img.vcard-photo {
882     width: 100%;
883     border-radius: 3px;
884 }
885 aside .vcard .tool .action{
886     position: absolute;
887     top:20px;
888     right: 20px;
889     font-size: 32px;
890     width: 45px;
891     height: 45px;
892     background: rgba(0,0,0,.50);
893     text-align: center;
894     border-radius: 3px;
895     opacity: 0;
896     -webkit-transition: all 0.25s ease-in-out;
897     -moz-transition: all 0.25s ease-in-out;
898     -o-transition: all 0.25s ease-in-out;
899     -ms-transition: all 0.25s ease-in-out;
900     transition: all 0.25s ease-in-out;
901 }
902 aside .vcard .tool a {
903 color: rgba(255,255,255,.85);
904 }
905 aside .vcard #profile-photo-wrapper:hover .tool .action {
906     opacity: 1;
907 }
908 aside .vcard .profile-header {
909     margin-bottom: 20px;
910 }
911 aside .vcard .fn {
912     font-size: 20px;
913     font-weight: bold;
914 }
915 aside .vcard .p-addr {
916     font-style: italic;
917     overflow: hidden;
918     text-overflow: ellipsis;
919     white-space: nowrap;
920     padding-bottom: 2px;
921 }
922 aside .vcard .detail {
923     display: table;
924     padding: 5px 0;
925 }
926 aside .vcard .icon {
927     display: table-cell;
928     padding-right: 10px;
929 }
930 #profile-extra-links {
931     margin-bottom: 20px;
932 }
933 aside .vcard #dfrn-request-link-button,
934 aside .vcard #wallmessage-link-botton {
935     width: 50%;
936     margin: 0 0 0 -5px;
937     float: left;
938     padding: 0 5px;
939 }
940 aside .vcard #dfrn-request-link,
941 aside .vcard #wallmessage-link {
942     width: 100%;
943 }
944
945 aside #peoplefind-sidebar input,
946 aside #follow-sidebar input {
947     height: 30px;
948     background-position: 10px 5px;
949 }
950 aside #peoplefind-sidebar .form-group-search .form-button-search,
951 aside #follow-sidebar .form-group-search .form-button-search {
952     padding: 2px 8px;
953 }
954
955 aside #group-sidebar .group-edit-tool,
956 aside #saved-search-list .savedsearchdrop {
957     opacity: 0.1;
958     transition: all 0.25s ease-in-out;
959 }
960 aside #group-sidebar .sidebar-group-li:hover .group-edit-tool,
961 aside #saved-search-list .saved-search-li:hover .savedsearchdrop {
962     opacity: 0.8;
963     transition: all 0.25s ease-in-out;
964 }
965 aside #group-sidebar .sidebar-group-li .group-edit-tool:hover,
966 aside #saved-search-list .saved-search-li .savedsearchdrop:hover {
967     opacity: 1;
968 }
969
970 /* contact block widget */
971 #contact-block .contact-block-content {
972     clear: both;
973     overflow: auto;
974     height: auto;
975 }
976 #contact-block .contact-block-div {
977     float: left;
978     margin: 0px 5px 5px 0px;
979 /*    height: 90px;
980     width: 90px;*/
981 }
982 #contact-block contact-block-link {
983     
984 }
985 #contact-block .contact-block-img {
986     height: 75px;
987     width: 75px;
988     border-radius: 4px;
989 }
990 /* Section */
991 section ul.tabs {
992     display: none !important;
993 }
994
995 /* Jot */
996 section #jotOpen {
997     display: none;
998 }
999 #jotOpen {
1000     margin-top: 3px;
1001     float: right;
1002 }
1003 #jot-content {
1004     display: none;
1005 }
1006 .jothidden {
1007     /*display: none;*/
1008 }
1009 #jot-modal .modal-header a,
1010 #profile-jot-submit-wrapper a {
1011     color: #555;
1012 }
1013 #jot-modal .modal-header {
1014     border-bottom: none;
1015 }
1016 #jot-title-wrap, #jot-category-wrap {
1017     margin-bottom: 5px;
1018 }
1019 #jot-text-wrap {
1020     margin-top: 20px;
1021 }
1022 #jot-text-wrap textarea {
1023     min-height: 100px;
1024 }
1025 #profile-jot-wrapper button#jot-submit {
1026     margin-top: 5px;
1027 }
1028
1029 /* ACL */
1030 /*#jot-modal-body {
1031     height: auto;
1032     max-height: calc(100vh - 130px);
1033     overflow-y: hidden;
1034 }*/
1035 #acl-search {
1036     margin-top: 20px;
1037     /*padding: 8px;*/
1038     /*border: 1px solid #ccc;*/
1039     width: 100%;
1040 }
1041 #acl-list {
1042     display: block;
1043     border: 1px solid #ccc;
1044     overflow: auto;
1045     clear: both;
1046     min-height: 62px;
1047     margin-top: 20px;
1048     padding: 10px 10px 0px 0px;
1049     -webkit-border-radius: 4px;
1050     -moz-border-radius: 4px;
1051     border-radius: 4px;
1052 }
1053 #acl-list-content {
1054     overflow-y: auto;
1055     max-height: calc(100vh - 330px);
1056     height: auto !important;
1057 }
1058 .acl-list-item {
1059     width: 48%;
1060     width: calc(50% - 10px);
1061     border: 1px solid #ccc;
1062     margin: 0px 0px 10px 10px;
1063     padding: 5px;
1064     float: left;
1065     -webkit-border-radius: 4px;
1066     -moz-border-radius: 4px;
1067     border-radius: 4px;
1068 }
1069 .acl-list-item img {
1070     width: 40px;
1071     height: 40px;
1072     float: left;
1073     margin-right: 5px;
1074     -webkit-border-radius: 4px;
1075     -moz-border-radius: 4px;
1076     border-radius: 4px;
1077 }
1078 .acl-list-item p {
1079     margin: 0px;
1080     white-space: nowrap;
1081     overflow: hidden;
1082     text-overflow: ellipsis;
1083 }
1084 .acl-list-item.groupshow {
1085     background-color: #8DB255
1086 }
1087 .acl-list-item.grouphide {
1088     background-color: #E68364;
1089 }
1090 .acl-button-show, .acl-button-hide {
1091     float: right;
1092     margin-left: 5px;
1093 }
1094 #acl-showall.selected {
1095     background-color: #4CAF50;
1096     color: #fff;
1097 }
1098 .acl-button-show.selected {
1099     background-color: #4CAF50;
1100     color: #fff;
1101 }
1102 .acl-button-hide.selected {
1103     background-color: #F44336;
1104     color: #fff;
1105 }
1106
1107 /*
1108 /* Stream
1109 */
1110 .panel {
1111     border: none;
1112     /*background-color: #fff;*/
1113     background-color: rgba(255,255,255,$contentbg_transp);
1114     box-shadow: 0 0 3px #dadada;
1115     -webkit-box-shadow: 0 0 3px #dadada;
1116     -moz-box-shadow: 0 0 3px #dadada;
1117     border-radius: 4px;
1118     position: relative;
1119 }
1120 .panel .panel-body {
1121     padding: 15px;
1122     font-size: 14px;
1123 }
1124 .panel .panel-body .wall-item-content {
1125     color: #555;
1126 }
1127 .tread-wrapper .media {
1128     overflow: visible;
1129     word-wrap: break-word;
1130 }
1131
1132 /* Thread hover effects */
1133 .wall-item-container .wall-item-content a,
1134 .wall-item-container a,
1135 .wall-item-container .fakelink,
1136 .toplevel_item .fakelink,
1137 .toplevel_item .wall-item-container .btn-link,
1138 .wall-item-container .btn-link,
1139 .toplevel_item .wall-item-container .wall-item-responses a {
1140     color: #555;
1141     -webkit-transition: all 0.25s ease-in-out;
1142     -moz-transition: all 0.25s ease-in-out;
1143     -o-transition: all 0.25s ease-in-out;
1144     -ms-transition: all 0.25s ease-in-out;
1145     transition: all 0.25s ease-in-out;
1146 }
1147
1148 .toplevel_item:hover .fakelink, .wall-item-container:hover .fakelink,
1149 .toplevel_item:hover .wall-item-container:hover .btn-link,
1150 .toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
1151 .toplevel_item:hover .wall-item-content a,
1152 .toplevel_item:hover .wall-item-name,
1153 .wall-item-container:hover .wall-item-content a,
1154 .wall-item-container:hover .wall-item-name,
1155 .wall-item-container:hover .wall-item-location a {
1156     /*color: #6fdbe8;*/
1157     color: $link_color;
1158     -webkit-transition: all 0.25s ease-in-out;
1159     -moz-transition: all 0.25s ease-in-out;
1160     -o-transition: all 0.25s ease-in-out;
1161     -ms-transition: all 0.25s ease-in-out;
1162     transition: all 0.25s ease-in-out;
1163 }
1164
1165 /* wall items */
1166 .wall-item-container {
1167     position: relative;
1168 }
1169
1170 /* wall items contact photo */
1171 .contact-photo {
1172     height: 48px;
1173     width: 48px;
1174     border-radius: 3px;
1175     /*maybe some adional stuff is needed for the different screen sizes */
1176 }
1177 .contact-photo-image-wrapper {
1178     width: 100%;
1179     height: 100%;
1180     overflow: hidden;
1181     position: relative;
1182     text-align: center;
1183 }
1184 .contact-photo-overlay {
1185     width: 100%;
1186     height: 100%;
1187     position: absolute;
1188     overflow: hidden;
1189     top: 0;
1190     left: 0;
1191     border-radius: 3px;
1192     background:rgba(0,0,0,.50);
1193     text-align:center;
1194     opacity:0;
1195     -webkit-transition: opacity .25s ease;
1196     -moz-transition: opacity .25s ease;
1197 }
1198 .contact-photo-overlay:hover {
1199     opacity: 1;
1200 }
1201 .contact-photo-overlay-content {
1202     font-size: 26px;
1203     text-shadow: 1px 1px 1px #ccc;
1204     color:rgba(255,255,255,.85);
1205     height: 100%;
1206     vertical-align: bottom;
1207 }
1208 .contact-photo-xs{
1209     height: 38px;
1210     width: 38px;
1211     border-radius: 3px;
1212 }
1213 .wwto .contact-photo {
1214     width: auto;
1215     height: 25px;
1216     font-size: 8.8px;
1217     padding: 3.6px 0;
1218     border-radius: 2px;
1219     position: absolute;
1220     top: 30px;
1221     left: 30px;
1222     display: inline-block;
1223 }
1224
1225 /* wall items action dropdown menu */
1226 .nav-pills.preferences {
1227     position: absolute;
1228     right: 15px;
1229     top: 10px;
1230 }
1231 .comment .nav-pills.preferences {
1232     right: 0px;
1233     top: 0px;
1234 }
1235 .wall-item-network {
1236     font-size: 13px;
1237 }
1238
1239 /* wall items contact info */
1240 .media .media-body {
1241     font-size: 13px;
1242 }
1243 .media .media-body h4.media-heading {
1244     font-size: 14px;
1245     font-weight: 500;
1246     color: #555;
1247 }
1248 .media .media-body .addional-info a, .media .media-body h5.media-heading > a {
1249     display: block;
1250 }
1251 .media .contact-info-comment {
1252     display: table-cell;
1253 }
1254 .media .contact-info-xs h5,
1255 .media .contact-info-comment {
1256     margin: 0 0 5px;
1257 }
1258 .media-heading {
1259     margin: 0 0 5px;
1260 }
1261 .wall-item-name,
1262 .shared-author {
1263     font-size: 15px;
1264     font-weight: bold;
1265 }
1266 .wall-item-name.xs {
1267     font-weight: 700;
1268     font-size: 14px;
1269 }
1270
1271 /* The lock symbol popup */
1272 #panel {
1273     position: absolute;
1274     list-style: none;
1275     background-color: $nav_bg;
1276     border: none;
1277     border-radius: 3px;
1278     float: left;
1279     min-width: 160px;
1280     max-width: 220px;
1281     padding: 10px ;
1282     margin: 2px 0 0;
1283     font-size: 14px;
1284     text-align: left;
1285     color: $nav_icon_color;
1286     z-index: 1000;
1287 }
1288
1289 /* wall items content */
1290 .wall-item-content {
1291     word-break: break-word;
1292 }
1293 .wall-item-content img {
1294     max-height: 480px;
1295     object-fit: contain;
1296 }
1297 .wall-item-body > img,
1298 .wall-item-body > a > img {
1299     border-radius: 3px;
1300 }
1301 .shared-wrapper,
1302 .vevent {
1303     margin-left: 50px;
1304     margin-right: 50px;
1305     padding: 10px;
1306     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .1) inset, 0 1px 1px rgba(0, 0, 0, .05);
1307 }
1308 @media screen and (max-width: 767px) {
1309     .shared-wrapper,
1310     .vevent {
1311         margin-left: 0px;
1312         margin-right: 0px;
1313     }
1314 }
1315 .shared-wrapper:hover,
1316 .vevent:hover {
1317     box-shadow: 0 0 0 1.5px rgba(0, 0, 0, .15) inset, 0 1px 1px rgba(0, 0, 0, .05);
1318 }
1319 .shared_header {
1320     margin-left: 0px;
1321         margin-top: 0px;
1322     padding-top: 0px;
1323     border-top: none;
1324     color: inherit;
1325 }
1326 blockquote.shared_content {
1327     margin-left: 20px;
1328     color: inherit;
1329 }
1330 .wall-item-tags,
1331 .itemedited {
1332     margin-top: 10px;
1333     font-size: 13px;
1334 }
1335
1336 .wall-item-tags a {
1337     color: #555;
1338 }
1339
1340 .wall-item-tags a:hover {
1341     text-decoration: none;
1342 }
1343 .wall-item-bottom .label,
1344 .wall-item-bottom .label a {
1345     color: #fff;
1346 }
1347
1348 /* item social action buttons */
1349 .wall-item-actions, .wall-item-actions a {
1350     font-size: 13px;
1351     /*color: #aeaeae;*/
1352     color: #555;
1353     margin-top: 15px;
1354     margin-bottom: 0;
1355 }
1356 .wall-item-actions a:hover {
1357     color: #555;
1358 }
1359 .wall-item-actions-left {
1360     display: table-cell;
1361     vertical-align: middle;
1362 }
1363 .wall-item-actions-right {
1364     display: flex;
1365 }
1366 .wall-item-actions .checkbox {
1367     margin: 0;
1368     margin-left: 20px;
1369 }
1370 .wall-item-actions .button-event {
1371     padding-left: 5px;
1372     padding-right: 5px;
1373 }
1374 .wall-item-actions .button-comments,
1375 .wall-item-actions .button-votes,
1376 .wall-item-actions .button-likes {
1377     padding-left: 0px;
1378     padding-right: 0px;
1379 }
1380
1381 /* wall item hover effects */
1382 .wall-item-container .wall-item-links,
1383 .wall-item-container .wall-item-actions {
1384     opacity: 0.3;
1385     -webkit-transition: all 0.25s ease-in-out;
1386     -moz-transition: all 0.25s ease-in-out;
1387     -o-transition: all 0.25s ease-in-out;
1388     -ms-transition: all 0.25s ease-in-out;
1389     transition: all 0.25s ease-in-out;
1390 }
1391 .wall-item-container:hover .wall-item-links,
1392 .wall-item-container:hover .wall-item-actions {
1393     opacity: 0.6;
1394     -webkit-transition: all 0.25s ease-in-out;
1395     -moz-transition: all 0.25s ease-in-out;
1396     -o-transition: all 0.25s ease-in-out;
1397     -ms-transition: all 0.25s ease-in-out;
1398     transition: all 0.25s ease-in-out;
1399 }
1400
1401 /*
1402 /* Comments
1403 */
1404 .well {
1405     border: none;
1406     box-shadow: none;
1407     /*background-color: #ededed;*/
1408     background-color: rgba(237, 237, 237, $contentbg_transp);
1409     background-image: none;
1410     margin-bottom: 1px;
1411 }
1412 .well-small {
1413     padding: 10px;
1414     border-radius: 3px;
1415 }
1416 .well hr {
1417     margin: 15px 0 10px;
1418     border-top: 1px solid #d9d9d9;
1419 }
1420 .wall-entry .well {
1421     margin-bottom: 0;
1422 }
1423 .comment-container {
1424     margin-top: 10px;
1425     margin-bottom: 0px;
1426     border-top-left-radius: 3px;
1427     border-top-right-radius: 3px;
1428     border-bottom-right-radius: 0px;
1429     border-bottom-left-radius: 0px;
1430 }
1431 .comment .media {
1432     position: relative!important;
1433     margin-top: 0;
1434 }
1435 .hide-comments-outer-wrapper {
1436 /*    text-align: center;
1437     margin-top: -18px;*/
1438 }
1439 .hide-comments-total {
1440     cursor: pointer;
1441 }
1442
1443 /*
1444 * Comment Box
1445 */
1446 .thread_level_2 .wall-item-comment-wrapper {
1447     padding-right: 5px;
1448 }
1449 .comment-edit-submit-wrapper {
1450     margin-bottom: 25px;
1451 }
1452 .comment-edit-submit-wrapper a,
1453 .comment-edit-submit-wrapper a:hover {
1454     padding-top: 5px !important;
1455     padding-bottom: 5px !important;
1456 }
1457 .comment-icon-list a.icon,
1458 .comment-icon-list a.icon:hover {
1459     color: #555;
1460     background-color: transparent;
1461 }
1462
1463 /* acpopup  + textcompletion*/
1464 .acpopup {
1465     /* max-height: 150px; */
1466     background-color: #ffffff;
1467     border-radius: 4px;
1468     overflow: auto;
1469     z-index: 100000;
1470     box-shadow: 0 6px 12px rgba(0,0,0,.175);
1471 }
1472 nav .acpopup {
1473     /*top: 35px !important;*/
1474     margin-left: -23px;
1475 }
1476 /** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
1477  at the beginning of this file to get rid of the !important */
1478 .textcomplete-item > a {
1479     color: #555 !important;
1480     padding: 5px 20px !important;
1481 }
1482 .textcomplete-item.active > a {
1483     background-color: rgb(247, 247, 247) !important;
1484     background-image: none !important;
1485     border-left: 3px solid $link_color;
1486     padding-left: 17px !important;
1487 }
1488 .textcomplete-item a .forum {
1489     color: $link_color;
1490 }
1491 img.acpopup-img {
1492     border-radius: 4px;
1493  }
1494
1495
1496 /* The wall-item thread levels */
1497 /*.wall-item-container.thread_level_3 {
1498   margin-left: 80px;
1499   width: calc(100% - 90px);
1500 }
1501 .wall-item-container.thread_level_4 {
1502   margin-left: 95px;
1503   width: calc(100% - 105px);
1504 }
1505 .wall-item-container.thread_level_5 {
1506   margin-left: 110px;
1507   width: calc(100% - 120px);
1508 }
1509 .wall-item-container.thread_level_6 {
1510   margin-left: 125px;
1511   width: calc(100% - 135px);
1512 }
1513 .wall-item-container.thread_level_7 {
1514   margin-left: 140px;
1515   width: calc(100% - 150px);
1516 }*/
1517
1518 .wall-item-container.thread_level_3,
1519 .wall-item-container.thread_level_4,
1520 .wall-item-container.thread_level_5,
1521 .wall-item-container.thread_level_6,
1522 .wall-item-container.thread_level_7 {
1523   margin-left: 15px;
1524   
1525 }
1526 /* Menubar Tabs */
1527 #tabmenu,
1528 .tabbar,
1529 .tabbar > li {
1530     height: 100%;
1531     /*margin-left: -15px;*/
1532     padding: 0;
1533 }
1534 ul.tabs {
1535     list-style: none;
1536     height: 100%;
1537     padding: 0;
1538     padding-top: 10px;
1539     margin: 0;
1540 }
1541 ul.tabs li {
1542     float: left;
1543     margin: 0;
1544     padding: 0;
1545     /*border-bottom: 0 solid #6fdbe8;*/
1546     border-bottom: 0 solid $link_color;
1547     font-size: 13px;
1548     height: 102%;
1549     transition: all .15s ease;
1550 }
1551 /*ul.tabs.visible-xs > li.active {
1552     min-width: 150px;  This is a workaround to make the topbar-second dropdown better visible on mobile. We need something better here 
1553 }*/
1554 ul.tabs li a {
1555     margin-left: 10px;
1556     margin-right: 10px;
1557     /*color: #6fdbe8;*/
1558     color: $link_color !important;
1559 }
1560 ul.tabs li:hover, ul.tabs li.active {
1561     border-bottom-width: 4px;
1562 }
1563 ul.tabbar ul.tabs-extended li.active {
1564     width: 100%;
1565     border-bottom-width: 2px;
1566 }
1567 ul.tabbar ul.tabs-extended li.active a {
1568     background: none;
1569 }
1570 ul.dropdown-menu li:hover {
1571     border-bottom-width: 0;
1572 }
1573
1574
1575 /* Dropdown Menu */
1576 .dropdown-menu li a {
1577     font-size: 13px!important;
1578     font-weight: 600!important;
1579 }
1580 .dropdown-menu li a:hover, .dropdown-menu li a:visited,
1581 .dropdown-menu li a:hover, .dropdown-menu li a:focus {
1582     background: 0 0;
1583 }
1584
1585 .dropdown-menu li:first-child {
1586     margin-top: 3px;
1587 }
1588
1589 /* Notificaiotn badges */
1590 .nav-notify .show {
1591     display: block;
1592 }
1593
1594 /* Media Classes */
1595 .media .time,
1596 .media .shared-time,
1597 .media .location,
1598 .media .location a {
1599     font-size: 11px;
1600     color: #bebebe;
1601 }
1602 .media-list > li {
1603     padding: 10px;
1604     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1605     position: relative;
1606 /*    border-left: 3px solid rgba(255,255,255,$contentbg_transp);*/
1607     border-left: 3px solid rgba(255,255,255,0);
1608     font-size: 12px;
1609 }
1610 .media-list > li:hover,
1611 .media-list > li.selected {
1612     border-left: 3px solid $link_color;
1613     background-color: rgba(247, 247, 247, $contentbg_transp);
1614 }
1615
1616 /* Forms */
1617 .form-control {
1618     border: 2px solid #ededed;
1619     box-shadow: none;
1620 }
1621 .form-control:focus {
1622     /*border: 2px solid #6fdbe8;*/
1623     border: 2px solid $link_color;
1624     outline: 0;
1625     box-shadow: none;
1626 }
1627
1628
1629 .checkbox input[type="checkbox"]:focus + label::before,
1630 .checkbox input[type="radio"]:focus + label::before {
1631     /*border: 2px solid #6fdbe8;*/
1632     border: 2px solid $link_color;
1633     outline: 0;
1634     box-shadow: none;
1635 }
1636
1637 /* Search form */
1638 .form-control.form-search {
1639     border-radius: 30px;
1640     background-image: url(img/icon_search16x16.png);
1641     background-repeat: no-repeat;
1642     background-position: 10px 8px;
1643     padding-left: 34px;
1644 }
1645 .form-group-search {
1646     position: relative;
1647     width: 100%;
1648 }
1649
1650 .form-group-search .form-button-search {
1651     position: absolute;
1652     top: 4px;
1653     right: 4px;
1654     border-radius: 30px;
1655 }
1656 .search-input.form-control.form-search {
1657     width: 100%;
1658 }
1659 .search-heading {
1660     text-align: center;
1661     color: $link_color;
1662     font-size: 20px;
1663 }
1664 /* Section-Content-Wrapper */
1665 #search-header-wrapper {
1666     padding: 15px;
1667     padding-bottom: 20px;
1668     margin-bottom: 20px;
1669     border: none;
1670     /*background-color: #fff;*/
1671     background-color: rgba(255,255,255,$contentbg_transp);
1672     border-radius: 4px;
1673     position: relative;
1674     /*overflow: hidden;*/
1675     color: #555;
1676     box-shadow: 0 0 3px #dadada;
1677     -webkit-box-shadow: 0 0 3px #dadada;
1678     -moz-box-shadow: 0 0 3px #dadada;
1679 }
1680
1681 /* PAGES */
1682
1683 /* Profile-page */
1684 #profile-page, .photos-content-wrapper, .settings-content-wrapper,
1685 .contacts-content-wrapper, .suggest-content-wrapper, .common-content-wrapper,
1686 .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
1687 .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
1688 .events-content-wrapper, .message-content-wrapper, .apps-content-wrapper, 
1689 .notifications-content-wrapper, .admin-content-wrapper, .group-content-wrapper {
1690     min-height: calc(100vh - 150px);
1691     padding: 15px;
1692     padding-bottom: 20px;
1693     margin-bottom: 20px;
1694     border: none;
1695     /*background-color: #fff;*/
1696     background-color: rgba(255,255,255,$contentbg_transp);
1697     border-radius: 4px;
1698     position: relative;
1699     /*overflow: hidden;*/
1700     color: #555;
1701     box-shadow: 0 0 3px #dadada;
1702     -webkit-box-shadow: 0 0 3px #dadada;
1703     -moz-box-shadow: 0 0 3px #dadada;
1704 }
1705 #profile-content-standard,
1706 #profile-content-advanced {
1707     overflow: hidden;
1708 }
1709 #profile-menu {
1710     margin-top: 20px;
1711     margin-bottom: 20px;
1712 }
1713 .contact-block-div.forumlist-profile-advanced {
1714     float: left;
1715 }
1716
1717 /* contacts page */
1718 ul.viewcontact_wrapper {
1719     margin-left: -15px;
1720     margin-right: -15px;
1721 }
1722 ul.viewcontact_wrapper > li {
1723     padding-left: 15px;
1724 }
1725 .contact-wrapper {
1726 /*    padding: 10px;
1727     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);;
1728     position: relative;*/
1729     /*border-left: 3px solid white;*/
1730 }
1731 .contact-wrapper.media {
1732     overflow: visible;
1733     word-wrap: break-word;
1734     margin-top: 0;
1735 }
1736 /* bootstrap hack for .media */
1737 .contact-wrapper.media .media-body {
1738     display: table-cell;
1739     width: 10000px;
1740     *width: auto;
1741     *zoom: 1;
1742 }
1743 .contact-wrapper.media:before, .media:after {
1744     content: "";
1745     display: table;
1746 }
1747 .contact-wrapper.media:after {
1748     clear: both;
1749 }
1750 .contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
1751     height: 80px;
1752     width: 80px;    
1753 }
1754 .contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
1755     height: 48px;
1756     width: 48px;
1757 }
1758 .contact-wrapper .contact-photo-overlay-content.xl {
1759     font-size: 48px;
1760 }
1761
1762 .contact-entry-desc {
1763     color: #555;
1764 }
1765 .contact-entry-checkbox {
1766     margin-top: -20px;
1767 }
1768 .contact-wrapper .media-body .contact-entry-name h4.media-heading a {
1769     font-weight: bold !important; 
1770     color: $link_color;
1771     font-size: 15px !important;
1772 }
1773 .contact-wrapper .contact-actions {
1774     display: flex;
1775 }
1776 .contact-wrapper a.contact-action-link {
1777     opacity: 0.1;
1778     transition: all 0.25s ease-in-out;
1779 }
1780 .contact-wrapper a.contact-action-link,
1781 .contact-wrapper a.contact-action-link:hover,
1782 .textcomplete-item .contact-wrapper a.contact-action-link {
1783     padding-right: 5px;
1784     padding-left: 5px;
1785     color: #555;
1786 }
1787 ul li:hover .contact-wrapper a.contact-action-link {
1788     opacity: 0.8;
1789     transition: all 0.25s ease-in-out;
1790 }
1791 ul li:hover .contact-wrapper a.contact-action-link:hover {
1792     opacity: 1;
1793 }
1794 #contacts-search-wrapper,
1795 #directory-search-wrapper{
1796     padding: 10px 0;
1797 }
1798
1799 /* directory page */
1800 #directory-search-heading {
1801     padding-top: 10px;
1802 }
1803
1804 /* private mail */
1805 .message-content-wrapper > li {
1806 /* we need this overwriting because we have no template file
1807    for the general mail page /message
1808 */
1809     list-style-type: none;
1810 }
1811 .mail-thread {
1812     max-height: calc(100vh - 200px);
1813 }
1814 #mail-conversation {
1815     overflow-y: auto;
1816     max-height: calc(100vh - 400px);
1817     max-height: auto;
1818     /*height: 500px;*/
1819     margin-bottom: 0px;
1820     padding: 0 15px;
1821 }
1822 #mail-conversation.can-reply {
1823 /*    border-bottom-left-radius: 0px;
1824     border-bottom-right-radius: 0px;*/
1825 }
1826 .mail-conv-wrapper .media .contact-photo-wrapper img {
1827     height: 48px;
1828     width: 48px;
1829 }
1830 .mail-thread #prvmail-to-label,
1831 .mail-thread #prvmail-subject-label {
1832     display: none;
1833 }
1834 .mail-thread #prvmail-message-label > label {
1835     display:none;
1836 }
1837 .mail-thread #prvmail-message-label textarea {
1838 /*    border-top: none;
1839     margin-top: -10px;
1840     border-top-left-radius: 0px;
1841     border-top-right-radius: 0px;*/
1842     max-height: 120px;
1843 }
1844 .mail-conv-wrapper {
1845     padding: 15px 0;
1846     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1847 }
1848 #message-sidebar {
1849     height: calc(100vh - 150px);
1850 }
1851 #message-preview {
1852     /*padding: 0 10px;*/
1853     height: calc(100% - 20px);
1854 }
1855 #message-preview ul {
1856     margin: 0px;
1857 }
1858 #message-preview .media-list li {
1859     padding: 0px 10px;
1860     border: none;
1861 }
1862 #message-preview .media-list li:hover {
1863     border-left: none !important;
1864 }
1865 #message-preview .media-list li a {
1866     color: $link_color;
1867 }
1868 .mail-list-outside-wrapper {
1869     padding: 5px 0;
1870     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1871 }
1872 .mail-list-outside-wrapper .contact-photo-wrapper img {
1873     height: 48px;
1874     width: 48px;
1875 }
1876
1877 #prvmail-end {
1878     clear:both;
1879 }
1880 /* poke */
1881 #poke-desc {
1882     margin: 5px 0 30px;
1883 }
1884 #poke-wrapper-end {
1885     clear: both;
1886 }
1887 /*
1888 * Overwriting for transparency and other colors
1889 */
1890 main .nav-tabs>li.active>a,
1891 main .nav-tabs>li.active>a:focus,
1892 main .nav-tabs>li.active>a:hover {
1893     background-color: rgba(255,255,255,$contentbg_transp);
1894 }
1895
1896 /*
1897  * Modal
1898  */
1899 .modal hr {
1900     border-color: #eee;
1901 }
1902
1903 /*
1904  * Framework overwrite
1905  */
1906
1907 /* jRange */
1908 .theme-frio .back-bar {
1909     height: 5px !important;
1910     border-radius: 2px;
1911     background-color: #eeeeee;
1912     background-color: #e7e7e7;
1913     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
1914     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
1915     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
1916     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
1917     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
1918     background-repeat: repeat-x;
1919     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
1920 }
1921 .theme-frio .back-bar .selected-bar {
1922     border-radius: 2px;
1923     background-color: $link_color;
1924 /*    background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
1925     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
1926     background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
1927     background-image: -o-linear-gradient(top, #bdfade, #76fabc);
1928     background-image: linear-gradient(to bottom, #bdfade, #76fabc);
1929     background-repeat: repeat-x;
1930     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);*/
1931 }
1932 .theme-frio .back-bar .pointer {
1933     width: 14px !important;
1934     height: 14px !important;
1935     top: -5px;
1936     -webkit-box-sizing: border-box;
1937     -moz-box-sizing: border-box;
1938     box-sizing: border-box;
1939     border-radius: 10px;
1940     border: 1px solid #AAA;
1941     background-color: #e7e7e7 !important;
1942     background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
1943     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
1944     background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
1945     background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
1946     background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
1947     background-repeat: repeat-x;
1948     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
1949 }
1950 .theme-frio .back-bar .pointer-label {
1951     color: #999;
1952 }
1953
1954 /* textcomplete for contact filtering*/
1955 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
1956     position: relative !important;
1957     top: inherit !important;
1958     bottom: inherit !important;
1959     left: inherit !important;
1960     padding: 0;
1961     margin-left: -15px;
1962     margin-right: -15px;
1963     background-color: transparent;
1964     box-shadow: none;
1965     border: none;
1966 }
1967 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
1968     padding-left: 15px;
1969     border-bottom: 1px solid rgba(238, 238, 238, $contentbg_transp);
1970 }
1971 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
1972     display: none;
1973 }
1974 #contact-list ul.dropdown-menu.textcomplete-dropdown.media-list 
1975 .textcomplete-item > a {
1976     padding: 0 !important;
1977     border-left: none;
1978     background-color: transparent !important;
1979 }
1980 /* this is a little hack for texcomplete contact filter
1981 There are for some reasons empty <a> tags. I don't know why */
1982 .textcomplete-item .contact-wrapper a {
1983     padding: 0;
1984 }
1985
1986 /* hovercard fix */
1987 body .tread-wrapper .hovercard a,
1988 body .tread-wrapper .hovercard a:hover {
1989     color: $link_color;
1990 }
1991 body .tread-wrapper .hovercard:hover .hover-card-content a {
1992     color: $link_color !important;
1993 }