@djb25/digit-ui-css 1.0.71 → 1.0.72

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djb25/digit-ui-css",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -73,7 +73,7 @@
73
73
  }
74
74
 
75
75
  .status-badge {
76
- padding: 6px 10px;
76
+ padding: 4px 10px;
77
77
  border-radius: 999px;
78
78
  font-size: 12px;
79
79
  font-weight: 600;
@@ -139,3 +139,7 @@
139
139
  .not-allowed {
140
140
  cursor: not-allowed;
141
141
  }
142
+
143
+ .rel {
144
+ position: relative;
145
+ }
@@ -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: 20px 18px;
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 cursor-pointer;
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: #3a8dcc;
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
+ }