@pmidc/upyog-css 1.1.5 → 1.1.6
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 +4595 -2612
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +425 -0
- package/src/components/NewAccordianCitizen.scss +130 -0
- package/src/components/TimeLine.scss +29 -1
- package/src/components/body.scss +116 -2
- package/src/components/buttons.scss +9 -2
- package/src/components/card.scss +243 -98
- package/src/components/info-banner.scss +1 -1
- package/src/components/keynote.scss +2 -0
- package/src/components/map.scss +6 -0
- package/src/components/multiSelectDropdown.scss +21 -5
- package/src/components/navbar.scss +3 -10
- package/src/components/newFooter.scss +75 -0
- package/src/components/searchAction.scss +7 -0
- package/src/components/selectdropdown.scss +89 -18
- package/src/components/table.scss +325 -141
- package/src/components/textfields.scss +25 -17
- package/src/components/topbar.scss +169 -99
- package/src/index.scss +7 -1
- package/src/pages/citizen/CitizenLogin.scss +50 -0
- package/src/pages/citizen/DocumentList.scss +145 -1
- package/src/pages/citizen/HomePageWrapper.scss +61 -12
- package/src/pages/citizen/InboxCard.scss +327 -0
- package/src/pages/citizen/citizenDocument.scss +4 -0
- package/src/pages/citizen/citizenNewLogin.scss +266 -102
- package/src/pages/citizen/container.scss +10 -0
- package/src/pages/employee/dashboard.scss +1 -1
- package/src/pages/employee/dss.scss +2 -0
- package/src/pages/employee/header.scss +262 -0
- package/src/pages/employee/index.scss +60 -61
- package/src/pages/employee/login.scss +188 -530
package/src/components/card.scss
CHANGED
|
@@ -1,56 +1,125 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
1
3
|
.card {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
+
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
|
|
5
|
+
margin: 8px;
|
|
6
|
+
padding: 20px 24px 28px 24px;
|
|
4
7
|
max-width: 95vw;
|
|
5
8
|
width: 100%;
|
|
9
|
+
border-radius: 14px;
|
|
10
|
+
border: 1px solid #e1e8f0;
|
|
11
|
+
box-shadow: 0 12px 32px rgba(30, 58, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
|
|
12
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
13
|
+
position: relative;
|
|
14
|
+
overflow: visible;
|
|
15
|
+
|
|
6
16
|
|
|
7
17
|
.card-header {
|
|
8
|
-
|
|
18
|
+
font-size: 20px;
|
|
19
|
+
font-weight: 800;
|
|
20
|
+
color: #0f172a;
|
|
21
|
+
text-align: left;
|
|
22
|
+
margin-bottom: 12px;
|
|
23
|
+
letter-spacing: 0.3px;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: space-between;
|
|
9
27
|
}
|
|
10
28
|
|
|
11
29
|
.card-sub-header {
|
|
12
|
-
|
|
30
|
+
font-size: 14px;
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
color: #1e293b;
|
|
33
|
+
text-align: left;
|
|
34
|
+
margin-bottom: 8px;
|
|
35
|
+
text-transform: uppercase;
|
|
36
|
+
letter-spacing: 0.4px;
|
|
13
37
|
}
|
|
14
38
|
|
|
15
39
|
.card-caption {
|
|
16
|
-
|
|
40
|
+
font-size: 13px;
|
|
41
|
+
color: #64748b;
|
|
42
|
+
margin-bottom: 8px;
|
|
43
|
+
font-weight: 500;
|
|
17
44
|
}
|
|
18
45
|
|
|
19
46
|
.card-text {
|
|
20
|
-
|
|
47
|
+
font-size: 14px;
|
|
48
|
+
color: #475569;
|
|
49
|
+
text-align: left;
|
|
50
|
+
margin-bottom: 16px;
|
|
51
|
+
line-height: 1.6;
|
|
21
52
|
|
|
22
53
|
span {
|
|
23
|
-
|
|
54
|
+
color: #0f172a;
|
|
55
|
+
font-weight: 600;
|
|
24
56
|
}
|
|
25
57
|
}
|
|
26
58
|
|
|
27
59
|
.card-text-primary {
|
|
28
|
-
|
|
60
|
+
font-size: 14px;
|
|
61
|
+
color: #0f172a;
|
|
62
|
+
font-weight: 600;
|
|
29
63
|
}
|
|
30
64
|
|
|
31
65
|
.card-text-button {
|
|
32
|
-
|
|
66
|
+
color: #2563eb;
|
|
67
|
+
font-size: 13px;
|
|
68
|
+
font-weight: 700;
|
|
33
69
|
}
|
|
34
70
|
|
|
35
71
|
.card-label {
|
|
36
|
-
|
|
72
|
+
font-size: 12px;
|
|
73
|
+
color: #0f172a;
|
|
74
|
+
margin-bottom: 8px;
|
|
75
|
+
font-weight: 700;
|
|
76
|
+
text-transform: uppercase;
|
|
77
|
+
letter-spacing: 0.5px;
|
|
37
78
|
}
|
|
38
79
|
|
|
39
80
|
.card-label-error {
|
|
40
|
-
|
|
81
|
+
display: block;
|
|
82
|
+
font-size: 12px;
|
|
83
|
+
color: #dc2626;
|
|
84
|
+
margin-bottom: 16px;
|
|
85
|
+
font-weight: 600;
|
|
41
86
|
}
|
|
42
87
|
|
|
43
88
|
.card-label-desc {
|
|
44
|
-
|
|
89
|
+
font-weight: 700;
|
|
90
|
+
color: #475569;
|
|
91
|
+
font-size: 13px;
|
|
92
|
+
margin-bottom: 16px;
|
|
93
|
+
text-transform: uppercase;
|
|
94
|
+
letter-spacing: 0.3px;
|
|
45
95
|
}
|
|
46
96
|
|
|
47
97
|
.card-link {
|
|
48
|
-
|
|
98
|
+
display: inline-block;
|
|
99
|
+
text-align: center;
|
|
100
|
+
color: #2563eb;
|
|
101
|
+
margin-top: 16px;
|
|
102
|
+
cursor: pointer;
|
|
103
|
+
font-weight: 700;
|
|
104
|
+
font-size: 13px;
|
|
105
|
+
padding: 8px 16px;
|
|
106
|
+
border-radius: 8px;
|
|
107
|
+
background: rgba(37, 99, 235, 0.08);
|
|
108
|
+
transition: all 0.2s ease;
|
|
109
|
+
text-decoration: none;
|
|
110
|
+
|
|
111
|
+
&:hover {
|
|
112
|
+
background: rgba(37, 99, 235, 0.16);
|
|
113
|
+
transform: translateX(2px);
|
|
114
|
+
}
|
|
49
115
|
}
|
|
50
116
|
}
|
|
51
117
|
|
|
52
118
|
.validation-error {
|
|
53
|
-
|
|
119
|
+
display: block;
|
|
120
|
+
font-size: 12px;
|
|
121
|
+
color: #dc2626;
|
|
122
|
+
font-weight: 600;
|
|
54
123
|
}
|
|
55
124
|
|
|
56
125
|
.docsDescription {
|
|
@@ -58,65 +127,129 @@
|
|
|
58
127
|
}
|
|
59
128
|
|
|
60
129
|
.field-container {
|
|
61
|
-
|
|
62
|
-
|
|
130
|
+
display: flex;
|
|
131
|
+
align-items: center;
|
|
63
132
|
}
|
|
64
133
|
|
|
65
134
|
.employeeCard {
|
|
66
|
-
|
|
67
|
-
|
|
135
|
+
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
|
|
136
|
+
padding: 24px;
|
|
137
|
+
margin-bottom: 32px;
|
|
138
|
+
border-radius: 14px;
|
|
139
|
+
border: 1px solid #e1e8f0;
|
|
140
|
+
box-shadow: 0 12px 32px rgba(30, 58, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
|
|
141
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
142
|
+
position: relative;
|
|
143
|
+
overflow: visible !important;
|
|
68
144
|
|
|
69
145
|
.card-header {
|
|
70
|
-
|
|
146
|
+
font-size: 22px;
|
|
147
|
+
font-weight: 800;
|
|
148
|
+
color: #0f172a;
|
|
149
|
+
text-align: left;
|
|
150
|
+
margin-bottom: 16px;
|
|
151
|
+
letter-spacing: 0.3px;
|
|
71
152
|
}
|
|
72
153
|
|
|
73
154
|
.card-sub-header,
|
|
74
155
|
.employee-card-sub-header {
|
|
75
|
-
|
|
156
|
+
font-size: 14px;
|
|
157
|
+
font-weight: 700;
|
|
158
|
+
color: #1e293b;
|
|
159
|
+
text-align: left;
|
|
160
|
+
text-transform: uppercase;
|
|
161
|
+
letter-spacing: 0.4px;
|
|
76
162
|
}
|
|
77
163
|
|
|
78
164
|
.card-section-header {
|
|
79
|
-
|
|
165
|
+
font-size: 20px;
|
|
166
|
+
color: #0d43a7;
|
|
167
|
+
font-weight: 700;
|
|
168
|
+
line-height: 1.4;
|
|
169
|
+
margin-bottom: 12px;
|
|
80
170
|
}
|
|
81
171
|
|
|
82
172
|
.card-section-sub-text {
|
|
83
|
-
|
|
173
|
+
font-size: 12px;
|
|
174
|
+
color: #0f172a;
|
|
175
|
+
font-weight: 500;
|
|
84
176
|
}
|
|
85
177
|
|
|
86
178
|
.card-caption {
|
|
87
|
-
|
|
179
|
+
font-size: 13px;
|
|
180
|
+
color: #64748b;
|
|
181
|
+
margin-bottom: 8px;
|
|
88
182
|
}
|
|
89
183
|
|
|
90
184
|
.card-text {
|
|
91
|
-
|
|
185
|
+
font-size: 14px;
|
|
186
|
+
color: #475569;
|
|
187
|
+
text-align: left;
|
|
188
|
+
margin-bottom: 16px;
|
|
189
|
+
line-height: 1.6;
|
|
92
190
|
|
|
93
191
|
span {
|
|
94
|
-
|
|
192
|
+
color: #0f172a;
|
|
193
|
+
font-weight: 600;
|
|
95
194
|
}
|
|
96
195
|
}
|
|
97
196
|
|
|
98
197
|
.card-text-primary {
|
|
99
|
-
|
|
198
|
+
font-size: 14px;
|
|
199
|
+
color: #0f172a;
|
|
200
|
+
font-weight: 600;
|
|
100
201
|
}
|
|
101
202
|
|
|
102
203
|
.card-text-button {
|
|
103
|
-
|
|
204
|
+
color: #2563eb;
|
|
205
|
+
font-size: 13px;
|
|
206
|
+
font-weight: 700;
|
|
104
207
|
}
|
|
105
208
|
|
|
106
209
|
.card-label {
|
|
107
|
-
|
|
210
|
+
font-size: 12px;
|
|
211
|
+
color: #0f172a;
|
|
212
|
+
margin-bottom: 8px;
|
|
213
|
+
font-weight: 700;
|
|
214
|
+
text-transform: uppercase;
|
|
215
|
+
letter-spacing: 0.5px;
|
|
108
216
|
}
|
|
109
217
|
|
|
110
218
|
.card-label-error {
|
|
111
|
-
|
|
219
|
+
display: block;
|
|
220
|
+
font-size: 12px;
|
|
221
|
+
color: #dc2626;
|
|
222
|
+
margin-bottom: 16px;
|
|
223
|
+
font-weight: 600;
|
|
112
224
|
}
|
|
113
225
|
|
|
114
226
|
.card-label-desc {
|
|
115
|
-
|
|
227
|
+
font-weight: 700;
|
|
228
|
+
color: #475569;
|
|
229
|
+
font-size: 13px;
|
|
230
|
+
margin-bottom: 16px;
|
|
231
|
+
text-transform: uppercase;
|
|
232
|
+
letter-spacing: 0.3px;
|
|
116
233
|
}
|
|
117
234
|
|
|
118
235
|
.card-link {
|
|
119
|
-
|
|
236
|
+
display: inline-block;
|
|
237
|
+
text-align: left;
|
|
238
|
+
color: #2563eb;
|
|
239
|
+
margin-top: 12px;
|
|
240
|
+
cursor: pointer;
|
|
241
|
+
font-weight: 700;
|
|
242
|
+
font-size: 13px;
|
|
243
|
+
padding: 8px 12px;
|
|
244
|
+
border-radius: 8px;
|
|
245
|
+
background: rgba(37, 99, 235, 0.08);
|
|
246
|
+
transition: all 0.2s ease;
|
|
247
|
+
text-decoration: none;
|
|
248
|
+
|
|
249
|
+
&:hover {
|
|
250
|
+
background: rgba(37, 99, 235, 0.16);
|
|
251
|
+
transform: translateX(2px);
|
|
252
|
+
}
|
|
120
253
|
}
|
|
121
254
|
|
|
122
255
|
.card-search-heading {
|
|
@@ -127,72 +260,95 @@
|
|
|
127
260
|
padding-left: 25px;
|
|
128
261
|
}
|
|
129
262
|
}
|
|
263
|
+
|
|
130
264
|
.employeeCard.fsm {
|
|
131
265
|
margin-bottom: 64px !important;
|
|
132
266
|
margin-left: 0px !important;
|
|
133
267
|
margin-right: 16px !important;
|
|
134
268
|
}
|
|
135
269
|
.header-wrap {
|
|
136
|
-
|
|
270
|
+
display: flex;
|
|
271
|
+
margin-bottom: 16px;
|
|
137
272
|
|
|
138
273
|
.header-start {
|
|
139
274
|
margin-right: auto;
|
|
140
275
|
}
|
|
141
276
|
|
|
142
|
-
.header-content {
|
|
143
|
-
}
|
|
144
|
-
|
|
145
277
|
.header-end {
|
|
146
278
|
margin-left: auto;
|
|
147
279
|
}
|
|
148
280
|
}
|
|
149
281
|
|
|
150
282
|
.card-emp {
|
|
151
|
-
|
|
152
|
-
padding
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
283
|
+
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
|
|
284
|
+
padding: 0;
|
|
285
|
+
margin: 8px;
|
|
286
|
+
border-radius: 14px;
|
|
287
|
+
border: 1px solid #e1e8f0;
|
|
156
288
|
}
|
|
157
289
|
|
|
158
290
|
.submit-bar {
|
|
159
|
-
|
|
160
|
-
|
|
291
|
+
height: 40px;
|
|
292
|
+
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
|
|
293
|
+
color: white;
|
|
294
|
+
text-align: center;
|
|
295
|
+
outline: none;
|
|
161
296
|
width: 175px;
|
|
162
297
|
border-radius: 8px;
|
|
298
|
+
border: none;
|
|
299
|
+
font-weight: 700;
|
|
300
|
+
font-size: 13px;
|
|
301
|
+
cursor: pointer;
|
|
302
|
+
transition: all 0.2s ease;
|
|
303
|
+
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
304
|
+
|
|
305
|
+
&:hover {
|
|
306
|
+
transform: translateY(-2px);
|
|
307
|
+
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
|
|
308
|
+
}
|
|
163
309
|
|
|
164
310
|
&:focus {
|
|
165
|
-
|
|
311
|
+
outline: none;
|
|
166
312
|
}
|
|
167
313
|
|
|
168
314
|
header {
|
|
169
|
-
|
|
315
|
+
font-weight: 600;
|
|
316
|
+
font-size: 12px;
|
|
317
|
+
color: white;
|
|
318
|
+
line-height: 40px;
|
|
170
319
|
}
|
|
171
320
|
}
|
|
172
321
|
|
|
173
322
|
.submit-bar-disabled {
|
|
174
|
-
|
|
175
|
-
|
|
323
|
+
height: 40px;
|
|
324
|
+
background: linear-gradient(135deg, #94a3b8 0%, #78909c 100%);
|
|
325
|
+
color: white;
|
|
326
|
+
text-align: center;
|
|
327
|
+
outline: none;
|
|
328
|
+
opacity: 0.6;
|
|
176
329
|
width: 175px;
|
|
177
330
|
border-radius: 8px;
|
|
331
|
+
border: none;
|
|
332
|
+
cursor: not-allowed;
|
|
178
333
|
|
|
179
334
|
&:focus {
|
|
180
|
-
|
|
335
|
+
outline: none;
|
|
181
336
|
}
|
|
182
337
|
|
|
183
338
|
header {
|
|
184
|
-
|
|
185
|
-
|
|
339
|
+
font-weight: 600;
|
|
340
|
+
font-size: 12px;
|
|
341
|
+
color: white;
|
|
342
|
+
line-height: 40px;
|
|
186
343
|
}
|
|
187
344
|
}
|
|
188
345
|
|
|
189
|
-
@
|
|
346
|
+
@media (min-width: 1024px) {
|
|
190
347
|
.submit-bar,
|
|
191
348
|
.submit-bar-disabled {
|
|
192
349
|
width: 175px;
|
|
193
350
|
border-radius: 8px;
|
|
194
|
-
|
|
195
|
-
height: 2rem !important;
|
|
351
|
+
height: 40px;
|
|
196
352
|
}
|
|
197
353
|
|
|
198
354
|
.card {
|
|
@@ -200,29 +356,31 @@
|
|
|
200
356
|
flex-direction: column;
|
|
201
357
|
|
|
202
358
|
.card-header {
|
|
203
|
-
|
|
359
|
+
font-size: 24px;
|
|
204
360
|
}
|
|
205
361
|
|
|
206
362
|
.card-sub-header {
|
|
207
|
-
|
|
363
|
+
font-size: 18px;
|
|
208
364
|
}
|
|
209
365
|
|
|
210
366
|
.card-caption {
|
|
211
|
-
|
|
367
|
+
font-size: 14px;
|
|
212
368
|
}
|
|
213
369
|
|
|
214
370
|
.card-text,
|
|
215
371
|
.card-text-primary {
|
|
216
|
-
|
|
372
|
+
font-size: 16px;
|
|
217
373
|
}
|
|
218
374
|
|
|
219
375
|
.card-link {
|
|
220
|
-
|
|
376
|
+
text-align: left;
|
|
221
377
|
}
|
|
222
378
|
}
|
|
223
379
|
|
|
224
380
|
.employeeCard {
|
|
225
|
-
|
|
381
|
+
margin-bottom: 16px !important;
|
|
382
|
+
margin-left: 16px !important;
|
|
383
|
+
margin-right: 16px !important;
|
|
226
384
|
|
|
227
385
|
&.filter {
|
|
228
386
|
margin-left: auto;
|
|
@@ -230,16 +388,17 @@
|
|
|
230
388
|
}
|
|
231
389
|
|
|
232
390
|
.card-header {
|
|
233
|
-
|
|
391
|
+
font-size: 24px;
|
|
234
392
|
}
|
|
235
393
|
|
|
236
394
|
.card-sub-header {
|
|
237
|
-
|
|
395
|
+
margin-bottom: 40px;
|
|
396
|
+
font-size: 18px;
|
|
238
397
|
}
|
|
239
398
|
|
|
240
399
|
.employee-card-sub-header {
|
|
241
400
|
margin-bottom: 40px;
|
|
242
|
-
|
|
401
|
+
font-size: 18px;
|
|
243
402
|
}
|
|
244
403
|
|
|
245
404
|
.card-section-header {
|
|
@@ -247,12 +406,12 @@
|
|
|
247
406
|
color: #0d43a7;
|
|
248
407
|
font-size: 24px;
|
|
249
408
|
line-height: 28px;
|
|
250
|
-
font-
|
|
251
|
-
@apply text-heading-m-dt font-medium font-sans;
|
|
409
|
+
font-weight: 700;
|
|
252
410
|
}
|
|
253
411
|
|
|
254
412
|
.card-section-sub-text {
|
|
255
|
-
|
|
413
|
+
font-size: 12px;
|
|
414
|
+
color: #0f172a;
|
|
256
415
|
}
|
|
257
416
|
|
|
258
417
|
.card-search-heading {
|
|
@@ -264,20 +423,21 @@
|
|
|
264
423
|
}
|
|
265
424
|
|
|
266
425
|
.card-caption {
|
|
267
|
-
|
|
426
|
+
font-size: 14px;
|
|
268
427
|
}
|
|
269
428
|
|
|
270
429
|
.card-text,
|
|
271
430
|
.card-text-primary {
|
|
272
|
-
|
|
431
|
+
font-size: 16px;
|
|
273
432
|
}
|
|
274
433
|
|
|
275
434
|
.card-link {
|
|
276
|
-
|
|
435
|
+
text-align: left;
|
|
277
436
|
}
|
|
278
437
|
|
|
279
438
|
.label-field-pair {
|
|
280
|
-
|
|
439
|
+
display: flex;
|
|
440
|
+
align-items: center;
|
|
281
441
|
|
|
282
442
|
h2 {
|
|
283
443
|
width: 30%;
|
|
@@ -294,37 +454,17 @@
|
|
|
294
454
|
|
|
295
455
|
.field-container {
|
|
296
456
|
span {
|
|
297
|
-
|
|
298
|
-
background: rgb(247, 247, 247);
|
|
299
|
-
width: 40px;
|
|
300
|
-
height: 40px;
|
|
301
|
-
display: flex;
|
|
302
|
-
justify-content: center;
|
|
303
|
-
align-items: center;
|
|
304
|
-
margin-top: -16px;
|
|
305
|
-
border-right: none;
|
|
457
|
+
|
|
306
458
|
}
|
|
307
459
|
}
|
|
308
460
|
}
|
|
309
|
-
|
|
310
|
-
.header-wrap {
|
|
311
|
-
@apply flex mb-md;
|
|
312
|
-
|
|
313
|
-
.header-start {
|
|
314
|
-
margin-right: auto;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.header-content {
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.header-end {
|
|
321
|
-
margin-left: auto;
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
461
|
}
|
|
325
462
|
|
|
326
463
|
.card-section-header {
|
|
327
|
-
|
|
464
|
+
font-size: 18px;
|
|
465
|
+
color: #0f172a;
|
|
466
|
+
font-weight: 700;
|
|
467
|
+
margin-top: 8px;
|
|
328
468
|
}
|
|
329
469
|
|
|
330
470
|
.card-search-heading {
|
|
@@ -340,13 +480,14 @@
|
|
|
340
480
|
}
|
|
341
481
|
|
|
342
482
|
.home-page-info-banner-wrap {
|
|
343
|
-
margin:
|
|
483
|
+
margin: 0px 16px 24px 16px;
|
|
344
484
|
}
|
|
345
485
|
|
|
346
486
|
@media (min-width: 780px) {
|
|
347
487
|
.button-sub-text {
|
|
348
488
|
width: 240px;
|
|
349
489
|
}
|
|
490
|
+
|
|
350
491
|
.home-page-info-banner-wrap {
|
|
351
492
|
max-width: 45%;
|
|
352
493
|
min-width: 100%;
|
|
@@ -354,8 +495,7 @@
|
|
|
354
495
|
margin-right: 24px;
|
|
355
496
|
margin-bottom: 24px;
|
|
356
497
|
}
|
|
357
|
-
|
|
358
|
-
}
|
|
498
|
+
|
|
359
499
|
.oc-aknowledgement-screen {
|
|
360
500
|
width: auto;
|
|
361
501
|
min-width: 240px;
|
|
@@ -365,7 +505,11 @@
|
|
|
365
505
|
}
|
|
366
506
|
|
|
367
507
|
.card-label-error {
|
|
368
|
-
|
|
508
|
+
display: block;
|
|
509
|
+
font-size: 12px;
|
|
510
|
+
color: #dc2626;
|
|
511
|
+
margin-bottom: 16px;
|
|
512
|
+
font-weight: 600;
|
|
369
513
|
}
|
|
370
514
|
|
|
371
515
|
.employeeCard-override {
|
|
@@ -385,6 +529,7 @@
|
|
|
385
529
|
height: 70px !important;
|
|
386
530
|
margin-bottom: 15px !important;
|
|
387
531
|
}
|
|
532
|
+
|
|
388
533
|
.employee-main-application-details {
|
|
389
534
|
padding: 10px !important;
|
|
390
535
|
}
|
|
@@ -408,7 +553,7 @@
|
|
|
408
553
|
|
|
409
554
|
.language-selector .submit-bar,
|
|
410
555
|
.submit-bar-disabled {
|
|
411
|
-
background
|
|
556
|
+
background: linear-gradient(135deg, rgba(178, 196, 239, 0.8) 0%, rgba(178, 196, 239, 0.8) 100%) !important;
|
|
412
557
|
}
|
|
413
558
|
|
|
414
559
|
.owner-details {
|
package/src/components/map.scss
CHANGED
|
@@ -4,26 +4,37 @@
|
|
|
4
4
|
@apply relative border border-solid border-input-border h-10 w-full;
|
|
5
5
|
input[type=text]{
|
|
6
6
|
@apply absolute top-0 left-0 p-sm pl-sm min-h-full min-w-full opacity-0;
|
|
7
|
+
color: #1f2937 !important;
|
|
7
8
|
&:focus{
|
|
8
9
|
@apply outline-none;
|
|
10
|
+
color: #1f2937 !important;
|
|
11
|
+
}
|
|
12
|
+
&::placeholder {
|
|
13
|
+
color: #9ca3af !important;
|
|
9
14
|
}
|
|
10
15
|
}
|
|
11
16
|
.label{
|
|
12
17
|
@apply flex justify-between p-sm w-full h-full;
|
|
18
|
+
color: #1f2937;
|
|
13
19
|
svg{
|
|
14
20
|
@apply h-6 w-6;
|
|
15
21
|
}
|
|
16
22
|
}
|
|
17
23
|
|
|
18
24
|
&:hover{
|
|
19
|
-
@apply border-2 border-solid border-
|
|
25
|
+
@apply border-2 border-solid border-input-border;
|
|
20
26
|
}
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
.master-active{
|
|
24
|
-
@apply border-2 border-
|
|
30
|
+
@apply border-2 border-input-border;
|
|
25
31
|
input[type=text]{
|
|
26
32
|
@apply opacity-100;
|
|
33
|
+
color: #1f2937 !important;
|
|
34
|
+
&:focus {
|
|
35
|
+
color: #1f2937 !important;
|
|
36
|
+
border-color: #d1d5db !important;
|
|
37
|
+
}
|
|
27
38
|
}
|
|
28
39
|
.label{
|
|
29
40
|
@apply hidden;
|
|
@@ -32,7 +43,7 @@
|
|
|
32
43
|
|
|
33
44
|
.server{
|
|
34
45
|
|
|
35
|
-
box-shadow: 0
|
|
46
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
36
47
|
top:40px;
|
|
37
48
|
|
|
38
49
|
max-height:20vmax;
|
|
@@ -41,7 +52,8 @@
|
|
|
41
52
|
div{
|
|
42
53
|
@apply flex w-full bg-white;
|
|
43
54
|
&:hover{
|
|
44
|
-
@apply bg-grey-
|
|
55
|
+
@apply bg-grey-light;
|
|
56
|
+
background-color: #f3f4f6;
|
|
45
57
|
}
|
|
46
58
|
input{
|
|
47
59
|
height: 44px;
|
|
@@ -50,18 +62,22 @@
|
|
|
50
62
|
p{
|
|
51
63
|
padding: 12px;
|
|
52
64
|
@apply text-form-field text-text-primary;
|
|
65
|
+
color: #1f2937;
|
|
53
66
|
}
|
|
54
67
|
.custom-checkbox{
|
|
55
68
|
height: 28px;
|
|
56
69
|
width: 28px;
|
|
57
70
|
@apply border border-solid border-input-border m-sm;
|
|
71
|
+
background-color: #ffffff;
|
|
58
72
|
svg{
|
|
59
73
|
@apply opacity-0 z-10;
|
|
60
74
|
}
|
|
61
75
|
}
|
|
62
76
|
input:checked ~ .custom-checkbox,
|
|
63
77
|
input:hover ~ .custom-checkbox {
|
|
64
|
-
@apply border-2 border-
|
|
78
|
+
@apply border-2 border-solid;
|
|
79
|
+
border-color: #d1d5db;
|
|
80
|
+
background-color: #ffffff;
|
|
65
81
|
}
|
|
66
82
|
|
|
67
83
|
input:checked ~ .custom-checkbox svg {
|