@djb25/digit-ui-css 1.0.22 → 1.0.24
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 +4 -0
- package/src/components/body.scss +27 -17
- package/src/components/card.scss +144 -63
- package/src/components/financeUi.scss +689 -657
- package/src/components/uploadcomponents.scss +73 -2
- package/src/index.scss +22 -0
- package/src/pages/employee/index.scss +43 -45
- package/src/pages/employee/popupmodule.scss +4 -0
|
@@ -76,8 +76,73 @@
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
.upload-file {
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
.uploaaad {
|
|
80
|
+
display: flex;
|
|
81
|
+
align-items: center;
|
|
82
|
+
gap: 8px;
|
|
83
|
+
background-color: #95afe0;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
color: white;
|
|
86
|
+
position: relative;
|
|
87
|
+
padding-left: 8px;
|
|
88
|
+
padding-right: 16px;
|
|
89
|
+
border-radius: 0.375rem 0 0 0.375rem;
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
div {
|
|
92
|
+
margin-top: 0 !important;
|
|
93
|
+
padding-left: 0;
|
|
94
|
+
}
|
|
95
|
+
.input-mirror-selector-button {
|
|
96
|
+
width: 100% !important;
|
|
97
|
+
height: 100% !important;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
input {
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
input {
|
|
104
|
+
width: 100% !important;
|
|
105
|
+
height: 100% !important;
|
|
106
|
+
cursor: pointer;
|
|
107
|
+
}
|
|
108
|
+
.upload-button {
|
|
109
|
+
margin-top: 0;
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
}
|
|
112
|
+
.file-upload-status {
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
font-weight: 500;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
.tag-container {
|
|
118
|
+
margin-top: 0;
|
|
119
|
+
margin-bottom: 0;
|
|
120
|
+
max-width: 50%;
|
|
121
|
+
margin-left: 5px;
|
|
122
|
+
padding-left: 0;
|
|
123
|
+
|
|
124
|
+
::-webkit-scrollbar {
|
|
125
|
+
display: none;
|
|
126
|
+
}
|
|
127
|
+
scrollbar-width: none;
|
|
128
|
+
-ms-overflow-style: none;
|
|
129
|
+
|
|
130
|
+
.tag {
|
|
131
|
+
display: flex;
|
|
132
|
+
align-items: center;
|
|
133
|
+
padding-top: 0;
|
|
134
|
+
padding-bottom: 0;
|
|
135
|
+
margin: 0;
|
|
136
|
+
.text {
|
|
137
|
+
max-width: calc(100% - 25px);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.upload-file {
|
|
144
|
+
min-height: 40px;
|
|
145
|
+
@apply relative border border-input-border w-full rounded-md;
|
|
81
146
|
|
|
82
147
|
div {
|
|
83
148
|
@apply flex flex-row h-full items-center pl-md mt-sm flex-wrap;
|
|
@@ -98,3 +163,9 @@
|
|
|
98
163
|
height: 158px;
|
|
99
164
|
}
|
|
100
165
|
}
|
|
166
|
+
|
|
167
|
+
.ws-doc-upload {
|
|
168
|
+
.label-field-pair {
|
|
169
|
+
justify-content: flex-end;
|
|
170
|
+
}
|
|
171
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -748,6 +748,28 @@ input[type="number"] {
|
|
|
748
748
|
}
|
|
749
749
|
}
|
|
750
750
|
|
|
751
|
+
.ws-search-form {
|
|
752
|
+
display: flex;
|
|
753
|
+
flex-direction: column;
|
|
754
|
+
gap: 20px;
|
|
755
|
+
|
|
756
|
+
.ws-search-form-wrapper {
|
|
757
|
+
border-radius: 0;
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.ws-search-form-wrapper {
|
|
762
|
+
padding: 0;
|
|
763
|
+
overflow-y: scroll;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.ws-submit {
|
|
767
|
+
display: flex;
|
|
768
|
+
gap: 16px;
|
|
769
|
+
justify-content: end;
|
|
770
|
+
align-items: center;
|
|
771
|
+
}
|
|
772
|
+
|
|
751
773
|
.plumber-details-new-value-wrapper {
|
|
752
774
|
flex: 2 1 auto;
|
|
753
775
|
}
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
.employee-main-application-details{
|
|
77
|
+
.employee-main-application-details {
|
|
78
78
|
width: 100%;
|
|
79
79
|
overflow-y: scroll;
|
|
80
80
|
}
|
|
@@ -88,8 +88,6 @@
|
|
|
88
88
|
gap: 16px;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
|
|
92
|
-
|
|
93
91
|
.citizen {
|
|
94
92
|
.main {
|
|
95
93
|
padding-top: 82px;
|
|
@@ -97,6 +95,10 @@
|
|
|
97
95
|
}
|
|
98
96
|
}
|
|
99
97
|
|
|
98
|
+
.ws-edit-form-card-wrapper {
|
|
99
|
+
grid-template-columns: 1fr;
|
|
100
|
+
}
|
|
101
|
+
|
|
100
102
|
.citizen,
|
|
101
103
|
.employee {
|
|
102
104
|
.sidebar {
|
|
@@ -243,7 +245,8 @@
|
|
|
243
245
|
&.active {
|
|
244
246
|
border-left: 4px solid theme(colors.primary.main);
|
|
245
247
|
|
|
246
|
-
&.level-0 {
|
|
248
|
+
&.level-0 {
|
|
249
|
+
}
|
|
247
250
|
|
|
248
251
|
&.level-1 {
|
|
249
252
|
border-left: 8.5px solid theme(colors.primary.main);
|
|
@@ -253,7 +256,8 @@
|
|
|
253
256
|
border-left: 4px solid theme(colors.primary.main);
|
|
254
257
|
}
|
|
255
258
|
|
|
256
|
-
&.level-3 {
|
|
259
|
+
&.level-3 {
|
|
260
|
+
}
|
|
257
261
|
|
|
258
262
|
color: theme(colors.primary.main) !important;
|
|
259
263
|
border-right: none;
|
|
@@ -432,10 +436,7 @@
|
|
|
432
436
|
-webkit-backdrop-filter: blur(20px) saturate(150%);
|
|
433
437
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
434
438
|
|
|
435
|
-
box-shadow:
|
|
436
|
-
inset 0 2px 4px rgba(255, 255, 255, 0.4),
|
|
437
|
-
inset 0 -2px 6px rgba(0, 0, 0, 0.1),
|
|
438
|
-
0 12px 30px rgba(97, 119, 236, 0.2);
|
|
439
|
+
box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -2px 6px rgba(0, 0, 0, 0.1), 0 12px 30px rgba(97, 119, 236, 0.2);
|
|
439
440
|
|
|
440
441
|
.header-icon-area {
|
|
441
442
|
position: absolute;
|
|
@@ -455,7 +456,6 @@
|
|
|
455
456
|
.header-greeting-area {
|
|
456
457
|
display: flex;
|
|
457
458
|
flex-direction: column;
|
|
458
|
-
|
|
459
459
|
}
|
|
460
460
|
|
|
461
461
|
.greeting-title {
|
|
@@ -481,7 +481,6 @@
|
|
|
481
481
|
font-weight: 500;
|
|
482
482
|
color: rgba(255, 255, 255, 0.9);
|
|
483
483
|
letter-spacing: 0.5px;
|
|
484
|
-
|
|
485
484
|
}
|
|
486
485
|
|
|
487
486
|
/* --- Right: Omni Search Area --- */
|
|
@@ -543,7 +542,7 @@
|
|
|
543
542
|
padding: 4px 10px;
|
|
544
543
|
border-radius: 8px;
|
|
545
544
|
margin-right: 6px;
|
|
546
|
-
font-family:
|
|
545
|
+
font-family: "SFMono-Regular", Consolas, monospace;
|
|
547
546
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
548
547
|
}
|
|
549
548
|
}
|
|
@@ -656,7 +655,8 @@
|
|
|
656
655
|
justify-content: center;
|
|
657
656
|
}
|
|
658
657
|
|
|
659
|
-
.center-container {
|
|
658
|
+
.center-container {
|
|
659
|
+
}
|
|
660
660
|
}
|
|
661
661
|
}
|
|
662
662
|
|
|
@@ -888,12 +888,13 @@
|
|
|
888
888
|
@media (min-width: 1024px) {
|
|
889
889
|
.top-info-cards-wrapper {
|
|
890
890
|
display: grid;
|
|
891
|
-
grid-template-columns: 3fr 1fr;
|
|
891
|
+
grid-template-columns: 3fr 1fr;
|
|
892
892
|
align-items: stretch;
|
|
893
893
|
}
|
|
894
894
|
}
|
|
895
895
|
|
|
896
|
-
@media (min-width: 375px) {
|
|
896
|
+
@media (min-width: 375px) {
|
|
897
|
+
}
|
|
897
898
|
|
|
898
899
|
.static-card {
|
|
899
900
|
background: white;
|
|
@@ -1009,13 +1010,13 @@
|
|
|
1009
1010
|
margin-right: 8px;
|
|
1010
1011
|
}
|
|
1011
1012
|
.ra-footer {
|
|
1012
|
-
margin-top: auto;
|
|
1013
|
-
padding-top: 16px;
|
|
1014
|
-
padding-bottom: 0px;
|
|
1013
|
+
margin-top: auto;
|
|
1014
|
+
padding-top: 16px;
|
|
1015
|
+
padding-bottom: 0px;
|
|
1015
1016
|
display: flex;
|
|
1016
1017
|
justify-content: center;
|
|
1017
1018
|
align-items: center;
|
|
1018
|
-
background: transparent;
|
|
1019
|
+
background: transparent;
|
|
1019
1020
|
z-index: 10;
|
|
1020
1021
|
}
|
|
1021
1022
|
|
|
@@ -1093,10 +1094,10 @@
|
|
|
1093
1094
|
color: #ef4444;
|
|
1094
1095
|
}
|
|
1095
1096
|
.ra-timeline {
|
|
1096
|
-
flex: 1;
|
|
1097
|
-
overflow-y: auto;
|
|
1098
|
-
min-height: 0;
|
|
1099
|
-
padding-right: 8px;
|
|
1097
|
+
flex: 1;
|
|
1098
|
+
overflow-y: auto;
|
|
1099
|
+
min-height: 0;
|
|
1100
|
+
padding-right: 8px;
|
|
1100
1101
|
}
|
|
1101
1102
|
.ra-timeline-modal {
|
|
1102
1103
|
padding: 24px;
|
|
@@ -1118,7 +1119,6 @@
|
|
|
1118
1119
|
justify-content: space-between;
|
|
1119
1120
|
align-items: center;
|
|
1120
1121
|
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
1121
|
-
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
1124
|
.ra-header h3 {
|
|
@@ -1260,11 +1260,11 @@
|
|
|
1260
1260
|
row-gap: 1rem;
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
|
-
.vendor-two-column-form .employeeCard
|
|
1264
|
-
.vendor-two-column-form .employeeCard>header,
|
|
1265
|
-
.vendor-two-column-form .employeeCard
|
|
1266
|
-
.vendor-two-column-form .employeeCard
|
|
1267
|
-
.vendor-two-column-form .employeeCard
|
|
1263
|
+
.vendor-two-column-form .employeeCard > .card-header,
|
|
1264
|
+
.vendor-two-column-form .employeeCard > header,
|
|
1265
|
+
.vendor-two-column-form .employeeCard > .submit-bar,
|
|
1266
|
+
.vendor-two-column-form .employeeCard > .primary-label-btn,
|
|
1267
|
+
.vendor-two-column-form .employeeCard > .break-line {
|
|
1268
1268
|
grid-column: 1 / -1;
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
@@ -1289,22 +1289,21 @@
|
|
|
1289
1289
|
align-items: flex-start;
|
|
1290
1290
|
}
|
|
1291
1291
|
|
|
1292
|
-
.vendor-two-column-form .digit-card
|
|
1293
|
-
.vendor-two-column-form .digit-card
|
|
1294
|
-
.vendor-two-column-form .digit-card>header,
|
|
1295
|
-
.vendor-two-column-form .employeeCard
|
|
1296
|
-
.vendor-two-column-form .employeeCard
|
|
1297
|
-
.vendor-two-column-form .employeeCard>header,
|
|
1298
|
-
.vendor-two-column-form .card
|
|
1299
|
-
.vendor-two-column-form .card
|
|
1300
|
-
.vendor-two-column-form .card>header,
|
|
1301
|
-
.vendor-two-column-form .card>hr {
|
|
1292
|
+
.vendor-two-column-form .digit-card > .card-header,
|
|
1293
|
+
.vendor-two-column-form .digit-card > .card-sub-header,
|
|
1294
|
+
.vendor-two-column-form .digit-card > header,
|
|
1295
|
+
.vendor-two-column-form .employeeCard > .card-header,
|
|
1296
|
+
.vendor-two-column-form .employeeCard > .card-sub-header,
|
|
1297
|
+
.vendor-two-column-form .employeeCard > header,
|
|
1298
|
+
.vendor-two-column-form .card > .card-header,
|
|
1299
|
+
.vendor-two-column-form .card > .card-sub-header,
|
|
1300
|
+
.vendor-two-column-form .card > header,
|
|
1301
|
+
.vendor-two-column-form .card > hr {
|
|
1302
1302
|
grid-column: 1 / -1;
|
|
1303
1303
|
width: 100%;
|
|
1304
1304
|
}
|
|
1305
1305
|
|
|
1306
1306
|
@media (max-width: 768px) {
|
|
1307
|
-
|
|
1308
1307
|
.vendor-two-column-form .digit-card,
|
|
1309
1308
|
.vendor-two-column-form .employeeCard,
|
|
1310
1309
|
.vendor-two-column-form .card {
|
|
@@ -1354,7 +1353,7 @@
|
|
|
1354
1353
|
width: 100%;
|
|
1355
1354
|
}
|
|
1356
1355
|
|
|
1357
|
-
.vendor-select-address-inline
|
|
1356
|
+
.vendor-select-address-inline > .label-field-pair {
|
|
1358
1357
|
flex: 1;
|
|
1359
1358
|
}
|
|
1360
1359
|
|
|
@@ -1366,7 +1365,6 @@
|
|
|
1366
1365
|
|
|
1367
1366
|
@media (min-width: 325px) and (max-width: 768px) {
|
|
1368
1367
|
.home-header {
|
|
1369
|
-
|
|
1370
1368
|
.header-top-section {
|
|
1371
1369
|
margin-inline: 10px;
|
|
1372
1370
|
}
|
|
@@ -1508,11 +1506,11 @@
|
|
|
1508
1506
|
|
|
1509
1507
|
.engagement-custom-card {
|
|
1510
1508
|
display: flex !important;
|
|
1511
|
-
|
|
1509
|
+
|
|
1512
1510
|
.employeeCard {
|
|
1513
1511
|
margin: 0 !important;
|
|
1514
1512
|
width: 100% !important;
|
|
1515
|
-
min-height: 120px !important;
|
|
1513
|
+
min-height: 120px !important;
|
|
1516
1514
|
border-radius: 12px;
|
|
1517
1515
|
background: linear-gradient(145deg, #ffffff, #f9fafb);
|
|
1518
1516
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
|
|
@@ -1582,4 +1580,4 @@
|
|
|
1582
1580
|
.engagement-cards-grid {
|
|
1583
1581
|
grid-template-columns: 1fr !important;
|
|
1584
1582
|
}
|
|
1585
|
-
}
|
|
1583
|
+
}
|