source: resources/assets/sass/dark.scss@ 582789f

develop
Last change on this file since 582789f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 27.3 KB
Line 
1body.dark {
2 background-color: $body-bg-color;
3 color: $default-dark-text-color;
4
5 a:not(.btn):not(.link-1) {
6 color: rgba(white, .5);
7
8 &:hover {
9 color: rgba(white, .8);
10 }
11 }
12
13 .header {
14 background-color: $body-bg-color-dark-light;
15 border-bottom-color: #454c66;
16
17 .header-logo {
18 border-bottom-color: #454c66;
19
20 img {
21 display: block;
22
23 &:not(.logo-light) {
24 display: none;
25 }
26 }
27 }
28
29 ul {
30 li {
31 a {
32 color: $default-dark-text-color;
33
34 &:hover, &:focus {
35 color: white;
36 }
37 }
38 }
39 }
40
41 .avatar {
42 border-color: transparent;
43 }
44 }
45
46 .text-divider:after {
47 background-color: #454c66;
48 }
49
50 input::placeholder {
51 color: rgba(white, .5);
52 }
53
54 .border {
55 border-color: #454c66 !important;
56 }
57
58 .border-right {
59 border-left-color: #454c66 !important;
60 border-right-color: #454c66 !important;
61 }
62
63 .border-left {
64 border-left-color: #454c66 !important;
65 border-right-color: #454c66 !important;
66 }
67
68 .border-bottom {
69 border-bottom-color: #454c66 !important;
70 }
71
72 .border-top {
73 border-top-color: #454c66 !important;
74 }
75
76 .preloader {
77 background: $body-bg-color-dark;
78
79 .preloader-icon {
80 border-color: $body-bg-color-dark-light
81 }
82 }
83
84 .nav-tabs {
85 .nav-link {
86 &:hover, &:focus {
87 background-color: $body-bg-color-dark-light !important;
88 border-bottom-color: $body-bg-color-dark-light !important;
89 }
90
91 &.active {
92 background: $body-bg-color-dark-light !important;
93 border-bottom-color: $body-bg-color-dark-light !important;
94 }
95 }
96 }
97
98 .sidebar {
99 header {
100 background-color: #2c2f42;
101 }
102 }
103
104 .navigation {
105 background-color: $body-bg-color-dark-light;
106
107 .navigation-menu-tab {
108 border-right-color: lighten($body-bg-color-dark-light, 10%);
109
110 ul {
111 li {
112 a {
113 color: $default-dark-text-color;
114
115 &.active {
116 color: white;
117 }
118
119 &:not(.active):hover, &:not(.active):focus {
120 color: $color-primary;
121 }
122 }
123 }
124 }
125 }
126
127 .navigation-menu-body {
128
129 ul {
130 li {
131 &.navigation-divider {
132 color: #dbdbdb
133 }
134
135 a {
136 color: $default-dark-text-color;
137
138 .nav-link-icon {
139 stroke: rgba($default-dark-text-color, .5);
140 }
141
142 &:hover, &:focus {
143 color: white;
144 }
145
146 &.active {
147 color: white;
148 }
149
150 & + ul {
151 li {
152 a.active {
153 color: white
154 }
155 }
156 }
157 }
158
159 &.open {
160 & > a {
161 color: white;
162 background-color: #454c66;
163 }
164 }
165
166 .dropdown-divider {
167 color: $color-primary
168 }
169 }
170 }
171 }
172 }
173
174 &.boxed-layout {
175 background-color: $body-bg-color-dark;
176
177 .layout-wrapper .content-wrapper .content-body .content {
178 background-color: $body-bg-color;
179 }
180 }
181
182 &.right-navigation {
183 .navigation {
184 .navigation-menu-tab {
185 border-left-color: lighten($body-bg-color-dark-light, 10%)
186 }
187 }
188
189 &.small-navigation {
190 .navigation {
191 .navigation-menu-tab {
192 border-left-color: transparent;
193 }
194
195 &:hover {
196 .navigation-menu-tab {
197 border-left-color: lighten($body-bg-color-dark-light, 10%) !important;
198 }
199 }
200 }
201 }
202 }
203
204 &.small-navigation {
205 .navigation {
206 &:hover {
207 .navigation-menu-tab {
208 border-right-color: lighten($body-bg-color-dark-light, 10%) !important;
209 }
210 }
211 }
212 }
213
214 .custom-accordion {
215 .accordion-row {
216 .accordion-header {
217 .close {
218 text-shadow: none;
219 color: inherit;
220 }
221 }
222 }
223 }
224
225 #vmap_usa_en, #vmap_canada_en, #vmap_world_en {
226 background-color: inherit !important;
227 }
228
229 .table {
230 color: $default-dark-text-color;
231 }
232
233 .table .thead-light th {
234 background-color: #59607a;
235 color: inherit;
236 }
237
238 .table .thead-dark th, .table-dark, .table-dark th, .table-dark td {
239 background-color: $body-bg-color-dark
240 }
241
242 .mark, mark {
243 background-color: #59607a;
244 color: inherit;
245 }
246
247 .page-header {
248 color: rgba(white, .6);
249
250 .breadcrumb li a {
251 color: #b3b3b3;
252
253 &:hover {
254 color: $default-dark-text-color
255 }
256 }
257 }
258
259 .breadcrumb li.breadcrumb-item.active {
260 color: lighten($color-primary, 10%)
261 }
262
263 [data-backround-image]:after {
264 background-color: rgba(0, 0, 0, 0.60);
265 }
266
267 .layout-alert {
268 border-color: #59607a;
269 }
270
271 .alert {
272 color: rgba(white, .6);
273
274 hr {
275 border-color: rgba(white, .1);
276 }
277
278 .close {
279 &:hover, &:focus {
280 opacity: .2;
281 color: inherit;
282 }
283 }
284 }
285
286 .form-control {
287 background: $body-bg-color-dark-light;
288 border-color: #454c66 !important;
289 color: #c3c3c3;
290
291 &:focus {
292 border-color: $color-primary !important;
293 }
294 }
295
296 .timeline .timeline-item::before {
297 background: #59607a;
298 }
299
300 .dropdown-menu {
301 border-top: 1px solid #454c66 !important;
302 color: $default-dark-text-color;
303 }
304
305 .custom-select {
306 background-color: inherit;
307 border-color: rgba(white, .2);
308 color: inherit;
309 }
310
311 .custom-file-label {
312 background-color: inherit;
313 border-color: rgba(white, .2);
314 color: inherit;
315
316 &::after {
317 background-color: #454c66;
318 color: inherit;
319 }
320 }
321
322 .custom-range::-webkit-slider-runnable-track {
323 background-color: #454c66;
324 }
325
326 .custom-control-label::before {
327 background-color: inherit;
328 border-color: #59607a;
329 }
330
331 .custom-control-input:disabled ~ .custom-control-label::before {
332 background-color: #454c66;
333 }
334
335 .form-control-plaintext {
336 color: inherit;
337 }
338
339 .wizard > .content {
340 background-color: #454c66;
341 }
342
343 .wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
344 background-color: #454c66;
345 }
346
347 .wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
348 background: #4f5670 !important;
349 border-color: #4f5670 !important;
350
351 &:not(:disabled):not(.disabled):focus {
352 box-shadow: 0 0 0 0.2rem rgba($body-bg-color-dark, .5);
353 outline: none;
354 color: inherit;
355 }
356 }
357
358 .pricing-table {
359 border-color: #59607a;
360 }
361
362 hr {
363 border-color: #454c66;
364 }
365
366 .dropdown-menu {
367 border: none;
368 background-color: #3b425c;
369
370 .dropdown-item {
371 color: #c3c3c3;
372
373 &:hover, &:focus {
374 background: $body-bg-color-dark-light;
375 }
376 }
377 }
378
379
380 .bg-light {
381 background: #59607a !important;
382 }
383
384 .list-group-item {
385 background: none;
386 border-color: rgba(#9b9b9b, .1)
387 }
388
389 a.list-group-item {
390 color: $default-dark-text-color;
391
392 &:hover {
393 color: white;
394 }
395 }
396
397 .card {
398 background: $body-bg-color-dark-light;
399 border-color: lighten($body-bg-color-dark-light, 10%);
400
401 .card-header {
402 border-bottom-color: #2c2f42 !important;
403 }
404
405 .card-footer {
406 border-top-color: #2c2f42
407 }
408 }
409
410 .accordion .card, .accordion.custom-accordion {
411 border-color: rgba(240, 240, 240, 0.12)
412 }
413
414 .accordion.custom-accordion .accordion-row a.accordion-header {
415 border-bottom-color: rgba(240, 240, 240, 0.12);
416 border-top-color: rgba(240, 240, 240, 0.12);
417 color: inherit;
418 background-color: #454c66;
419 }
420
421 .morris-hover.morris-default-style {
422 background-color: #454c66;
423 border-color: #59607a;
424 }
425
426 .apexcharts-yaxis {
427 .apexcharts-yaxis-texts-g {
428 text {
429 fill: rgba(white, .2);
430 }
431 }
432 }
433
434 .apexcharts-grid {
435 .apexcharts-gridlines-horizontal, .apexcharts-gridlines-vertical {
436 line {
437 stroke: rgba(white, .1);
438 }
439 }
440 }
441
442 .apexcharts-toolbar {
443 & > div > svg {
444 fill: rgba(white, .2);
445 }
446 }
447
448 .apexcharts-menu {
449 border: none;
450 background-color: #454c66;
451
452 .apexcharts-menu-item {
453 &:hover {
454 background-color: #59607a;
455 }
456 }
457 }
458
459 .apexcharts-xaxis {
460 .apexcharts-xaxis-texts-g {
461 text {
462 fill: rgba(white, .2);
463 }
464 }
465 }
466
467 .apexcharts-tooltip.light .apexcharts-tooltip-title {
468 background-color: #59607a !important;
469 border-color: #3b425c !important;
470 }
471
472 .apexcharts-xaxistooltip {
473 border-color: #3b425c !important;
474 background-color: #454c66 !important;
475 color: rgba(white, .4);
476 }
477
478 .apexcharts-xaxistooltip-bottom:after, apexcharts-xaxistooltip-bottom:before {
479 border-bottom-color: #454c66 !important;
480 }
481
482 .apexcharts-tooltip {
483 border-color: #3b425c !important;
484 background-color: #454c66 !important;
485 }
486
487 .apexcharts-title-text, .apexcharts-subtitle-text {
488 fill: rgba(white, .4);
489 }
490
491 .apexcharts-legend-text {
492 color: rgba(white, .4) !important;
493 }
494
495 .apexcharts-yaxis-title, .apexcharts-xaxis-title {
496 text {
497 fill: rgba(white, .4);
498 }
499 }
500
501 .demo-code-preview {
502 background-color: $body-bg-color-dark-light;
503 border-color: #4f5670 !important;
504
505 * {
506 text-shadow: none;
507 }
508
509 code[class*="language-"], pre[class*="language-"] {
510 color: white;
511
512 .token.operator {
513 background: none;
514 }
515 }
516
517 .token.tag {
518 color: #e156a3;
519 }
520 }
521
522 .avatar {
523 border-color: $body-bg-color-dark-light;
524
525 &:before {
526 border-color: $body-bg-color-dark-light
527 }
528
529 .avatar-title {
530 background-color: #59607a;
531 }
532 }
533
534 .tourBg {
535 opacity: .7 !important;
536 }
537
538 .dd-handle, .dd3-content {
539 background-color: #454c66;
540 border-color: $body-bg-color-dark-light;
541 color: inherit;
542 }
543
544 .dd3-handle:before {
545 color: inherit;
546 }
547
548 .dd-item {
549 button {
550 color: inherit;
551 }
552 }
553
554 .list-group-item-action {
555 color: inherit;
556
557 &.active {
558 color: white;
559 }
560 }
561
562 .img-thumbnail {
563 border-color: #59607a;
564 background-color: $body-bg-color-dark-light;
565 }
566
567 .progress {
568 background-color: #59607a;
569 }
570
571 .jstree-default .jstree-clicked {
572 color: $body-bg-color-dark
573 }
574
575 .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
576 background-color: inherit;
577 }
578
579 .select2-container--default .select2-selection--multiple .select2-selection__choice {
580 background: #454c66;
581 color: #c3c3c3;
582 }
583
584 .select2.select2-container .select2-selection {
585 border-color: #59607a;
586 }
587
588 .select2-container--default .select2-selection--single .select2-selection__placeholder {
589 color: $default-text-color;
590 }
591
592 .select2-container .select2-search--inline .select2-search__field {
593 color: inherit;
594 }
595
596 .select2-dropdown {
597 background-color: $body-bg-color-dark-light;
598 border-color: #59607a;
599 }
600
601 .select2-container--default .select2-search--dropdown .select2-search__field {
602 background-color: $body-bg-color-dark-light;
603 border-color: #59607a;
604 color: inherit;
605 }
606
607 .select2-container--default .select2-selection--single .select2-selection__rendered {
608 color: inherit;
609 }
610
611 .select2-container--default .select2-results__option[aria-selected=true] {
612 background-color: $body-bg-color-dark;
613 color: inherit;
614 }
615
616 .irs--round .irs-line {
617 background-color: #59607a;
618 }
619
620 .irs--round .irs-min, .irs--round .irs-max {
621 color: inherit;
622 background-color: #59607a;
623 }
624
625 .daterangepicker {
626 background-color: #3b425c;
627 border-color: #3b425c;
628
629 select {
630 background-color: inherit;
631 color: inherit;
632 border-color: #59607a;
633 }
634
635 &:after, &:before {
636 border-bottom-color: #3b425c;
637 }
638
639 .calendar-table {
640 background-color: #3b425c;
641 border-color: #3b425c;
642 }
643
644 td.in-range {
645 background-color: #59607a;
646 color: inherit;
647 }
648
649 td.end-date {
650 color: white;
651 background-color: $color-primary;
652 }
653
654 .drp-buttons {
655 border-top-color: #3b425c;
656
657 .btn.btn-default {
658 color: inherit;
659 }
660 }
661 }
662
663 .daterangepicker td.off, .daterangepicker td.off.end-date, .daterangepicker td.off.start-date {
664 background-color: inherit;
665 color: #636a84
666 }
667
668 .daterangepicker td.off.in-range {
669 background-color: #59607a;
670 color: #8b92ac
671 }
672
673 .daterangepicker td.available:hover, .daterangepicker th.available:hover {
674 background-color: $color-primary;
675 color: white;
676
677 span {
678 border-color: white;
679 }
680 }
681
682 .daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
683 border-color: #6d748e;
684 }
685
686 .daterangepicker .ranges li:hover {
687 background-color: #454c66;
688 }
689
690 .popover.clockpicker-popover {
691 overflow: hidden;
692 border: 1px solid #59607a;
693
694 .popover-title {
695 background-color: $body-bg-color-dark-light;
696 color: inherit;
697 }
698
699 .popover-content {
700 background-color: $body-bg-color-dark-light;
701 }
702
703 .clockpicker-plate {
704 border-color: #59607a;
705 background-color: $body-bg-color-dark-light;
706
707 .clockpicker-tick {
708 color: inherit;
709 }
710
711 .clockpicker-canvas-bg {
712 fill: #59607a
713 }
714 }
715 }
716
717 .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
718 background-color: #59607a;
719 color: inherit;
720 border-color: #59607a
721 }
722
723 .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
724 border-color: #3b425c;
725 background-color: #3b425c;
726 }
727
728 .nav-tabs {
729 border-bottom-color: #59607a
730 }
731
732 .figure-caption {
733 color: inherit;
734 }
735
736 .btn-link {
737 color: inherit;
738 }
739
740 .text-muted {
741 color: #9f9f9f !important;
742 }
743
744 .table td, .table th {
745 border-color: rgba(#9b9b9b, .2)
746 }
747
748 .border-bottom {
749 border-bottom-color: rgba(#9b9b9b, .2) !important;
750 }
751
752 .sidebar {
753 background: $body-bg-color-dark-light;
754 }
755
756 .nicescroll-cursors {
757 background-color: rgba(255, 255, 255, 0.15) !important;
758 }
759
760 .chat-block {
761 .chat-content {
762 .messages {
763 .message-item {
764 &:not(.me) {
765 &:before {
766 border-right-color: #454c66
767 }
768
769 .message-item-content {
770
771 background-color: #454c66;
772 }
773 }
774
775 &.message-item-divider {
776 &:before, &:after {
777 background-color: #454c66;
778 }
779 }
780 }
781 }
782 }
783
784 .chat-sidebar {
785 background-color: lighten($body-bg-color-dark-light, 5%);
786
787 .chat-sidebar-content .list-group .list-group-item {
788 background-color: $body-bg-color-dark-light;
789
790 &.active {
791 color: white;
792 }
793 }
794 }
795 }
796
797 .app-block {
798 .app-content {
799 .app-content-body {
800 .app-lists {
801 ul.list-group {
802 li {
803 &:hover {
804 background-color: #3b425c;
805 }
806
807 &.list-group-item.active {
808 background-color: #454c66;
809
810 .avatar {
811 border-color: #454c66;
812 }
813
814 .app-list-title {
815 color: $default-dark-text-color
816 }
817 }
818 }
819 }
820 }
821
822 .app-detail {
823 .card-header {
824 border-bottom-color: #454c66 !important;
825 }
826 }
827 }
828 }
829 }
830
831 .app-file-list {
832 border-color: #454c66;
833
834 .app-file-icon {
835 background-color: #454c66;
836 border-bottom-color: #454c66;
837 }
838 }
839
840 .ql-container.ql-snow {
841 border-color: #454c66
842 }
843
844 .ql-editor.ql-blank::before {
845 color: $default-dark-text-color
846 }
847
848 .ql-snow .ql-stroke, .ql-fill {
849 stroke: $default-dark-text-color
850 }
851
852 .text-black-50 {
853 color: rgba(247, 247, 247, 0.43) !important;
854 }
855
856 .table-email-list a {
857 color: inherit;
858 }
859
860 .table-hover tbody tr:hover {
861 color: inherit;
862 }
863
864 .input-group-text {
865 background: #454c66;
866 color: inherit;
867 }
868
869 .dropdown-divider {
870 border-top-color: rgba(240, 240, 240, 0.12)
871 }
872
873 .btn.btn-light, .fc .fc-state-default {
874 background: #454c66;
875 border-color: transparent;
876 color: inherit;
877
878 &:not(:disabled):not(.disabled):hover, &:not(:disabled):not(.disabled):focus, &:not(:disabled):not(.disabled):active {
879 background: #4f5670;
880 border-color: #4f5670;
881 color: inherit;
882 }
883
884 &:not(:disabled):not(.disabled):focus {
885 box-shadow: 0 0 0 0.2rem rgba($body-bg-color-dark, .5);
886 outline: none;
887 color: inherit;
888 }
889 }
890
891 .btn.btn-outline-light {
892 border: $dark-border-style;
893 color: $default-dark-text-color;
894
895 &:hover {
896 background: none !important;
897 color: #d6d6d6 !important;
898 border: $dark-border-style !important;
899 }
900 }
901
902 .fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
903 border-color: rgba(240, 240, 240, 0.12)
904 }
905
906 .fc-unthemed .fc-list-item:hover td {
907 background: #454c66;
908 }
909
910 .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-popover .fc-header {
911 background: #454c66;
912 }
913
914 .fc-unthemed td.fc-today, .fc-unthemed .fc-list-empty {
915 background: #454c66;
916 }
917
918 #external-events .fc-event {
919 color: inherit;
920 }
921
922 .bootstrap-tagsinput {
923 background-color: inherit;
924 border-color: rgba(white, .2);
925
926 .tag {
927 background: #454c66;
928 color: #c3c3c3;
929 }
930
931 input {
932 color: #c3c3c3;
933 }
934 }
935
936 .dropzone {
937 background-color: $body-bg-color-dark-light;
938 border-color: #454c66
939 }
940
941 .modal-content {
942 background-color: $body-bg-color-dark-light;
943
944 .modal-header {
945 border-bottom-color: rgba(240, 240, 240, 0.12);
946 background-color: #454c66 !important;
947
948 .close {
949 text-shadow: none;
950 opacity: 1;
951 color: inherit;
952 background-color: $body-bg-color-dark-light !important;
953 }
954 }
955
956 .modal-footer {
957 border-top-color: rgba(240, 240, 240, 0.12);
958 }
959 }
960
961 .swal-modal {
962 background-color: $body-bg-color-dark-light;
963
964 .swal-icon--success__hide-corners {
965 background-color: inherit;
966 }
967
968 .swal-icon--success:before, .swal-icon--success:after {
969 background-color: inherit;
970 }
971
972 .swal-title, .swal-text {
973 color: inherit;
974 }
975 }
976
977 .popover {
978 background-color: #454c66;
979
980 .popover-header {
981 background-color: #59607a;
982 border-color: transparent;
983 }
984
985 .popover-body {
986 color: inherit;
987 }
988
989 .popover-navigation {
990 border-top-color: rgba(240, 240, 240, 0.12);
991 }
992 }
993
994 .bs-popover-auto[x-placement^=top] > .arrow::after, .bs-popover-top > .arrow::after {
995 border-top-color: #454c66;
996 }
997
998 .bs-popover-auto[x-placement^=right] > .arrow::after, .bs-popover-right > .arrow::after {
999 border-right-color: #454c66;
1000 }
1001
1002 .bs-popover-auto[x-placement^=bottom] > .arrow::after, .bs-popover-bottom > .arrow::after {
1003 border-bottom-color: #454c66;
1004 }
1005
1006 .bs-popover-auto[x-placement^=left] > .arrow::after, .bs-popover-left > .arrow::after {
1007 border-left-color: #454c66;
1008 }
1009
1010 ul.links a {
1011 color: inherit;
1012 }
1013
1014 .page-link {
1015 background-color: inherit;
1016 color: inherit;
1017 border-color: rgba(240, 240, 240, 0.12)
1018 }
1019
1020 .page-item.disabled .page-link {
1021 background-color: #272e48;
1022 border-color: rgba(240, 240, 240, 0.12);
1023 color: inherit;
1024 }
1025
1026 .nav {
1027 a.nav-link {
1028 &:not(.active) {
1029 color: $default-dark-text-color;
1030
1031 &:hover, &:active {
1032 background-color: #3b425c;
1033 }
1034 }
1035 }
1036 }
1037
1038 &.form-membership .form-wrapper {
1039 background-color: $body-bg-color-dark-light;
1040
1041 #logo {
1042 img {
1043 display: block;
1044
1045 &:not(.logo-light) {
1046 display: none;
1047 }
1048 }
1049 }
1050 }
1051
1052 .content-footer {
1053 background-color: $body-bg-color-dark-light;
1054 }
1055
1056 .irs--round .irs-handle {
1057 background-color: $body-bg-color-dark-light;
1058 }
1059
1060 .table tr.tr-selected {
1061 background-color: lighten($body-bg-color-dark-light, 5%);
1062 }
1063}
1064
1065body.dark.hidden-navigation {
1066 .navigation {
1067 background-color: $body-bg-color-dark-light
1068 }
1069}
1070
1071body.dark.small-navigation {
1072 .navigation-menu-body ul li {
1073 &.open {
1074 & > a {
1075 background-color: #454c66;
1076 }
1077 }
1078
1079 ul {
1080 background-color: $body-bg-color-dark-light !important;
1081 border-left-color: #454c66 !important;
1082 }
1083
1084 &.navigation-divider {
1085 &:after {
1086 background-color: #454c66 !important;
1087 }
1088 }
1089 }
1090}
1091
1092@media (min-width: 1200px) {
1093 body.dark.horizontal-navigation {
1094 .horizontal-navigation {
1095 background-color: $body-bg-color-dark-light;
1096 border-top-color: lighten($body-bg-color-dark-light, 10%);
1097
1098 ul {
1099 & > li {
1100 & > a {
1101 &.active {
1102 background: rgba(black, .25);
1103 }
1104
1105 &:hover {
1106 background: rgba(black, .1);
1107 }
1108
1109 & + ul {
1110 border-top-color: lighten($body-bg-color-dark-light, 10%)
1111 }
1112 }
1113 }
1114
1115 li {
1116 ul {
1117 background-color: #3b425c;
1118
1119 &:before {
1120 border-bottom-color: #3b425c
1121 }
1122
1123 li {
1124 a {
1125 color: $default-dark-text-color;
1126
1127 &:hover {
1128 background: none;
1129 color: lighten($color-primary, 10%)
1130 }
1131
1132 &.active {
1133 background: none;
1134 color: lighten($color-primary, 10%)
1135 }
1136 }
1137
1138 ul {
1139 border-left-color: lighten($body-bg-color-dark-light, 10%)
1140 }
1141
1142 &.open {
1143 & > a {
1144 background: none;
1145 color: lighten($color-primary, 10%)
1146 }
1147 }
1148 }
1149 }
1150 }
1151 }
1152 }
1153 }
1154 body.dark.navigation-toggle-one.navigation-show .navigation .navigation-menu-body {
1155 background-color: $body-bg-color-dark-light;
1156 }
1157}
1158
1159@media (max-width: 1200px) {
1160 body.dark {
1161 .chat-block .chat-content.mobile-open {
1162 background-color: $body-bg-color-dark-light;
1163 }
1164 }
1165 body.dark.horizontal-navigation {
1166 .horizontal-navigation {
1167 background-color: #3b425c;
1168
1169 ul {
1170 li {
1171 a {
1172 &:hover {
1173 color: lighten($color-primary, 10%)
1174 }
1175
1176 &.active {
1177 color: lighten($color-primary, 10%)
1178 }
1179 }
1180
1181 &.open {
1182 & > a {
1183 color: lighten($color-primary, 10%)
1184 }
1185 }
1186 }
1187 }
1188 }
1189 }
1190}
Note: See TracBrowser for help on using the repository browser.