@intellias/menu 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/main.css +114 -70
- package/dist/js/main.js +150 -150
- package/package.json +1 -1
package/dist/css/main.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@import url(https://fonts.googleapis.com/css?family=Play:400,700&display=swap);
|
|
2
2
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap);
|
|
3
3
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);
|
|
4
|
-
.action-button.is-btn-link {
|
|
4
|
+
.action-button.is-btn-link[data-v-4bad7ad2] {
|
|
5
5
|
padding: 0;
|
|
6
6
|
border: 0;
|
|
7
7
|
background: transparent;
|
|
8
8
|
cursor: pointer;
|
|
9
9
|
}
|
|
10
|
-
.action-button {
|
|
10
|
+
.action-button[data-v-4bad7ad2] {
|
|
11
11
|
position: relative;
|
|
12
12
|
text-overflow: ellipsis;
|
|
13
13
|
overflow: hidden;
|
|
@@ -20,61 +20,68 @@
|
|
|
20
20
|
border-radius: 4px;
|
|
21
21
|
font-weight: 600;
|
|
22
22
|
}
|
|
23
|
-
.action-button
|
|
23
|
+
.action-button.dark[data-v-4bad7ad2] {
|
|
24
|
+
color: #253746;
|
|
25
|
+
background: #45d6ad;
|
|
26
|
+
}
|
|
27
|
+
.action-button.dark[data-v-4bad7ad2]:disabled:not(a, .is-btn-link) {
|
|
28
|
+
background-color: #3b4d5d !important;
|
|
29
|
+
}
|
|
30
|
+
.action-button[data-v-4bad7ad2]:hover {
|
|
24
31
|
background: #008c79;
|
|
25
32
|
}
|
|
26
33
|
@media only screen and (max-width : 600px) {
|
|
27
|
-
.action-button.btn-full {
|
|
34
|
+
.action-button.btn-full[data-v-4bad7ad2] {
|
|
28
35
|
width: 100%;
|
|
29
36
|
}
|
|
30
37
|
}
|
|
31
|
-
.action-button.is-btn-link {
|
|
38
|
+
.action-button.is-btn-link[data-v-4bad7ad2] {
|
|
32
39
|
color: #008c79;
|
|
33
40
|
background: transparent !important;
|
|
34
41
|
}
|
|
35
|
-
.action-button.is-btn-link:hover .span-text, .action-button.is-btn-link:active .span-text {
|
|
42
|
+
.action-button.is-btn-link:hover .span-text[data-v-4bad7ad2], .action-button.is-btn-link:active .span-text[data-v-4bad7ad2] {
|
|
36
43
|
text-decoration: underline;
|
|
37
44
|
}
|
|
38
|
-
.action-button.is-btn-link:disabled, .action-button.is-btn-link.disabled {
|
|
45
|
+
.action-button.is-btn-link[data-v-4bad7ad2]:disabled, .action-button.is-btn-link.disabled[data-v-4bad7ad2] {
|
|
39
46
|
pointer-events: none;
|
|
40
47
|
color: #94a3b8 !important;
|
|
41
48
|
}
|
|
42
|
-
.action-button.is-link {
|
|
49
|
+
.action-button.is-link[data-v-4bad7ad2] {
|
|
43
50
|
color: #008c79;
|
|
44
51
|
background: transparent !important;
|
|
45
52
|
}
|
|
46
|
-
.action-button.is-link:hover, .action-button.is-link:active {
|
|
53
|
+
.action-button.is-link[data-v-4bad7ad2]:hover, .action-button.is-link[data-v-4bad7ad2]:active {
|
|
47
54
|
text-decoration: underline;
|
|
48
55
|
}
|
|
49
|
-
.action-button.is-link:disabled, .action-button.is-link.disabled {
|
|
56
|
+
.action-button.is-link[data-v-4bad7ad2]:disabled, .action-button.is-link.disabled[data-v-4bad7ad2] {
|
|
50
57
|
pointer-events: none;
|
|
51
58
|
color: #94a3b8 !important;
|
|
52
59
|
}
|
|
53
|
-
.action-button.btn-transparent {
|
|
60
|
+
.action-button.btn-transparent[data-v-4bad7ad2] {
|
|
54
61
|
background: transparent;
|
|
55
62
|
color: #008c79;
|
|
56
63
|
}
|
|
57
|
-
.action-button.btn-transparent:hover, .action-button.btn-transparent:focus {
|
|
64
|
+
.action-button.btn-transparent[data-v-4bad7ad2]:hover, .action-button.btn-transparent[data-v-4bad7ad2]:focus {
|
|
58
65
|
background: #e2e8f0;
|
|
59
66
|
}
|
|
60
|
-
.action-button.btn-transparent:disabled {
|
|
67
|
+
.action-button.btn-transparent[data-v-4bad7ad2]:disabled {
|
|
61
68
|
color: #94a3b8;
|
|
62
69
|
background: transparent !important;
|
|
63
70
|
}
|
|
64
|
-
.action-button .left-icon {
|
|
71
|
+
.action-button .left-icon[data-v-4bad7ad2] {
|
|
65
72
|
margin-right: 4px;
|
|
66
73
|
}
|
|
67
|
-
.action-button .spinner-solid {
|
|
74
|
+
.action-button .spinner-solid[data-v-4bad7ad2] {
|
|
68
75
|
color: #ffffff;
|
|
69
|
-
animation: spin 2s linear infinite;
|
|
76
|
+
animation: spin-4bad7ad2 2s linear infinite;
|
|
70
77
|
vertical-align: middle;
|
|
71
78
|
transition: width 300ms, height 300ms;
|
|
72
79
|
margin-left: 8px;
|
|
73
80
|
}
|
|
74
|
-
.action-button .span-text {
|
|
81
|
+
.action-button .span-text[data-v-4bad7ad2] {
|
|
75
82
|
vertical-align: middle;
|
|
76
83
|
}
|
|
77
|
-
.action-button span.tooltipped {
|
|
84
|
+
.action-button span.tooltipped[data-v-4bad7ad2] {
|
|
78
85
|
width: 100%;
|
|
79
86
|
height: 100%;
|
|
80
87
|
display: inline-block;
|
|
@@ -82,24 +89,24 @@
|
|
|
82
89
|
cursor: pointer;
|
|
83
90
|
pointer-events: all;
|
|
84
91
|
}
|
|
85
|
-
.action-buttonbutton span.tooltipped {
|
|
92
|
+
.action-buttonbutton span.tooltipped[data-v-4bad7ad2] {
|
|
86
93
|
margin-left: -16px;
|
|
87
94
|
}
|
|
88
|
-
.action-button.btn-secondary {
|
|
95
|
+
.action-button.btn-secondary[data-v-4bad7ad2] {
|
|
89
96
|
border: 1px solid #cbd5e1;
|
|
90
97
|
background-color: #ffffff;
|
|
91
98
|
}
|
|
92
|
-
.action-button.disabled:not(a), .action-button:not(a, .is-btn-link):disabled, .action-button[disabled]:not(a, .is-btn-link) {
|
|
93
|
-
background-color: #f1f5f9
|
|
99
|
+
.action-button.disabled[data-v-4bad7ad2]:not(a), .action-button[data-v-4bad7ad2]:not(a, .is-btn-link):disabled, .action-button[disabled][data-v-4bad7ad2]:not(a, .is-btn-link) {
|
|
100
|
+
background-color: #f1f5f9;
|
|
94
101
|
color: #94a3b8 !important;
|
|
95
102
|
}
|
|
96
|
-
.action-button.disabled:not(a) .spinner-solid, .action-button:not(a, .is-btn-link):disabled .spinner-solid, .action-button[disabled]:not(a, .is-btn-link) .spinner-solid {
|
|
103
|
+
.action-button.disabled:not(a) .spinner-solid[data-v-4bad7ad2], .action-button:not(a, .is-btn-link):disabled .spinner-solid[data-v-4bad7ad2], .action-button[disabled]:not(a, .is-btn-link) .spinner-solid[data-v-4bad7ad2] {
|
|
97
104
|
color: #64748b !important;
|
|
98
105
|
}
|
|
99
|
-
.action-button i.icon {
|
|
106
|
+
.action-button i.icon[data-v-4bad7ad2] {
|
|
100
107
|
vertical-align: middle;
|
|
101
108
|
}
|
|
102
|
-
@keyframes spin {
|
|
109
|
+
@keyframes spin-4bad7ad2 {
|
|
103
110
|
100% {
|
|
104
111
|
transform: rotate(360deg);
|
|
105
112
|
}
|
|
@@ -553,13 +560,13 @@
|
|
|
553
560
|
transform: rotate(0);
|
|
554
561
|
}
|
|
555
562
|
}
|
|
556
|
-
.modal-wrapper {
|
|
563
|
+
.modal-wrapper[data-v-47941d80] {
|
|
557
564
|
padding-bottom: 1rem;
|
|
558
565
|
border-radius: 6px !important;
|
|
559
566
|
background-color: #ffffff;
|
|
560
567
|
box-shadow: 0 15px 30px rgba(37, 55, 70, 0.202715);
|
|
561
568
|
}
|
|
562
|
-
.modal-header {
|
|
569
|
+
.modal-header[data-v-47941d80] {
|
|
563
570
|
display: flex;
|
|
564
571
|
justify-content: space-between;
|
|
565
572
|
padding: 2rem 2rem 1rem 2rem;
|
|
@@ -567,31 +574,37 @@
|
|
|
567
574
|
font-weight: bold;
|
|
568
575
|
color: #1a2732 !important;
|
|
569
576
|
}
|
|
570
|
-
.modal-header
|
|
577
|
+
.modal-header.dark[data-v-47941d80] {
|
|
578
|
+
color: #ffffff !important;
|
|
579
|
+
}
|
|
580
|
+
.modal-header.dark i.icon[data-v-47941d80]:before {
|
|
581
|
+
background-color: #ffffff !important;
|
|
582
|
+
}
|
|
583
|
+
.modal-header i.icon[data-v-47941d80]:before {
|
|
571
584
|
background-color: #1a2732 !important;
|
|
572
585
|
}
|
|
573
|
-
.modal-content {
|
|
586
|
+
.modal-content[data-v-47941d80] {
|
|
574
587
|
padding: 1rem 2rem;
|
|
575
588
|
}
|
|
576
|
-
.modal-close {
|
|
589
|
+
.modal-close[data-v-47941d80] {
|
|
577
590
|
width: 15px !important;
|
|
578
591
|
min-width: 15px;
|
|
579
592
|
height: 15px !important;
|
|
580
593
|
cursor: pointer;
|
|
581
594
|
}
|
|
582
|
-
.modal-footer {
|
|
595
|
+
.modal-footer[data-v-47941d80] {
|
|
583
596
|
display: flex;
|
|
584
597
|
justify-content: flex-end;
|
|
585
598
|
padding: 1rem 2rem;
|
|
586
599
|
}
|
|
587
|
-
.modal-footer .btn:not(:first-child) {
|
|
600
|
+
.modal-footer .btn[data-v-47941d80]:not(:first-child) {
|
|
588
601
|
margin-left: 1rem;
|
|
589
602
|
}
|
|
590
|
-
.vm--overlay {
|
|
603
|
+
.vm--overlay[data-v-47941d80] {
|
|
591
604
|
background-color: rgba(37, 55, 70, 0.55) !important;
|
|
592
605
|
transition: 0.3s !important;
|
|
593
606
|
}
|
|
594
|
-
.secondary-button {
|
|
607
|
+
.secondary-button[data-v-ab516b6a] {
|
|
595
608
|
position: relative;
|
|
596
609
|
text-overflow: ellipsis;
|
|
597
610
|
overflow: hidden;
|
|
@@ -602,27 +615,31 @@
|
|
|
602
615
|
font-weight: 600;
|
|
603
616
|
line-height: 38px;
|
|
604
617
|
}
|
|
605
|
-
.secondary-button
|
|
618
|
+
.secondary-button.dark[data-v-ab516b6a] {
|
|
619
|
+
color: #253746;
|
|
620
|
+
background: #e2e8f0;
|
|
621
|
+
}
|
|
622
|
+
.secondary-button i.icon[data-v-ab516b6a] {
|
|
606
623
|
vertical-align: middle;
|
|
607
624
|
}
|
|
608
|
-
.secondary-button .spinner-solid {
|
|
625
|
+
.secondary-button .spinner-solid[data-v-ab516b6a] {
|
|
609
626
|
color: #1a2732;
|
|
610
|
-
animation: spin 2s linear infinite;
|
|
627
|
+
animation: spin-ab516b6a 2s linear infinite;
|
|
611
628
|
vertical-align: middle;
|
|
612
629
|
transition: width 300ms, height 300ms;
|
|
613
630
|
margin-left: 8px;
|
|
614
631
|
}
|
|
615
|
-
.secondary-button .left-icon {
|
|
632
|
+
.secondary-button .left-icon[data-v-ab516b6a] {
|
|
616
633
|
margin-right: 4px;
|
|
617
634
|
}
|
|
618
|
-
.secondary-button.disabled, .secondary-button.btn-secondary:disabled, .secondary-button.btn[disabled] {
|
|
635
|
+
.secondary-button.disabled[data-v-ab516b6a], .secondary-button.btn-secondary[data-v-ab516b6a]:disabled, .secondary-button.btn[disabled][data-v-ab516b6a] {
|
|
619
636
|
background-color: #f1f5f9 !important;
|
|
620
637
|
color: #94a3b8;
|
|
621
638
|
}
|
|
622
|
-
.secondary-button.disabled .spinner-solid, .secondary-button.btn-secondary:disabled .spinner-solid, .secondary-button.btn[disabled] .spinner-solid {
|
|
639
|
+
.secondary-button.disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn-secondary:disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn[disabled] .spinner-solid[data-v-ab516b6a] {
|
|
623
640
|
color: #94a3b8 !important;
|
|
624
641
|
}
|
|
625
|
-
@keyframes spin {
|
|
642
|
+
@keyframes spin-ab516b6a {
|
|
626
643
|
100% {
|
|
627
644
|
transform: rotate(360deg);
|
|
628
645
|
}
|
|
@@ -655,19 +672,19 @@
|
|
|
655
672
|
transform: rotate(360deg);
|
|
656
673
|
}
|
|
657
674
|
}
|
|
658
|
-
.sub-menu {
|
|
675
|
+
.sub-menu[data-v-25586497] {
|
|
659
676
|
overflow: hidden;
|
|
660
677
|
background-color: #ffffff;
|
|
661
678
|
box-shadow: 0 2px 6px 0 rgba(37, 55, 70, 0.1);
|
|
662
679
|
padding-left: 32px;
|
|
663
680
|
}
|
|
664
|
-
.sub-menu .items {
|
|
681
|
+
.sub-menu .items[data-v-25586497] {
|
|
665
682
|
width: 100%;
|
|
666
683
|
font-size: 0.94rem;
|
|
667
684
|
font-family: "open sans", sans-serif;
|
|
668
685
|
white-space: nowrap;
|
|
669
686
|
}
|
|
670
|
-
.sub-menu .items a {
|
|
687
|
+
.sub-menu .items a[data-v-25586497] {
|
|
671
688
|
color: #253746;
|
|
672
689
|
padding: 0 5px 5px;
|
|
673
690
|
margin-right: 15px;
|
|
@@ -678,55 +695,55 @@
|
|
|
678
695
|
text-decoration: none;
|
|
679
696
|
box-sizing: content-box;
|
|
680
697
|
}
|
|
681
|
-
.sub-menu .items a:hover, .sub-menu .items a.router-link-exact-active {
|
|
698
|
+
.sub-menu .items a[data-v-25586497]:hover, .sub-menu .items a.router-link-exact-active[data-v-25586497] {
|
|
682
699
|
-webkit-text-stroke: 0.7px #253746;
|
|
683
700
|
border-bottom: 3px solid #00a58e;
|
|
684
701
|
}
|
|
685
|
-
.image-wrapper.sm {
|
|
702
|
+
.image-wrapper.sm[data-v-7393283b] {
|
|
686
703
|
width: 35px;
|
|
687
704
|
height: 35px;
|
|
688
705
|
}
|
|
689
|
-
.image-wrapper.sm .user-image {
|
|
706
|
+
.image-wrapper.sm .user-image[data-v-7393283b] {
|
|
690
707
|
border: 1px solid #cbd5e1;
|
|
691
708
|
}
|
|
692
|
-
.image-wrapper.sm .user-image.anonymous {
|
|
709
|
+
.image-wrapper.sm .user-image.anonymous[data-v-7393283b] {
|
|
693
710
|
font-size: 0.8rem;
|
|
694
711
|
}
|
|
695
|
-
.image-wrapper.md {
|
|
712
|
+
.image-wrapper.md[data-v-7393283b] {
|
|
696
713
|
height: 44px;
|
|
697
714
|
width: 44px;
|
|
698
715
|
}
|
|
699
|
-
.image-wrapper.md .user-image {
|
|
716
|
+
.image-wrapper.md .user-image[data-v-7393283b] {
|
|
700
717
|
border: 1px solid #cbd5e1;
|
|
701
718
|
}
|
|
702
|
-
.image-wrapper.md .user-image.anonymous {
|
|
719
|
+
.image-wrapper.md .user-image.anonymous[data-v-7393283b] {
|
|
703
720
|
font-size: 1.07rem;
|
|
704
721
|
color: #94a3b8;
|
|
705
722
|
}
|
|
706
|
-
.image-wrapper.lg {
|
|
723
|
+
.image-wrapper.lg[data-v-7393283b] {
|
|
707
724
|
height: 96px;
|
|
708
725
|
width: 96px;
|
|
709
726
|
}
|
|
710
|
-
.image-wrapper.xl {
|
|
727
|
+
.image-wrapper.xl[data-v-7393283b] {
|
|
711
728
|
height: 128px;
|
|
712
729
|
width: 128px;
|
|
713
730
|
}
|
|
714
|
-
.image-wrapper.xl .user-image.anonymous {
|
|
731
|
+
.image-wrapper.xl .user-image.anonymous[data-v-7393283b] {
|
|
715
732
|
font-size: 3.34rem;
|
|
716
733
|
color: #94a3b8;
|
|
717
734
|
}
|
|
718
|
-
.image-wrapper .user-image {
|
|
735
|
+
.image-wrapper .user-image[data-v-7393283b] {
|
|
719
736
|
border: 2px solid #cbd5e1;
|
|
720
737
|
border-radius: 50%;
|
|
721
738
|
overflow: hidden;
|
|
722
739
|
width: inherit;
|
|
723
740
|
height: inherit;
|
|
724
741
|
}
|
|
725
|
-
.image-wrapper .user-imageimg {
|
|
742
|
+
.image-wrapper .user-imageimg[data-v-7393283b] {
|
|
726
743
|
-o-object-fit: cover;
|
|
727
744
|
object-fit: cover;
|
|
728
745
|
}
|
|
729
|
-
.image-wrapper .user-image.anonymous {
|
|
746
|
+
.image-wrapper .user-image.anonymous[data-v-7393283b] {
|
|
730
747
|
background-color: #f8fafc;
|
|
731
748
|
font-size: 2.5rem;
|
|
732
749
|
color: #94a3b8;
|
|
@@ -736,10 +753,10 @@
|
|
|
736
753
|
justify-content: center;
|
|
737
754
|
align-items: center;
|
|
738
755
|
}
|
|
739
|
-
.image-wrapper.no-border .user-image {
|
|
756
|
+
.image-wrapper.no-border .user-image[data-v-7393283b] {
|
|
740
757
|
border: none;
|
|
741
758
|
}
|
|
742
|
-
.on-boarding-sign {
|
|
759
|
+
.on-boarding-sign[data-v-0d7f0ada] {
|
|
743
760
|
position: absolute;
|
|
744
761
|
top: 85px;
|
|
745
762
|
width: 485px;
|
|
@@ -753,7 +770,7 @@
|
|
|
753
770
|
will-change: top;
|
|
754
771
|
transition: top 0.3s;
|
|
755
772
|
}
|
|
756
|
-
.on-boarding-sign__arrow {
|
|
773
|
+
.on-boarding-sign__arrow[data-v-0d7f0ada] {
|
|
757
774
|
position: absolute;
|
|
758
775
|
left: 80%;
|
|
759
776
|
top: -15px;
|
|
@@ -764,27 +781,27 @@
|
|
|
764
781
|
border-bottom: 10px solid transparent;
|
|
765
782
|
border-right: 10px solid #253746;
|
|
766
783
|
}
|
|
767
|
-
.on-boarding-sign__title {
|
|
784
|
+
.on-boarding-sign__title[data-v-0d7f0ada] {
|
|
768
785
|
font-size: 1.5rem;
|
|
769
786
|
font-weight: bold;
|
|
770
787
|
color: #ffffff;
|
|
771
788
|
}
|
|
772
|
-
.on-boarding-sign__description {
|
|
789
|
+
.on-boarding-sign__description[data-v-0d7f0ada] {
|
|
773
790
|
margin-top: 1rem;
|
|
774
791
|
line-height: 1.5rem;
|
|
775
792
|
}
|
|
776
|
-
.on-boarding-sign-buttons {
|
|
793
|
+
.on-boarding-sign-buttons[data-v-0d7f0ada] {
|
|
777
794
|
display: flex;
|
|
778
795
|
justify-content: flex-end;
|
|
779
796
|
margin-top: 1rem;
|
|
780
797
|
}
|
|
781
|
-
.on-boarding-sign-buttons button {
|
|
798
|
+
.on-boarding-sign-buttons button[data-v-0d7f0ada] {
|
|
782
799
|
background: transparent;
|
|
783
800
|
border: none;
|
|
784
801
|
cursor: pointer;
|
|
785
802
|
color: #8395a7;
|
|
786
803
|
}
|
|
787
|
-
.on-boarding-sign-buttons button:last-child {
|
|
804
|
+
.on-boarding-sign-buttons button[data-v-0d7f0ada]:last-child {
|
|
788
805
|
margin-left: 2rem;
|
|
789
806
|
color: #f8fafc;
|
|
790
807
|
}
|
|
@@ -864,6 +881,10 @@
|
|
|
864
881
|
max-height: 64px;
|
|
865
882
|
z-index: 997;
|
|
866
883
|
}
|
|
884
|
+
.navbar-fixed a,
|
|
885
|
+
.navbar-fixed a:hover {
|
|
886
|
+
text-decoration: none;
|
|
887
|
+
}
|
|
867
888
|
.navbar-fixed nav {
|
|
868
889
|
position: fixed;
|
|
869
890
|
box-shadow: none !important;
|
|
@@ -992,6 +1013,9 @@
|
|
|
992
1013
|
.navbar-fixed nav .menu-items li ul.admin li {
|
|
993
1014
|
width: 100%;
|
|
994
1015
|
}
|
|
1016
|
+
.navbar-fixed nav .menu-items li ul.admin li.subItems i.icon:before {
|
|
1017
|
+
background-color: #1a2732 !important;
|
|
1018
|
+
}
|
|
995
1019
|
.navbar-fixed nav .menu-items li ul.admin li.subItems ul {
|
|
996
1020
|
right: 100%;
|
|
997
1021
|
top: 0;
|
|
@@ -1002,6 +1026,9 @@
|
|
|
1002
1026
|
.navbar-fixed nav .menu-items li.subItems {
|
|
1003
1027
|
position: relative;
|
|
1004
1028
|
}
|
|
1029
|
+
.navbar-fixed nav .menu-items li.subItems i.icon:before {
|
|
1030
|
+
background-color: #1a2732 !important;
|
|
1031
|
+
}
|
|
1005
1032
|
.navbar-fixed nav .menu-items li:hover > ul {
|
|
1006
1033
|
display: block;
|
|
1007
1034
|
}
|
|
@@ -1020,9 +1047,20 @@
|
|
|
1020
1047
|
}
|
|
1021
1048
|
}
|
|
1022
1049
|
@media only screen and (max-width : 600px) {
|
|
1050
|
+
.navbar-fixed nav .notifications-bell {
|
|
1051
|
+
line-height: 64px;
|
|
1052
|
+
}
|
|
1023
1053
|
.navbar-fixed nav .notifications-bell .notification-href {
|
|
1024
1054
|
padding-bottom: 17px;
|
|
1025
1055
|
}
|
|
1056
|
+
.navbar-fixed nav .notifications-bell .v-dropdown-menu__container {
|
|
1057
|
+
left: 0;
|
|
1058
|
+
transform: translateX(0) !important;
|
|
1059
|
+
top: 85px;
|
|
1060
|
+
height: 100%;
|
|
1061
|
+
position: fixed;
|
|
1062
|
+
width: 100vw;
|
|
1063
|
+
}
|
|
1026
1064
|
}
|
|
1027
1065
|
@media only screen and (min-width : 993px) {
|
|
1028
1066
|
.navbar-fixed nav .notifications-bell {
|
|
@@ -1069,6 +1107,9 @@
|
|
|
1069
1107
|
width: 100%;
|
|
1070
1108
|
background-color: #253746;
|
|
1071
1109
|
}
|
|
1110
|
+
.navbar-fixed nav .menu-items-overflowed ul > li.subItems i.icon:before {
|
|
1111
|
+
background-color: #ffffff !important;
|
|
1112
|
+
}
|
|
1072
1113
|
.navbar-fixed nav .menu-items-overflowed ul > li.subItems ul {
|
|
1073
1114
|
top: 0;
|
|
1074
1115
|
right: initial;
|
|
@@ -1078,6 +1119,9 @@
|
|
|
1078
1119
|
.navbar-fixed nav .menu-items-overflowed ul li a {
|
|
1079
1120
|
line-height: 56px;
|
|
1080
1121
|
}
|
|
1122
|
+
.navbar-fixed nav .menu-items-overflowed ul li.subItems i.icon:before {
|
|
1123
|
+
background-color: #ffffff !important;
|
|
1124
|
+
}
|
|
1081
1125
|
.navbar-fixed nav .menu-items-overflowed ul li.subItems:hover > ul {
|
|
1082
1126
|
display: flex;
|
|
1083
1127
|
visibility: visible;
|
|
@@ -1635,11 +1679,6 @@ main {
|
|
|
1635
1679
|
.pointer {
|
|
1636
1680
|
cursor: pointer;
|
|
1637
1681
|
}
|
|
1638
|
-
a,
|
|
1639
|
-
a:hover {
|
|
1640
|
-
text-decoration: none;
|
|
1641
|
-
color: #008c79;
|
|
1642
|
-
}
|
|
1643
1682
|
.modal.confirm {
|
|
1644
1683
|
box-sizing: border-box;
|
|
1645
1684
|
min-width: 280px;
|
|
@@ -1683,6 +1722,11 @@ a:hover {
|
|
|
1683
1722
|
.give-kudos .subtitle {
|
|
1684
1723
|
padding: 0px 0 30px 0;
|
|
1685
1724
|
}
|
|
1725
|
+
.give-kudos .subtitle a,
|
|
1726
|
+
.give-kudos .subtitle a:hover {
|
|
1727
|
+
text-decoration: none;
|
|
1728
|
+
color: #008c79;
|
|
1729
|
+
}
|
|
1686
1730
|
.give-kudos .form {
|
|
1687
1731
|
display: grid;
|
|
1688
1732
|
grid-template-columns: auto 207px;
|