@djb25/digit-ui-css 1.0.71 → 1.0.73
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 +8 -3
- package/src/components/reusableClasses.scss +4 -0
- package/src/components/table.scss +170 -1
- package/src/pages/citizen/DocumentList.scss +1 -2
- package/src/pages/employee/ekyc.scss +9 -1
package/package.json
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
gap: 8px;
|
|
5
|
-
height:
|
|
5
|
+
height: 620px;
|
|
6
|
+
min-height: 620px;
|
|
7
|
+
width: 1050px;
|
|
8
|
+
max-width: 100%;
|
|
6
9
|
overflow-y: auto;
|
|
7
10
|
flex: 1;
|
|
8
11
|
|
|
@@ -33,6 +36,8 @@
|
|
|
33
36
|
overflow: hidden;
|
|
34
37
|
display: flex;
|
|
35
38
|
flex-direction: column;
|
|
39
|
+
flex: 1;
|
|
40
|
+
min-height: 400px;
|
|
36
41
|
}
|
|
37
42
|
|
|
38
43
|
.table-header {
|
|
@@ -73,7 +78,7 @@
|
|
|
73
78
|
}
|
|
74
79
|
|
|
75
80
|
.status-badge {
|
|
76
|
-
padding:
|
|
81
|
+
padding: 4px 10px;
|
|
77
82
|
border-radius: 999px;
|
|
78
83
|
font-size: 12px;
|
|
79
84
|
font-weight: 600;
|
|
@@ -101,4 +106,4 @@
|
|
|
101
106
|
color: #6b7280;
|
|
102
107
|
font-weight: 500;
|
|
103
108
|
}
|
|
104
|
-
}
|
|
109
|
+
}
|
|
@@ -233,6 +233,45 @@
|
|
|
233
233
|
}
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
|
+
|
|
237
|
+
.table-state-cell {
|
|
238
|
+
padding: 80px 20px;
|
|
239
|
+
text-align: center;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.table-state-cell-empty {
|
|
243
|
+
padding: 48px 20px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.table-empty {
|
|
247
|
+
display: flex;
|
|
248
|
+
flex-direction: column;
|
|
249
|
+
align-items: center;
|
|
250
|
+
gap: 10px;
|
|
251
|
+
|
|
252
|
+
svg {
|
|
253
|
+
width: 36px;
|
|
254
|
+
height: 36px;
|
|
255
|
+
color: #cbd5e1;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.table-empty-text {
|
|
260
|
+
margin: 0;
|
|
261
|
+
font-size: 14px;
|
|
262
|
+
font-weight: 500;
|
|
263
|
+
color: #94a3b8;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
@keyframes table-spin {
|
|
267
|
+
from {
|
|
268
|
+
transform: rotate(0deg);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
to {
|
|
272
|
+
transform: rotate(360deg);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
236
275
|
}
|
|
237
276
|
|
|
238
277
|
.search-box-wrapper {
|
|
@@ -270,9 +309,26 @@
|
|
|
270
309
|
padding: 0;
|
|
271
310
|
margin: 0;
|
|
272
311
|
|
|
312
|
+
tr {
|
|
313
|
+
background: #ffffff;
|
|
314
|
+
transition: background-color 0.2s ease;
|
|
315
|
+
|
|
316
|
+
&:nth-child(even) {
|
|
317
|
+
background: #97b9e529;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
&:hover {
|
|
321
|
+
background: #f0f4ff;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
273
325
|
td {
|
|
274
326
|
@apply border-t border-border text-left align-middle;
|
|
275
|
-
padding:
|
|
327
|
+
padding: 6px 18px;
|
|
328
|
+
vertical-align: middle;
|
|
329
|
+
font-size: 16px;
|
|
330
|
+
white-space: nowrap;
|
|
331
|
+
text-align: left;
|
|
276
332
|
}
|
|
277
333
|
}
|
|
278
334
|
}
|
|
@@ -465,3 +521,116 @@
|
|
|
465
521
|
}
|
|
466
522
|
}
|
|
467
523
|
}
|
|
524
|
+
|
|
525
|
+
.table-pagination {
|
|
526
|
+
display: flex;
|
|
527
|
+
justify-content: flex-end;
|
|
528
|
+
align-items: center;
|
|
529
|
+
gap: 14px;
|
|
530
|
+
flex-wrap: wrap;
|
|
531
|
+
padding: 12px 16px;
|
|
532
|
+
border-top: 1px solid #e2e8f0;
|
|
533
|
+
background: #fafbfc;
|
|
534
|
+
|
|
535
|
+
.page-size-label {
|
|
536
|
+
font-size: 12px;
|
|
537
|
+
color: #64748b;
|
|
538
|
+
white-space: nowrap;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.page-size-wrapper {
|
|
542
|
+
position: relative;
|
|
543
|
+
display: flex;
|
|
544
|
+
align-items: center;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.page-size-select {
|
|
548
|
+
appearance: none;
|
|
549
|
+
border: 1px solid #dbe2ea;
|
|
550
|
+
background: #fff;
|
|
551
|
+
border-radius: 999px;
|
|
552
|
+
padding: 6px 30px 6px 12px;
|
|
553
|
+
font-size: 12px;
|
|
554
|
+
font-weight: 600;
|
|
555
|
+
color: #334155;
|
|
556
|
+
cursor: pointer;
|
|
557
|
+
outline: none;
|
|
558
|
+
transition: all 0.2s ease;
|
|
559
|
+
|
|
560
|
+
&:hover {
|
|
561
|
+
border-color: #5282e6;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
&:focus {
|
|
565
|
+
border-color: #5282e6;
|
|
566
|
+
box-shadow: 0 0 0 3px rgba(82, 130, 230, 0.1);
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.page-size-icon {
|
|
571
|
+
position: absolute;
|
|
572
|
+
right: 10px;
|
|
573
|
+
pointer-events: none;
|
|
574
|
+
color: #94a3b8;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.range-info {
|
|
578
|
+
display: flex;
|
|
579
|
+
align-items: center;
|
|
580
|
+
gap: 2px;
|
|
581
|
+
font-size: 12px;
|
|
582
|
+
color: #64748b;
|
|
583
|
+
|
|
584
|
+
strong {
|
|
585
|
+
color: #0f172a;
|
|
586
|
+
font-weight: 700;
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.pagination-actions {
|
|
591
|
+
display: flex;
|
|
592
|
+
align-items: center;
|
|
593
|
+
gap: 6px;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.page-btn {
|
|
597
|
+
display: inline-flex;
|
|
598
|
+
align-items: center;
|
|
599
|
+
justify-content: center;
|
|
600
|
+
width: 40px;
|
|
601
|
+
height: 30px;
|
|
602
|
+
border-radius: 12px;
|
|
603
|
+
cursor: pointer;
|
|
604
|
+
font-size: 14px;
|
|
605
|
+
font-weight: 600;
|
|
606
|
+
line-height: 0;
|
|
607
|
+
transition: all 0.15s ease;
|
|
608
|
+
|
|
609
|
+
background: #fff;
|
|
610
|
+
border: 1.5px solid #cbd5e1;
|
|
611
|
+
color: #64748b;
|
|
612
|
+
|
|
613
|
+
svg {
|
|
614
|
+
width: 14px;
|
|
615
|
+
height: 14px;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
&:hover:not(:disabled) {
|
|
619
|
+
background: #eff6ff;
|
|
620
|
+
border-color: #5282e6;
|
|
621
|
+
color: #5282e6;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
&:disabled {
|
|
625
|
+
opacity: 0.35;
|
|
626
|
+
cursor: not-allowed;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
&.active {
|
|
630
|
+
background: #5282e6;
|
|
631
|
+
border-color: #5282e6;
|
|
632
|
+
color: #fff;
|
|
633
|
+
box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.documentDetails_pdf {
|
|
194
|
-
@apply
|
|
194
|
+
@apply cursor-pointer;
|
|
195
195
|
}
|
|
196
196
|
.grid_section {
|
|
197
197
|
@apply grid grid-cols-4 gap-4;
|
|
@@ -272,7 +272,6 @@
|
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
.confirmation_box {
|
|
275
|
-
height: 130px;
|
|
276
275
|
display: flex;
|
|
277
276
|
align-items: center;
|
|
278
277
|
padding-left: 8px;
|
|
@@ -299,8 +299,10 @@
|
|
|
299
299
|
}
|
|
300
300
|
|
|
301
301
|
.ekyc-application-link {
|
|
302
|
+
font-size: 16px;
|
|
303
|
+
cursor: pointer;
|
|
302
304
|
font-weight: 600;
|
|
303
|
-
color: #
|
|
305
|
+
color: #318ed0 !important;
|
|
304
306
|
}
|
|
305
307
|
|
|
306
308
|
/* SearchConsumer Styles */
|
|
@@ -1018,3 +1020,9 @@
|
|
|
1018
1020
|
}
|
|
1019
1021
|
}
|
|
1020
1022
|
}
|
|
1023
|
+
|
|
1024
|
+
.ekyc-application-link {
|
|
1025
|
+
font-size: 16px;
|
|
1026
|
+
cursor: pointer;
|
|
1027
|
+
color: #318ed0 !important;
|
|
1028
|
+
}
|