@pmidc/upyog-css 1.0.51 → 1.0.52

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": "@pmidc/upyog-css",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
package/src/index.scss CHANGED
@@ -124,6 +124,7 @@
124
124
  @import "./pages/common/searchIcon.scss";
125
125
  @import "./pages/common/sanctionFeeTable.scss";
126
126
  @import "./pages/citizen/loaderMessage.scss";
127
+ @import "./pages/employee/disconnection.scss";
127
128
 
128
129
  .display-none {
129
130
  display: none;
@@ -0,0 +1,426 @@
1
+ .DS-citizen-form-container {
2
+ padding: 0px 10px 10px 10px;
3
+
4
+ .card-label-smaller {
5
+ display: inline;
6
+
7
+ span {
8
+ color: red;
9
+ }
10
+ }
11
+
12
+ .tooltip {
13
+ position: absolute;
14
+ }
15
+
16
+ .tooltiptext {
17
+ white-space: nowrap;
18
+ font-size: medium;
19
+
20
+ @media (max-width: 768px) {
21
+ white-space: unset;
22
+ width: 150px;
23
+ }
24
+ }
25
+
26
+ @media (max-width: 768px) {
27
+ input[type="radio"] {
28
+ margin-left: unset;
29
+ }
30
+ }
31
+ }
32
+
33
+ .DS-citizen-info-label {
34
+ margin: 0px !important;
35
+
36
+ .text-style {
37
+ color: #0B0C0C !important;
38
+ }
39
+ }
40
+
41
+ .DS-disconnection-page-container {
42
+ background-color: yellow;
43
+ width: 100%;
44
+ max-width: 1920px;
45
+ margin: 0 auto;
46
+ background-color: #f9fafb;
47
+ min-height: 100vh;
48
+ font-family: 'Noto Sans', sans-serif;
49
+ padding-bottom: 80px;
50
+
51
+ .DS-header {
52
+ font-size: 32px;
53
+ margin-left: 18px;
54
+ font-family: 'Noto Sans', sans-serif;
55
+ color: black;
56
+ }
57
+ }
58
+
59
+ .DS-disconnectionFormUI {
60
+ max-width: 1711px;
61
+ margin: 24px auto;
62
+ padding: 48px 40px;
63
+ background-color: #ffffff;
64
+ border-radius: 12px;
65
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
66
+
67
+ @media (max-width: 768px) {
68
+ margin: 16px;
69
+ padding: 24px 16px;
70
+ }
71
+
72
+ h2 {
73
+ font-size: 18px;
74
+ font-weight: 600;
75
+ color: #1f2937;
76
+ margin-bottom: 32px;
77
+ margin-top: 0;
78
+ padding-bottom: 16px;
79
+ border-bottom: 1px solid #e5e7eb;
80
+ letter-spacing: -0.01em;
81
+
82
+ &:not(:first-child) {
83
+ margin-top: 48px;
84
+ }
85
+
86
+ span {
87
+ color: #ef4444;
88
+ }
89
+ }
90
+ }
91
+
92
+ .DS-consumer-number-row {
93
+ display: flex;
94
+ align-items: center;
95
+ margin-bottom: 32px;
96
+
97
+ @media (max-width: 768px) {
98
+ gap: 16px;
99
+ flex-wrap: wrap;
100
+ }
101
+
102
+ label {
103
+ font-size: 14px;
104
+ font-weight: 500;
105
+ color: #374151;
106
+ min-width: 195px;
107
+ line-height: 1.5;
108
+ }
109
+
110
+ p {
111
+ font-size: 14px;
112
+ color: #1f2937;
113
+ margin: 0;
114
+ line-height: 1.5;
115
+ }
116
+ }
117
+
118
+ .DS-disconnection-type-row {
119
+ display: flex;
120
+ align-items: center;
121
+ gap: 160px;
122
+ margin-bottom: 40px;
123
+
124
+ @media (max-width: 768px) {
125
+ gap: 90px;
126
+ flex-wrap: wrap;
127
+ }
128
+
129
+ .DS-label-wrapper {
130
+ display: flex;
131
+ align-items: center;
132
+ gap: 8px;
133
+
134
+ label {
135
+ font-size: 14px;
136
+ font-weight: 500;
137
+ color: #374151;
138
+ min-width: fit-content;
139
+ line-height: 1.5;
140
+
141
+ span {
142
+ color: #ef4444;
143
+ }
144
+ }
145
+ }
146
+
147
+ p {
148
+ font-size: 14px;
149
+ color: #1f2937;
150
+ margin: 0;
151
+ line-height: 1.5;
152
+ }
153
+ }
154
+
155
+ .DS-date-field {
156
+ display: flex;
157
+ flex-direction: column;
158
+ gap: 12px;
159
+ margin-bottom: 32px;
160
+ max-width: 400px;
161
+
162
+ @media (max-width: 768px) {
163
+ max-width: 100%;
164
+ }
165
+
166
+ .DS-label-row {
167
+ display: flex;
168
+ align-items: center;
169
+ gap: 8px;
170
+
171
+ label {
172
+ font-size: 14px;
173
+ font-weight: 500;
174
+ color: #374151;
175
+ line-height: 1.5;
176
+
177
+ span {
178
+ color: #ef4444;
179
+ }
180
+ }
181
+ }
182
+
183
+ .DS-field-wrapper {
184
+ width: 100%;
185
+ }
186
+ }
187
+
188
+ .DS-reason-field {
189
+ display: flex;
190
+ flex-direction: column;
191
+ gap: 12px;
192
+ margin-bottom: 48px;
193
+ max-width: 400px;
194
+
195
+ @media (max-width: 768px) {
196
+ max-width: 100%;
197
+ }
198
+
199
+ label {
200
+ font-size: 14px;
201
+ font-weight: 500;
202
+ color: #374151;
203
+ line-height: 1.5;
204
+
205
+ span {
206
+ color: #ef4444;
207
+ }
208
+ }
209
+
210
+ .DS-field-wrapper {
211
+ width: 100%;
212
+ }
213
+ }
214
+
215
+ .DS-document-field {
216
+ display: flex;
217
+ flex-direction: column;
218
+ gap: 12px;
219
+ margin-bottom: 32px;
220
+ max-width: 100%;
221
+
222
+ label {
223
+ font-size: 14px;
224
+ font-weight: 500;
225
+ color: #374151;
226
+ line-height: 1.5;
227
+
228
+ span {
229
+ color: #ef4444;
230
+ }
231
+ }
232
+
233
+ .DS-dropdown-wrapper {
234
+ width: 100%;
235
+ max-width: 400px;
236
+ }
237
+
238
+ .DS-upload-wrapper {
239
+ display: flex;
240
+ align-items: center;
241
+ gap: 0.75rem;
242
+ width: 100%;
243
+ max-width: 25rem;
244
+ border: 1px solid #d4d4d8;
245
+ border-radius: 0.5rem;
246
+ padding: 0.75rem;
247
+
248
+ .upload-file {
249
+ display: flex;
250
+ align-items: center;
251
+ gap: 0.75rem;
252
+ width: 100%;
253
+ border: none !important;
254
+ min-height: 50px;
255
+
256
+ > div {
257
+ display: flex;
258
+ justify-content: flex-start;
259
+ align-items: center;
260
+ flex-wrap: wrap;
261
+ padding: 0px;
262
+ width: 100%;
263
+ margin: 0;
264
+ gap: 0.75rem;
265
+ }
266
+
267
+ .selector-button-border {
268
+ background-color: #2947A3 !important;
269
+ color: #ffffff !important;
270
+ border: none !important;
271
+ border-radius: 0.375rem;
272
+ padding: 0.5rem 1rem;
273
+ font-family: 'Noto Sans', sans-serif;
274
+ font-weight: 500;
275
+ font-size: 0.875rem;
276
+ line-height: 1.25rem;
277
+ cursor: pointer;
278
+ transition: all 0.2s ease;
279
+ white-space: nowrap;
280
+ display: inline-flex;
281
+ align-items: center;
282
+ justify-content: center;
283
+ height: auto;
284
+ min-height: 40px;
285
+ width: 30%;
286
+ max-height: 40px;
287
+ margin: 0;
288
+
289
+ &:hover {
290
+ background-color: #1e3a8a !important;
291
+ opacity: 0.9;
292
+ }
293
+
294
+ h2 {
295
+ color: #ffffff !important;
296
+ font-size: 0.875rem !important;
297
+ line-height: 1.25rem !important;
298
+ font-weight: 500 !important;
299
+ margin: 0 !important;
300
+ padding: 0 !important;
301
+ border: none !important;
302
+ width: 100%;
303
+ }
304
+ }
305
+
306
+ .file-upload-status {
307
+ color: #71717a;
308
+ font-size: 0.875rem;
309
+ line-height: 1.25rem;
310
+ font-weight: 400;
311
+ margin: 0;
312
+ flex: 1;
313
+ text-align: center;
314
+ padding: 0 1rem;
315
+ min-height: 40px;
316
+ display: flex;
317
+ align-items: center;
318
+ justify-content: center;
319
+ }
320
+
321
+ .input-mirror-selector-button {
322
+ width: 30%;
323
+ min-height: 42px;
324
+ max-height: 42px;
325
+ top: 0;
326
+ left: 0;
327
+ }
328
+ }
329
+ }
330
+ }
331
+
332
+ .DS-disconnection-action-bar {
333
+ position: fixed;
334
+ bottom: 0;
335
+ left: 0;
336
+ right: 0;
337
+ background-color: #ffffff;
338
+ border-top: 1px solid #e5e7eb;
339
+ padding: 16px 24px;
340
+ display: flex;
341
+ justify-content: space-between;
342
+ align-items: center;
343
+ z-index: 1000;
344
+ box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
345
+
346
+ @media (max-width: 768px) {
347
+ padding: 16px;
348
+ }
349
+
350
+ .DS-back-button {
351
+ padding: 12px 24px;
352
+ font-size: 16px;
353
+ font-weight: 500;
354
+ color: #374151;
355
+ background-color: #ffffff;
356
+ border: 1px solid #d1d5db;
357
+ border-radius: 8px;
358
+ cursor: pointer;
359
+ transition: all 0.2s ease;
360
+ font-family: 'Noto Sans', sans-serif;
361
+
362
+ @media (max-width: 768px) {
363
+ padding: 10px 16px;
364
+ font-size: 14px;
365
+ }
366
+
367
+ &:hover {
368
+ background-color: #f9fafb;
369
+ border-color: #9ca3af;
370
+ }
371
+ }
372
+
373
+ .DS-action-buttons {
374
+ display: flex;
375
+ gap: 12px;
376
+
377
+ @media (max-width: 768px) {
378
+ gap: 8px;
379
+ }
380
+ }
381
+
382
+ .DS-cancel-button {
383
+ padding: 12px 24px;
384
+ font-size: 16px;
385
+ font-weight: 500;
386
+ color: #374151;
387
+ background-color: #ffffff;
388
+ border: 1px solid #d1d5db;
389
+ border-radius: 8px;
390
+ cursor: pointer;
391
+ transition: all 0.2s ease;
392
+ font-family: 'Noto Sans', sans-serif;
393
+
394
+ @media (max-width: 768px) {
395
+ padding: 10px 16px;
396
+ font-size: 14px;
397
+ }
398
+
399
+ &:hover {
400
+ background-color: #f9fafb;
401
+ border-color: #9ca3af;
402
+ }
403
+ }
404
+
405
+ .DS-submit-button {
406
+ padding: 12px 32px;
407
+ font-size: 16px;
408
+ font-weight: 600;
409
+ color: #ffffff;
410
+ background-color: #2947A3;
411
+ border: none;
412
+ border-radius: 8px;
413
+ cursor: pointer;
414
+ transition: all 0.2s ease;
415
+ font-family: 'Noto Sans', sans-serif;
416
+
417
+ @media (max-width: 768px) {
418
+ padding: 10px 24px;
419
+ font-size: 14px;
420
+ }
421
+
422
+ &:hover {
423
+ background-color: #1e3a8a;
424
+ }
425
+ }
426
+ }