@djb25/digit-ui-css 1.0.20 → 1.0.22
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 +30 -3
- package/src/components/actionbar.scss +11 -12
- package/src/components/body.scss +34 -22
- package/src/components/card.scss +9 -6
- package/src/components/financeUi.scss +0 -8
- package/src/components/hoc/InboxComposer.scss +27 -0
- package/src/components/moduleHeader.scss +48 -52
- package/src/components/popup.scss +1 -0
- package/src/components/tag.scss +2 -0
- package/src/components/textfields.scss +1 -0
- package/src/index.scss +4 -5
- package/src/pages/employee/form-fields.scss +0 -4
- package/src/pages/employee/inbox.scss +48 -8
- package/src/pages/employee/index.scss +124 -10
|
@@ -137,10 +137,21 @@
|
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
+
@media (max-width: 768px) {
|
|
141
|
+
.inbox-container {
|
|
142
|
+
display: flex;
|
|
143
|
+
flex-direction: column;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
140
147
|
.inbox-container {
|
|
141
148
|
gap: 16px;
|
|
142
149
|
|
|
143
150
|
.filters-container {
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
gap: 16px;
|
|
154
|
+
|
|
144
155
|
.filter {
|
|
145
156
|
.filter-card {
|
|
146
157
|
border-radius: 6px;
|
|
@@ -203,14 +214,38 @@
|
|
|
203
214
|
}
|
|
204
215
|
}
|
|
205
216
|
|
|
217
|
+
.generic-button {
|
|
218
|
+
height: 32px;
|
|
219
|
+
border-radius: 9999999px;
|
|
220
|
+
color: #e2e8f0;
|
|
221
|
+
border: 2px solid #e2e8f0;
|
|
222
|
+
padding: 0 32px;
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
justify-content: center;
|
|
226
|
+
cursor: pointer;
|
|
227
|
+
transition: all 0.2s ease;
|
|
228
|
+
|
|
229
|
+
&:hover {
|
|
230
|
+
background-color: #e2e8f0;
|
|
231
|
+
color: #5d6774;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@media (max-width: 480px) {
|
|
236
|
+
.generic-button {
|
|
237
|
+
padding: 0 12px;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
206
241
|
.clear-search,
|
|
207
242
|
.clear-search .link-label {
|
|
208
|
-
@apply text-focus;
|
|
209
|
-
@apply block;
|
|
243
|
+
@apply border-focus text-focus;
|
|
210
244
|
cursor: pointer;
|
|
211
245
|
|
|
212
246
|
&:hover {
|
|
213
|
-
color: #
|
|
247
|
+
color: #3b59df;
|
|
248
|
+
background-color: #bdc7f3;
|
|
214
249
|
}
|
|
215
250
|
}
|
|
216
251
|
|
|
@@ -257,15 +292,22 @@
|
|
|
257
292
|
padding: 8px !important;
|
|
258
293
|
background: #fff;
|
|
259
294
|
border-radius: 6px;
|
|
295
|
+
|
|
296
|
+
@media (max-width: 768px) {
|
|
297
|
+
display: none !important;
|
|
298
|
+
}
|
|
299
|
+
|
|
260
300
|
.header {
|
|
261
301
|
display: flex;
|
|
262
302
|
border: none;
|
|
263
303
|
@apply justify-start;
|
|
264
304
|
align-items: center;
|
|
305
|
+
|
|
265
306
|
.logo {
|
|
266
307
|
@apply bg-white;
|
|
267
308
|
display: flex;
|
|
268
309
|
align-items: center;
|
|
310
|
+
|
|
269
311
|
svg {
|
|
270
312
|
path {
|
|
271
313
|
fill: theme(colors.primary.main);
|
|
@@ -296,15 +338,12 @@
|
|
|
296
338
|
.inbox-container {
|
|
297
339
|
@apply flex;
|
|
298
340
|
height: inherit;
|
|
299
|
-
padding-bottom: 24px;
|
|
300
341
|
|
|
301
342
|
.filters-container {
|
|
302
343
|
width: 270px;
|
|
303
344
|
overflow-y: scroll;
|
|
304
|
-
|
|
305
|
-
.filter {
|
|
306
|
-
@apply mt-md;
|
|
307
345
|
|
|
346
|
+
.filter {
|
|
308
347
|
.filter-card {
|
|
309
348
|
@apply p-md bg-white;
|
|
310
349
|
|
|
@@ -467,7 +506,8 @@
|
|
|
467
506
|
.inbox-action-container {
|
|
468
507
|
display: flex;
|
|
469
508
|
justify-content: flex-end;
|
|
470
|
-
align-items:
|
|
509
|
+
align-items: center;
|
|
510
|
+
width: 100%;
|
|
471
511
|
}
|
|
472
512
|
|
|
473
513
|
/*
|
|
@@ -74,6 +74,22 @@
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.employee-main-application-details{
|
|
78
|
+
width: 100%;
|
|
79
|
+
overflow-y: scroll;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.employee-form-content {
|
|
83
|
+
flex: 1 1 0%;
|
|
84
|
+
overflow-y: auto;
|
|
85
|
+
height: 100%;
|
|
86
|
+
display: flex;
|
|
87
|
+
flex-direction: column;
|
|
88
|
+
gap: 16px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
77
93
|
.citizen {
|
|
78
94
|
.main {
|
|
79
95
|
padding-top: 82px;
|
|
@@ -423,12 +439,12 @@
|
|
|
423
439
|
|
|
424
440
|
.header-icon-area {
|
|
425
441
|
position: absolute;
|
|
426
|
-
top:
|
|
442
|
+
top: 41%;
|
|
427
443
|
right: 20px;
|
|
428
444
|
transform: translateY(-50%);
|
|
429
445
|
opacity: 0.5;
|
|
430
446
|
pointer-events: none;
|
|
431
|
-
max-width:
|
|
447
|
+
max-width: 157px;
|
|
432
448
|
|
|
433
449
|
@media (max-width: 768px) {
|
|
434
450
|
right: 10px;
|
|
@@ -460,12 +476,12 @@
|
|
|
460
476
|
}
|
|
461
477
|
|
|
462
478
|
.greeting-date {
|
|
463
|
-
margin:
|
|
479
|
+
margin-left: 40px;
|
|
464
480
|
font-size: 15px;
|
|
465
481
|
font-weight: 500;
|
|
466
482
|
color: rgba(255, 255, 255, 0.9);
|
|
467
483
|
letter-spacing: 0.5px;
|
|
468
|
-
|
|
484
|
+
|
|
469
485
|
}
|
|
470
486
|
|
|
471
487
|
/* --- Right: Omni Search Area --- */
|
|
@@ -871,8 +887,8 @@
|
|
|
871
887
|
|
|
872
888
|
@media (min-width: 1024px) {
|
|
873
889
|
.top-info-cards-wrapper {
|
|
874
|
-
|
|
875
|
-
|
|
890
|
+
display: grid;
|
|
891
|
+
grid-template-columns: 3fr 1fr;
|
|
876
892
|
align-items: stretch;
|
|
877
893
|
}
|
|
878
894
|
}
|
|
@@ -880,8 +896,6 @@
|
|
|
880
896
|
@media (min-width: 375px) {}
|
|
881
897
|
|
|
882
898
|
.static-card {
|
|
883
|
-
flex: 1;
|
|
884
|
-
/* Ensures perfect 50/50 width */
|
|
885
899
|
background: white;
|
|
886
900
|
border-radius: 16px;
|
|
887
901
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
@@ -889,13 +903,113 @@
|
|
|
889
903
|
overflow: hidden;
|
|
890
904
|
display: flex;
|
|
891
905
|
flex-direction: column;
|
|
892
|
-
max-height: 48vh;
|
|
893
906
|
min-height: 250px;
|
|
894
907
|
}
|
|
895
908
|
|
|
909
|
+
.custom-tabs-header {
|
|
910
|
+
display: flex;
|
|
911
|
+
border-bottom: 1px solid #e2e8f0;
|
|
912
|
+
margin-bottom: 8px;
|
|
913
|
+
padding: 0 16px;
|
|
914
|
+
}
|
|
915
|
+
.custom-tab-btn {
|
|
916
|
+
padding: 12px 16px;
|
|
917
|
+
background: none;
|
|
918
|
+
border: none;
|
|
919
|
+
color: #94a3b8;
|
|
920
|
+
font-size: 14px;
|
|
921
|
+
font-weight: 600;
|
|
922
|
+
cursor: pointer;
|
|
923
|
+
border-bottom: 2px solid transparent;
|
|
924
|
+
transition: all 0.2s;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.custom-tab-btn.active {
|
|
928
|
+
color: #2563eb;
|
|
929
|
+
border-bottom-color: #2563eb;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.compact-list {
|
|
933
|
+
padding: 0 16px;
|
|
934
|
+
flex: 1;
|
|
935
|
+
overflow-y: auto;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.compact-list-item {
|
|
939
|
+
display: flex;
|
|
940
|
+
align-items: center;
|
|
941
|
+
padding: 12px 0;
|
|
942
|
+
border-bottom: 1px solid #f1f5f9;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.compact-list-item:last-child {
|
|
946
|
+
border-bottom: none;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.dot-indicator {
|
|
950
|
+
width: 8px;
|
|
951
|
+
height: 8px;
|
|
952
|
+
border-radius: 50%;
|
|
953
|
+
margin-right: 12px;
|
|
954
|
+
flex-shrink: 0;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.compact-title {
|
|
958
|
+
font-size: 14px;
|
|
959
|
+
color: #1e293b;
|
|
960
|
+
font-weight: 500;
|
|
961
|
+
flex: 1;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.compact-badge {
|
|
965
|
+
background-color: #e0f2fe;
|
|
966
|
+
color: #0369a1;
|
|
967
|
+
font-size: 12px;
|
|
968
|
+
font-weight: 600;
|
|
969
|
+
padding: 2px 8px;
|
|
970
|
+
border-radius: 12px;
|
|
971
|
+
margin: 0 12px;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.compact-right-text {
|
|
975
|
+
font-size: 13px;
|
|
976
|
+
color: #64748b;
|
|
977
|
+
white-space: nowrap;
|
|
978
|
+
}
|
|
979
|
+
.compact-right-text.danger {
|
|
980
|
+
color: #ef4444;
|
|
981
|
+
font-weight: 600;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.ra-compact-item {
|
|
985
|
+
display: flex;
|
|
986
|
+
align-items: flex-start;
|
|
987
|
+
padding: 12px 16px;
|
|
988
|
+
border-bottom: 1px solid #f1f5f9;
|
|
989
|
+
}
|
|
990
|
+
.ra-compact-item:last-child {
|
|
991
|
+
border-bottom: none;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.ra-icon-circle {
|
|
995
|
+
width: 36px;
|
|
996
|
+
height: 36px;
|
|
997
|
+
border-radius: 50%;
|
|
998
|
+
display: flex;
|
|
999
|
+
align-items: center;
|
|
1000
|
+
justify-content: center;
|
|
1001
|
+
margin-right: 12px;
|
|
1002
|
+
flex-shrink: 0;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.ra-header-square-icon {
|
|
1006
|
+
width: 14px;
|
|
1007
|
+
height: 14px;
|
|
1008
|
+
border-radius: 4px;
|
|
1009
|
+
margin-right: 8px;
|
|
1010
|
+
}
|
|
896
1011
|
.ra-footer {
|
|
897
1012
|
margin-top: auto;
|
|
898
|
-
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
899
1013
|
padding-top: 16px;
|
|
900
1014
|
padding-bottom: 0px;
|
|
901
1015
|
display: flex;
|