@djb25/digit-ui-css 1.0.69 → 1.0.71
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/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +7 -2
- package/src/components/card.scss +172 -63
- package/src/components/reportDownload.scss +104 -0
- package/src/components/reusableClasses.scss +141 -0
- package/src/components/selectdropdown.scss +7 -1
- package/src/components/textfields.scss +5 -14
- package/src/components/topbar.scss +0 -5
- package/src/digitv2/components/FormComposerV2.scss +0 -10
- package/src/index.scss +2 -125
- package/src/pages/employee/cardfix.scss +8 -12
- package/src/pages/employee/inbox.scss +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
.search-form-wrapper {
|
|
2
|
-
@apply w-full flex-wrap gap-
|
|
3
|
-
padding: 20px;
|
|
2
|
+
@apply w-full flex flex-col flex-wrap gap-2 p-md justify-between bg-white;
|
|
4
3
|
|
|
5
4
|
border-radius: 11px;
|
|
6
5
|
.form-field {
|
|
@@ -584,6 +583,12 @@
|
|
|
584
583
|
flex-direction: column;
|
|
585
584
|
gap: 16px;
|
|
586
585
|
border-radius: 0 0 12px 12px;
|
|
586
|
+
|
|
587
|
+
.collapsible-card-tab-content {
|
|
588
|
+
display: flex;
|
|
589
|
+
flex-direction: column;
|
|
590
|
+
gap: 12px;
|
|
591
|
+
}
|
|
587
592
|
}
|
|
588
593
|
|
|
589
594
|
.finance-breadcrumb {
|
package/src/components/card.scss
CHANGED
|
@@ -65,6 +65,10 @@
|
|
|
65
65
|
min-height: 100%;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
.no-box-shadow {
|
|
69
|
+
box-shadow: none !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
68
72
|
.employeeCard {
|
|
69
73
|
@apply bg-white shadow-card p-md;
|
|
70
74
|
border-radius: 6px;
|
|
@@ -629,19 +633,38 @@
|
|
|
629
633
|
|
|
630
634
|
/* ── KPI TILES GRID ─────────────────────────────────────── */
|
|
631
635
|
@keyframes countPop {
|
|
632
|
-
0%
|
|
633
|
-
|
|
634
|
-
|
|
636
|
+
0% {
|
|
637
|
+
transform: scale(0.6) translateY(6px);
|
|
638
|
+
opacity: 0;
|
|
639
|
+
}
|
|
640
|
+
50% {
|
|
641
|
+
transform: scale(1.06) translateY(-2px);
|
|
642
|
+
opacity: 1;
|
|
643
|
+
}
|
|
644
|
+
100% {
|
|
645
|
+
transform: scale(1) translateY(0);
|
|
646
|
+
}
|
|
635
647
|
}
|
|
636
648
|
|
|
637
649
|
@keyframes shimmer {
|
|
638
|
-
0%
|
|
639
|
-
|
|
650
|
+
0% {
|
|
651
|
+
left: -100%;
|
|
652
|
+
}
|
|
653
|
+
100% {
|
|
654
|
+
left: 200%;
|
|
655
|
+
}
|
|
640
656
|
}
|
|
641
657
|
|
|
642
658
|
@keyframes pulseGlow {
|
|
643
|
-
0%,
|
|
644
|
-
|
|
659
|
+
0%,
|
|
660
|
+
100% {
|
|
661
|
+
opacity: 0.45;
|
|
662
|
+
transform: translate(-50%, -50%) scale(1);
|
|
663
|
+
}
|
|
664
|
+
50% {
|
|
665
|
+
opacity: 0.7;
|
|
666
|
+
transform: translate(-50%, -50%) scale(1.15);
|
|
667
|
+
}
|
|
645
668
|
}
|
|
646
669
|
|
|
647
670
|
.kpi-tiles-grid {
|
|
@@ -663,22 +686,16 @@
|
|
|
663
686
|
backdrop-filter: blur(12px);
|
|
664
687
|
-webkit-backdrop-filter: blur(12px);
|
|
665
688
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
666
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
|
|
667
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
689
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
668
690
|
text-align: center;
|
|
669
691
|
overflow: hidden;
|
|
670
|
-
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
671
|
-
box-shadow 0.3s ease,
|
|
672
|
-
border-color 0.3s ease,
|
|
673
|
-
background 0.3s ease;
|
|
692
|
+
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
|
|
674
693
|
cursor: pointer;
|
|
675
694
|
}
|
|
676
695
|
|
|
677
696
|
.kpi-tile:hover {
|
|
678
697
|
transform: translateY(-4px) scale(1.02);
|
|
679
|
-
box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12),
|
|
680
|
-
0 2px 6px rgba(0, 0, 0, 0.04),
|
|
681
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.9);
|
|
698
|
+
box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
|
|
682
699
|
border-color: rgba(200, 200, 220, 0.6);
|
|
683
700
|
}
|
|
684
701
|
|
|
@@ -690,12 +707,7 @@
|
|
|
690
707
|
left: -100%;
|
|
691
708
|
width: 60%;
|
|
692
709
|
height: 100%;
|
|
693
|
-
background: linear-gradient(
|
|
694
|
-
90deg,
|
|
695
|
-
transparent 0%,
|
|
696
|
-
rgba(255, 255, 255, 0.4) 50%,
|
|
697
|
-
transparent 100%
|
|
698
|
-
);
|
|
710
|
+
background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
|
|
699
711
|
transition: none;
|
|
700
712
|
pointer-events: none;
|
|
701
713
|
}
|
|
@@ -721,14 +733,38 @@
|
|
|
721
733
|
}
|
|
722
734
|
|
|
723
735
|
/* Color-coded dots per module */
|
|
724
|
-
.kpi-tile--icon-blue
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
.kpi-tile--icon-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
736
|
+
.kpi-tile--icon-blue .kpi-tile__accent {
|
|
737
|
+
background: #0ea5e9;
|
|
738
|
+
box-shadow: 0 0 6px rgba(14, 165, 233, 0.4);
|
|
739
|
+
}
|
|
740
|
+
.kpi-tile--icon-purple .kpi-tile__accent {
|
|
741
|
+
background: #8b5cf6;
|
|
742
|
+
box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
|
|
743
|
+
}
|
|
744
|
+
.kpi-tile--icon-orange .kpi-tile__accent {
|
|
745
|
+
background: #f97316;
|
|
746
|
+
box-shadow: 0 0 6px rgba(249, 115, 22, 0.4);
|
|
747
|
+
}
|
|
748
|
+
.kpi-tile--icon-green .kpi-tile__accent {
|
|
749
|
+
background: #22c55e;
|
|
750
|
+
box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
|
|
751
|
+
}
|
|
752
|
+
.kpi-tile--icon-brown .kpi-tile__accent {
|
|
753
|
+
background: #eab308;
|
|
754
|
+
box-shadow: 0 0 6px rgba(234, 179, 8, 0.4);
|
|
755
|
+
}
|
|
756
|
+
.kpi-tile--icon-violet .kpi-tile__accent {
|
|
757
|
+
background: #7c3aed;
|
|
758
|
+
box-shadow: 0 0 6px rgba(124, 58, 237, 0.4);
|
|
759
|
+
}
|
|
760
|
+
.kpi-tile--icon-teal .kpi-tile__accent {
|
|
761
|
+
background: #14b8a6;
|
|
762
|
+
box-shadow: 0 0 6px rgba(20, 184, 166, 0.4);
|
|
763
|
+
}
|
|
764
|
+
.kpi-tile--icon-default .kpi-tile__accent {
|
|
765
|
+
background: #64748b;
|
|
766
|
+
box-shadow: 0 0 6px rgba(100, 116, 139, 0.4);
|
|
767
|
+
}
|
|
732
768
|
|
|
733
769
|
/* ── Label ── */
|
|
734
770
|
.kpi-tile__label {
|
|
@@ -777,32 +813,83 @@
|
|
|
777
813
|
}
|
|
778
814
|
|
|
779
815
|
/* Color-coded glow per module */
|
|
780
|
-
.kpi-tile--icon-blue
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
.kpi-tile--icon-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
.kpi-tile--icon-
|
|
787
|
-
|
|
816
|
+
.kpi-tile--icon-blue .kpi-tile__count::before {
|
|
817
|
+
background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
|
|
818
|
+
}
|
|
819
|
+
.kpi-tile--icon-purple .kpi-tile__count::before {
|
|
820
|
+
background: radial-gradient(circle, #c4b5fd 0%, transparent 70%);
|
|
821
|
+
}
|
|
822
|
+
.kpi-tile--icon-orange .kpi-tile__count::before {
|
|
823
|
+
background: radial-gradient(circle, #fdba74 0%, transparent 70%);
|
|
824
|
+
}
|
|
825
|
+
.kpi-tile--icon-green .kpi-tile__count::before {
|
|
826
|
+
background: radial-gradient(circle, #86efac 0%, transparent 70%);
|
|
827
|
+
}
|
|
828
|
+
.kpi-tile--icon-brown .kpi-tile__count::before {
|
|
829
|
+
background: radial-gradient(circle, #fde68a 0%, transparent 70%);
|
|
830
|
+
}
|
|
831
|
+
.kpi-tile--icon-violet .kpi-tile__count::before {
|
|
832
|
+
background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
|
|
833
|
+
}
|
|
834
|
+
.kpi-tile--icon-teal .kpi-tile__count::before {
|
|
835
|
+
background: radial-gradient(circle, #5eead4 0%, transparent 70%);
|
|
836
|
+
}
|
|
837
|
+
.kpi-tile--icon-default .kpi-tile__count::before {
|
|
838
|
+
background: radial-gradient(circle, #cbd5e1 0%, transparent 70%);
|
|
839
|
+
}
|
|
788
840
|
|
|
789
841
|
/* Count color on hover */
|
|
790
|
-
.kpi-tile--icon-blue:hover
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
.kpi-tile--icon-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
.kpi-tile--icon-
|
|
842
|
+
.kpi-tile--icon-blue:hover .kpi-tile__count {
|
|
843
|
+
color: #0369a1;
|
|
844
|
+
}
|
|
845
|
+
.kpi-tile--icon-purple:hover .kpi-tile__count {
|
|
846
|
+
color: #6d28d9;
|
|
847
|
+
}
|
|
848
|
+
.kpi-tile--icon-orange:hover .kpi-tile__count {
|
|
849
|
+
color: #c2410c;
|
|
850
|
+
}
|
|
851
|
+
.kpi-tile--icon-green:hover .kpi-tile__count {
|
|
852
|
+
color: #15803d;
|
|
853
|
+
}
|
|
854
|
+
.kpi-tile--icon-brown:hover .kpi-tile__count {
|
|
855
|
+
color: #a16207;
|
|
856
|
+
}
|
|
857
|
+
.kpi-tile--icon-violet:hover .kpi-tile__count {
|
|
858
|
+
color: #5b21b6;
|
|
859
|
+
}
|
|
860
|
+
.kpi-tile--icon-teal:hover .kpi-tile__count {
|
|
861
|
+
color: #0f766e;
|
|
862
|
+
}
|
|
797
863
|
|
|
798
864
|
/* Subtle bg tint on hover per color */
|
|
799
|
-
.kpi-tile--icon-blue:hover
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
.kpi-tile--icon-
|
|
804
|
-
|
|
805
|
-
|
|
865
|
+
.kpi-tile--icon-blue:hover {
|
|
866
|
+
background: rgba(240, 249, 255, 0.85);
|
|
867
|
+
border-color: rgba(56, 189, 248, 0.25);
|
|
868
|
+
}
|
|
869
|
+
.kpi-tile--icon-purple:hover {
|
|
870
|
+
background: rgba(250, 245, 255, 0.85);
|
|
871
|
+
border-color: rgba(192, 132, 252, 0.25);
|
|
872
|
+
}
|
|
873
|
+
.kpi-tile--icon-orange:hover {
|
|
874
|
+
background: rgba(255, 247, 237, 0.85);
|
|
875
|
+
border-color: rgba(251, 146, 60, 0.25);
|
|
876
|
+
}
|
|
877
|
+
.kpi-tile--icon-green:hover {
|
|
878
|
+
background: rgba(240, 253, 244, 0.85);
|
|
879
|
+
border-color: rgba(74, 222, 128, 0.25);
|
|
880
|
+
}
|
|
881
|
+
.kpi-tile--icon-brown:hover {
|
|
882
|
+
background: rgba(255, 251, 235, 0.85);
|
|
883
|
+
border-color: rgba(251, 191, 36, 0.25);
|
|
884
|
+
}
|
|
885
|
+
.kpi-tile--icon-violet:hover {
|
|
886
|
+
background: rgba(245, 243, 255, 0.85);
|
|
887
|
+
border-color: rgba(167, 139, 250, 0.25);
|
|
888
|
+
}
|
|
889
|
+
.kpi-tile--icon-teal:hover {
|
|
890
|
+
background: rgba(240, 253, 250, 0.85);
|
|
891
|
+
border-color: rgba(45, 212, 191, 0.25);
|
|
892
|
+
}
|
|
806
893
|
|
|
807
894
|
/* ── LEGACY: kept for backwards-compat if referenced elsewhere ── */
|
|
808
895
|
.card-body-row {
|
|
@@ -811,17 +898,39 @@
|
|
|
811
898
|
align-items: center;
|
|
812
899
|
}
|
|
813
900
|
|
|
814
|
-
.main-kpi-section {
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
.main-kpi-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
.
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
.
|
|
824
|
-
|
|
901
|
+
.main-kpi-section {
|
|
902
|
+
display: none;
|
|
903
|
+
}
|
|
904
|
+
.main-kpi-number {
|
|
905
|
+
display: none;
|
|
906
|
+
}
|
|
907
|
+
.main-kpi-label-wrap {
|
|
908
|
+
display: none;
|
|
909
|
+
}
|
|
910
|
+
.main-kpi-label {
|
|
911
|
+
display: none;
|
|
912
|
+
}
|
|
913
|
+
.secondary-kpi-section {
|
|
914
|
+
display: none;
|
|
915
|
+
}
|
|
916
|
+
.secondary-kpi-item {
|
|
917
|
+
display: none;
|
|
918
|
+
}
|
|
919
|
+
.sec-kpi-label {
|
|
920
|
+
display: none;
|
|
921
|
+
}
|
|
922
|
+
.sec-kpi-value {
|
|
923
|
+
display: none;
|
|
924
|
+
}
|
|
925
|
+
.sec-kpi-dot {
|
|
926
|
+
display: none;
|
|
927
|
+
}
|
|
928
|
+
.sec-kpi-header {
|
|
929
|
+
display: none;
|
|
930
|
+
}
|
|
931
|
+
.trend-icon {
|
|
932
|
+
display: none;
|
|
933
|
+
}
|
|
825
934
|
|
|
826
935
|
.card-footer-row {
|
|
827
936
|
display: flex;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
.ekyc-dashboard-section {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
align-items: flex-start;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.report-download {
|
|
8
|
+
position: relative;
|
|
9
|
+
flex-shrink: 0;
|
|
10
|
+
|
|
11
|
+
.download-btn {
|
|
12
|
+
background: #0b2559;
|
|
13
|
+
color: #fff;
|
|
14
|
+
border: none;
|
|
15
|
+
border-radius: 8px;
|
|
16
|
+
padding: 10px 20px;
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
font-size: 14px;
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
gap: 8px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.report-menu {
|
|
26
|
+
position: absolute;
|
|
27
|
+
top: 44px;
|
|
28
|
+
right: 0;
|
|
29
|
+
background: #fff;
|
|
30
|
+
border: 1px solid #e5e7eb;
|
|
31
|
+
border-radius: 10px;
|
|
32
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
33
|
+
z-index: 999;
|
|
34
|
+
min-width: 220px;
|
|
35
|
+
padding: 8px 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.menu-item {
|
|
39
|
+
padding: 10px 20px;
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
font-size: 14px;
|
|
42
|
+
color: #111;
|
|
43
|
+
transition: background 0.15s;
|
|
44
|
+
|
|
45
|
+
&:hover {
|
|
46
|
+
background: #f3f4f6;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.custom-date-trigger {
|
|
51
|
+
padding: 10px 20px;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
font-size: 14px;
|
|
54
|
+
color: #0b2559;
|
|
55
|
+
font-weight: 600;
|
|
56
|
+
border-top: 1px solid #e5e7eb;
|
|
57
|
+
margin-top: 4px;
|
|
58
|
+
|
|
59
|
+
&:hover {
|
|
60
|
+
background: #f3f4f6;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.custom-picker {
|
|
65
|
+
padding: 12px 20px;
|
|
66
|
+
border-top: 1px solid #e5e7eb;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.date-field {
|
|
70
|
+
margin-bottom: 12px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.date-label {
|
|
74
|
+
display: block;
|
|
75
|
+
margin-bottom: 4px;
|
|
76
|
+
font-size: 12px;
|
|
77
|
+
color: #6b7280;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.date-input {
|
|
81
|
+
width: 100%;
|
|
82
|
+
padding: 6px 8px;
|
|
83
|
+
border: 1px solid #d1d5db;
|
|
84
|
+
border-radius: 6px;
|
|
85
|
+
font-size: 13px;
|
|
86
|
+
outline: none;
|
|
87
|
+
|
|
88
|
+
&:focus {
|
|
89
|
+
border-color: #0b2559;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.download-action-btn {
|
|
94
|
+
width: 100%;
|
|
95
|
+
background: #0b2559;
|
|
96
|
+
color: #fff;
|
|
97
|
+
border: none;
|
|
98
|
+
border-radius: 6px;
|
|
99
|
+
padding: 8px;
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
font-weight: 600;
|
|
102
|
+
font-size: 13px;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
.flex-one {
|
|
2
|
+
@apply flex-1;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.flex-roww {
|
|
6
|
+
display: flex;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.display-flex-gap-2 {
|
|
10
|
+
@apply flex gap-3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rm-mb {
|
|
14
|
+
margin-bottom: unset !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.w-fullwidth {
|
|
18
|
+
@apply w-full;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.margin-unset {
|
|
22
|
+
margin: unset !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.text-align-center {
|
|
26
|
+
@apply text-center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.desktop-only {
|
|
30
|
+
@apply hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@screen dt {
|
|
34
|
+
.desktop-only {
|
|
35
|
+
@apply block;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.mobile-only {
|
|
40
|
+
@apply block;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@screen dt {
|
|
44
|
+
.mobile-only {
|
|
45
|
+
@apply hidden;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.dark {
|
|
50
|
+
@apply text-text-primary;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mrlg {
|
|
54
|
+
@apply mr-lg;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mrsm {
|
|
58
|
+
@apply mr-sm;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.mbsm {
|
|
62
|
+
@apply mb-sm;
|
|
63
|
+
}
|
|
64
|
+
.flex-right {
|
|
65
|
+
@apply flex items-center justify-end;
|
|
66
|
+
min-width: 85px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.flex-fit {
|
|
70
|
+
@apply flex w-full border-b border-solid border-border;
|
|
71
|
+
padding: 8px 10px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.flex-box {
|
|
75
|
+
display: flex;
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 100%;
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.flex-box-center {
|
|
82
|
+
display: flex;
|
|
83
|
+
justify-content: center;
|
|
84
|
+
align-items: center;
|
|
85
|
+
width: 100%;
|
|
86
|
+
height: 100%;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.flex-box-col {
|
|
90
|
+
flex-direction: column;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.flex-box-content-between {
|
|
94
|
+
display: flex;
|
|
95
|
+
justify-content: space-between;
|
|
96
|
+
align-items: center;
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 100%;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.flex-center {
|
|
102
|
+
display: flex;
|
|
103
|
+
justify-content: center;
|
|
104
|
+
align-items: center;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.flex-gap-1 {
|
|
108
|
+
gap: 4px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.flex-gap-2 {
|
|
112
|
+
gap: 8px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.flex-gap-3 {
|
|
116
|
+
gap: 12px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.flex-gap-4 {
|
|
120
|
+
gap: 16px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.flex-gap-5 {
|
|
124
|
+
gap: 20px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.bc-white {
|
|
128
|
+
background-color: #fff;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.round-medium {
|
|
132
|
+
border-radius: 6px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.p-top-0 {
|
|
136
|
+
padding-top: 0;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.not-allowed {
|
|
140
|
+
cursor: not-allowed;
|
|
141
|
+
}
|
|
@@ -45,8 +45,14 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
svg {
|
|
48
|
+
color: #e5e5e7;
|
|
48
49
|
@apply absolute right-0 float-right h-6 w-6 mt-sm mr-sm;
|
|
49
50
|
}
|
|
51
|
+
&:hover {
|
|
52
|
+
svg {
|
|
53
|
+
color: #a1a1aa;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
50
56
|
}
|
|
51
57
|
|
|
52
58
|
.select-active {
|
|
@@ -117,7 +123,7 @@
|
|
|
117
123
|
@apply relative;
|
|
118
124
|
|
|
119
125
|
.select {
|
|
120
|
-
@apply relative block w-full h-10
|
|
126
|
+
@apply relative block w-full h-10 rounded-md;
|
|
121
127
|
|
|
122
128
|
input[type="text"] {
|
|
123
129
|
width: calc(100% - 32px);
|
|
@@ -15,8 +15,12 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.employee-card-input:disabled {
|
|
18
|
-
@apply
|
|
18
|
+
@apply text-grey-dark !important;
|
|
19
|
+
border: 2px solid #e5e5e7;
|
|
19
20
|
pointer-events: none !important;
|
|
21
|
+
cursor: not-allowed;
|
|
22
|
+
@extend .light-input-border;
|
|
23
|
+
@extend .light-text-color-disabled;
|
|
20
24
|
}
|
|
21
25
|
.employee-card-input--front {
|
|
22
26
|
width: fit-content !important;
|
|
@@ -80,16 +84,3 @@
|
|
|
80
84
|
width: 240px;
|
|
81
85
|
}
|
|
82
86
|
}
|
|
83
|
-
|
|
84
|
-
.citizen-card-input {
|
|
85
|
-
@apply pl-sm outline-none block border w-full h-10 border-input-border border-solid bg-white leading-10 text-form-field text-text-primary;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.citizen-card-input--front {
|
|
89
|
-
width: fit-content !important;
|
|
90
|
-
display: flex;
|
|
91
|
-
align-items: center;
|
|
92
|
-
background: theme(colors.grey.mid);
|
|
93
|
-
border-right: 0;
|
|
94
|
-
padding-right: 5px;
|
|
95
|
-
}
|
|
@@ -44,16 +44,6 @@
|
|
|
44
44
|
@extend .alert-error;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.employee-card-input {
|
|
48
|
-
border: 2px solid #e5e5e7;
|
|
49
|
-
@apply pl-sm outline-none block w-full h-10 bg-white leading-10 text-form-field text-text-primary;
|
|
50
|
-
}
|
|
51
|
-
.employee-card-input:disabled {
|
|
52
|
-
@apply border-grey-dark text-grey-dark !important;
|
|
53
|
-
pointer-events: none !important;
|
|
54
|
-
@extend .light-input-border;
|
|
55
|
-
@extend .light-text-color-disabled;
|
|
56
|
-
}
|
|
57
47
|
.employee-card-input--front {
|
|
58
48
|
width: fit-content !important;
|
|
59
49
|
display: flex;
|