@djb25/digit-ui-css 1.0.75 → 1.0.77
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/EkycAssign.scss +1 -1
- package/src/components/actionbar.scss +3 -7
- package/src/components/buttons.scss +5 -0
- package/src/components/card.scss +1 -1
- package/src/components/multiSelectDropdown.scss +21 -0
- package/src/components/table.scss +2 -2
- package/src/pages/employee/ekyc.scss +17 -12
- package/src/pages/employee/inbox.scss +12 -37
- package/src/pages/employee/index.scss +2 -2
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.menu-wrap {
|
|
13
|
-
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
|
|
13
|
+
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer rounded-md;
|
|
14
14
|
bottom: 45px;
|
|
15
15
|
box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px, rgba(0, 0, 0, 0.12) 0 3px 14px 2px, rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
|
|
16
16
|
width: calc(100% - 16px);
|
|
17
17
|
right: 8px;
|
|
18
18
|
|
|
19
19
|
div {
|
|
20
|
-
@apply
|
|
20
|
+
@apply p-sm text-body-l rounded-xl text-text-primary;
|
|
21
21
|
|
|
22
22
|
&:hover {
|
|
23
23
|
@apply bg-grey-mid w-full;
|
|
@@ -57,10 +57,6 @@
|
|
|
57
57
|
margin-bottom: 30px;
|
|
58
58
|
@apply fixed bottom-0 bg-white py-sm pr-lg text-right;
|
|
59
59
|
|
|
60
|
-
div {
|
|
61
|
-
width: calc(100% - 16px);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
60
|
.menu-wrap {
|
|
65
61
|
bottom: 45px;
|
|
66
62
|
top: unset;
|
|
@@ -70,7 +66,7 @@
|
|
|
70
66
|
right: 24px;
|
|
71
67
|
|
|
72
68
|
div {
|
|
73
|
-
@apply
|
|
69
|
+
@apply text-body-l text-text-primary;
|
|
74
70
|
|
|
75
71
|
&:hover {
|
|
76
72
|
@apply bg-grey-mid w-full;
|
package/src/components/card.scss
CHANGED
|
@@ -88,3 +88,24 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
+
|
|
92
|
+
.selected-zones {
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-wrap: wrap;
|
|
95
|
+
gap: 8px;
|
|
96
|
+
margin-top: 12px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.selected-zone-chip {
|
|
100
|
+
display: inline-flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
padding: 6px 12px;
|
|
103
|
+
background: #eef6ff;
|
|
104
|
+
color: #0b5ed7;
|
|
105
|
+
border: 1px solid #cfe2ff;
|
|
106
|
+
border-radius: 16px;
|
|
107
|
+
font-size: 13px;
|
|
108
|
+
font-weight: 500;
|
|
109
|
+
line-height: 1;
|
|
110
|
+
white-space: nowrap;
|
|
111
|
+
}
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
display: flex;
|
|
215
215
|
gap: 4px;
|
|
216
216
|
.col-head {
|
|
217
|
-
font-size:
|
|
217
|
+
font-size: 14px;
|
|
218
218
|
font-weight: 700;
|
|
219
219
|
text-transform: uppercase;
|
|
220
220
|
letter-spacing: 0.07em;
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
|
|
325
325
|
td {
|
|
326
326
|
@apply border-t border-border text-left align-middle;
|
|
327
|
-
padding:
|
|
327
|
+
padding: 10px 18px;
|
|
328
328
|
vertical-align: middle;
|
|
329
329
|
font-size: 16px;
|
|
330
330
|
white-space: nowrap;
|
|
@@ -298,13 +298,6 @@
|
|
|
298
298
|
font-size: 16px;
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
-
.ekyc-application-link {
|
|
302
|
-
font-size: 16px;
|
|
303
|
-
cursor: pointer;
|
|
304
|
-
font-weight: 600;
|
|
305
|
-
color: #318ed0 !important;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
301
|
/* SearchConsumer Styles */
|
|
309
302
|
.search-consumer-wrapper {
|
|
310
303
|
background: #f5f7fa;
|
|
@@ -1021,10 +1014,23 @@
|
|
|
1021
1014
|
}
|
|
1022
1015
|
}
|
|
1023
1016
|
|
|
1024
|
-
.ekyc-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1017
|
+
.ekyc-status-tag {
|
|
1018
|
+
padding: 2px 12px;
|
|
1019
|
+
border-radius: 100px;
|
|
1020
|
+
&.SUBMITTED {
|
|
1021
|
+
background-color: #fef3c7;
|
|
1022
|
+
color: #b45309;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
&.APPROVED {
|
|
1026
|
+
background-color: #d0f0d5;
|
|
1027
|
+
color: #0b6623;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
&.REJECTED {
|
|
1031
|
+
background-color: #fdecea;
|
|
1032
|
+
color: #b42318;
|
|
1033
|
+
}
|
|
1028
1034
|
}
|
|
1029
1035
|
|
|
1030
1036
|
.status-search-composer-wrapper {
|
|
@@ -1052,4 +1058,3 @@
|
|
|
1052
1058
|
background: transparent;
|
|
1053
1059
|
}
|
|
1054
1060
|
}
|
|
1055
|
-
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
transition: all 0.2s ease;
|
|
257
257
|
|
|
258
258
|
&:hover {
|
|
259
|
-
background-color: #
|
|
259
|
+
background-color: #00497e;
|
|
260
260
|
color: #5d6774;
|
|
261
261
|
}
|
|
262
262
|
|
|
@@ -265,6 +265,17 @@
|
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
.popup-module-action-bar {
|
|
269
|
+
.generic-button {
|
|
270
|
+
&:hover {
|
|
271
|
+
color: #fff !important;
|
|
272
|
+
h2 {
|
|
273
|
+
color: #fff !important;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
268
279
|
.clear-search,
|
|
269
280
|
.clear-search .link-label {
|
|
270
281
|
@apply border-focus text-focus;
|
|
@@ -811,42 +822,6 @@
|
|
|
811
822
|
}
|
|
812
823
|
}
|
|
813
824
|
|
|
814
|
-
.registryTable {
|
|
815
|
-
tHead {
|
|
816
|
-
tr {
|
|
817
|
-
th {
|
|
818
|
-
text-align: center;
|
|
819
|
-
.col-head-wrapper {
|
|
820
|
-
display: flex;
|
|
821
|
-
gap: 4px;
|
|
822
|
-
align-items: center;
|
|
823
|
-
.col-head {
|
|
824
|
-
font-size: 11px;
|
|
825
|
-
font-weight: 700;
|
|
826
|
-
text-transform: uppercase;
|
|
827
|
-
letter-spacing: 0.07em;
|
|
828
|
-
transition: color 0.15s;
|
|
829
|
-
}
|
|
830
|
-
.col-head.accentDark {
|
|
831
|
-
color: #5282e6;
|
|
832
|
-
}
|
|
833
|
-
.col-head.textSecondary {
|
|
834
|
-
color: #475569;
|
|
835
|
-
}
|
|
836
|
-
}
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
tBody {
|
|
842
|
-
tr {
|
|
843
|
-
td {
|
|
844
|
-
text-align: center;
|
|
845
|
-
}
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
|
|
850
825
|
.col-head-wrapper {
|
|
851
826
|
display: flex;
|
|
852
827
|
gap: 4px;
|