@pmidc/upyog-css 1.2.8 → 1.2.10

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.
@@ -0,0 +1,493 @@
1
+ $hrms-primary: #a82227;
2
+ $hrms-primary-blue: #0B4B66;
3
+ $hrms-accent-orange: #f47738;
4
+ $hrms-text-primary: #0b0c0c;
5
+ $hrms-text-secondary: #505a5f;
6
+ $hrms-text-tertiary: #666;
7
+ $hrms-text-light: #999;
8
+
9
+ $hrms-bg-white: #ffffff;
10
+ $hrms-bg-light: #f9f9f9;
11
+ $hrms-bg-lighter: #fafafa;
12
+ $hrms-bg-gray: #f5f5f5;
13
+ $hrms-bg-light-blue: #f7f7f7;
14
+
15
+ $hrms-border-light: #e0e0e0;
16
+ $hrms-border-medium: #d6d5d4;
17
+ $hrms-border-gray: #e8e8e8;
18
+ $hrms-border-dark: #ddd;
19
+ $hrms-border-darker: #ccc;
20
+
21
+ $badge-category-bg: #E0F2FE;
22
+ $badge-category-text: #0369A1;
23
+ $badge-subcategory-bg: #DBEAFE;
24
+ $badge-subcategory-text: #1E40AF;
25
+ $badge-zone-bg: #D1F2EB;
26
+ $badge-zone-text: #0D6759;
27
+ $badge-role-bg: #E9D5FF;
28
+ $badge-role-text: #7C3AED;
29
+
30
+ $hrms-space-xs: 8px;
31
+ $hrms-space-sm: 10px;
32
+ $hrms-space-md: 12px;
33
+ $hrms-space-base: 16px;
34
+ $hrms-space-lg: 20px;
35
+ $hrms-space-xl: 24px;
36
+ $hrms-space-xxl: 28px;
37
+
38
+ $hrms-font-sm: 14px;
39
+ $hrms-font-base: 16px;
40
+ $hrms-font-lg: 18px;
41
+ $hrms-font-xl: 28px;
42
+
43
+ $hrms-font-normal: 400;
44
+ $hrms-font-medium: 500;
45
+ $hrms-font-semibold: 600;
46
+ $hrms-font-bold: 700;
47
+
48
+ $hrms-radius-sm: 4px;
49
+ $hrms-radius-md: 8px;
50
+ $hrms-radius-lg: 16px;
51
+
52
+
53
+ .hrms-flex {
54
+ display: flex;
55
+ }
56
+
57
+ .hrms-flex-between {
58
+ display: flex;
59
+ justify-content: space-between;
60
+ }
61
+
62
+ .hrms-flex-center {
63
+ display: flex;
64
+ align-items: center;
65
+ }
66
+
67
+ .hrms-flex-between-center {
68
+ display: flex;
69
+ justify-content: space-between;
70
+ align-items: center;
71
+ }
72
+
73
+ .hrms-flex-column {
74
+ display: flex;
75
+ flex-direction: column;
76
+ }
77
+
78
+ .hrms-flex-wrap {
79
+ flex-wrap: wrap;
80
+ }
81
+
82
+ .hrms-flex-end {
83
+ display: flex;
84
+ justify-content: flex-end;
85
+ }
86
+
87
+ .hrms-gap-xs { gap: $hrms-space-xs; }
88
+ .hrms-gap-sm { gap: $hrms-space-sm; }
89
+ .hrms-gap-md { gap: $hrms-space-md; }
90
+ .hrms-gap-base { gap: $hrms-space-base; }
91
+ .hrms-gap-lg { gap: $hrms-space-lg; }
92
+
93
+
94
+ .hrms-mt-xs { margin-top: $hrms-space-xs; }
95
+ .hrms-mt-sm { margin-top: $hrms-space-sm; }
96
+ .hrms-mt-md { margin-top: $hrms-space-md; }
97
+ .hrms-mt-base { margin-top: $hrms-space-base; }
98
+ .hrms-mt-lg { margin-top: $hrms-space-lg; }
99
+ .hrms-mt-xl { margin-top: $hrms-space-xl; }
100
+
101
+ .hrms-mb-xs { margin-bottom: $hrms-space-xs; }
102
+ .hrms-mb-sm { margin-bottom: $hrms-space-sm; }
103
+ .hrms-mb-md { margin-bottom: $hrms-space-md; }
104
+ .hrms-mb-base { margin-bottom: $hrms-space-base; }
105
+ .hrms-mb-lg { margin-bottom: $hrms-space-lg; }
106
+ .hrms-mb-xl { margin-bottom: $hrms-space-xl; }
107
+
108
+ .hrms-ml-xs { margin-left: $hrms-space-xs; }
109
+ .hrms-ml-sm { margin-left: $hrms-space-sm; }
110
+ .hrms-ml-md { margin-left: $hrms-space-md; }
111
+ .hrms-ml-base { margin-left: $hrms-space-base; }
112
+
113
+ .hrms-mr-0 { margin-right: 0; }
114
+
115
+ .hrms-p-xs { padding: $hrms-space-xs; }
116
+ .hrms-p-sm { padding: $hrms-space-sm; }
117
+ .hrms-p-md { padding: $hrms-space-md; }
118
+ .hrms-p-base { padding: $hrms-space-base; }
119
+ .hrms-p-lg { padding: $hrms-space-lg; }
120
+
121
+
122
+ .hrms-text-bold {
123
+ font-weight: $hrms-font-bold;
124
+ }
125
+
126
+ .hrms-text-semibold {
127
+ font-weight: $hrms-font-semibold;
128
+ }
129
+
130
+ .hrms-text-medium {
131
+ font-weight: $hrms-font-medium;
132
+ }
133
+
134
+ .hrms-text-lg {
135
+ font-size: $hrms-font-lg;
136
+ }
137
+
138
+ .hrms-text-xl {
139
+ font-size: $hrms-font-xl;
140
+ }
141
+
142
+ .hrms-text-accent {
143
+ color: $hrms-accent-orange;
144
+ }
145
+
146
+ .hrms-text-secondary {
147
+ color: $hrms-text-secondary;
148
+ }
149
+
150
+ .hrms-text-primary {
151
+ color: $hrms-text-primary;
152
+ }
153
+
154
+
155
+ .hrms-bg-light {
156
+ background-color: $hrms-bg-light;
157
+ }
158
+
159
+ .hrms-bg-lighter {
160
+ background-color: $hrms-bg-lighter;
161
+ }
162
+
163
+ .hrms-bg-white {
164
+ background-color: $hrms-bg-white;
165
+ }
166
+
167
+
168
+ .hrms-breadcrumb-wrapper {
169
+ display: flex;
170
+ justify-content: space-between;
171
+ align-items: center;
172
+ padding: $hrms-space-base $hrms-space-lg $hrms-space-sm $hrms-space-lg;
173
+ border-bottom: 1px solid $hrms-border-light;
174
+ background: $hrms-bg-white;
175
+
176
+ @media (max-width: 768px) {
177
+ padding: $hrms-space-md;
178
+ }
179
+ }
180
+
181
+ .hrms-breadcrumb-back-link {
182
+ display: inline-flex;
183
+ align-items: center;
184
+ gap: 6px;
185
+ color: $hrms-text-secondary;
186
+ text-decoration: none;
187
+ font-size: $hrms-font-sm;
188
+ font-weight: $hrms-font-medium;
189
+ transition: all 0.2s ease;
190
+ padding: 6px $hrms-space-md;
191
+ border-radius: $hrms-radius-sm;
192
+ white-space: nowrap;
193
+
194
+ .back-arrow {
195
+ font-size: $hrms-font-base;
196
+ font-weight: $hrms-font-semibold;
197
+ line-height: 1;
198
+ }
199
+
200
+ &:hover {
201
+ color: $hrms-primary-blue;
202
+ background-color: #f7f7f7;
203
+ }
204
+
205
+ &:active {
206
+ background-color: #e8e8e8;
207
+ }
208
+
209
+ @media (max-width: 768px) {
210
+ padding: 4px $hrms-space-xs;
211
+ font-size: 13px;
212
+ }
213
+ }
214
+
215
+
216
+ .hrms-card {
217
+ padding: $hrms-space-lg;
218
+ margin: $hrms-space-sm 0;
219
+ border: 1px solid $hrms-border-light;
220
+ border-radius: $hrms-radius-sm;
221
+ background-color: $hrms-bg-white;
222
+ }
223
+
224
+ .hrms-card-light {
225
+ background-color: $hrms-bg-light;
226
+ padding: 15px;
227
+ }
228
+
229
+ .hrms-card-header {
230
+ font-size: $hrms-font-xl;
231
+ font-weight: $hrms-font-normal;
232
+ color: #1C1D1F;
233
+ }
234
+
235
+
236
+ .hrms-form-section {
237
+ margin-bottom: $hrms-space-xl;
238
+ }
239
+
240
+ .hrms-form-header {
241
+ font-size: $hrms-font-lg;
242
+ font-weight: $hrms-font-bold;
243
+ margin-bottom: $hrms-space-base;
244
+ }
245
+
246
+ .hrms-form-grid {
247
+ display: flex;
248
+ flex-wrap: wrap;
249
+ gap: 2%;
250
+
251
+ &__item {
252
+ flex: 0 0 48%;
253
+ margin: 1%;
254
+
255
+ @media (max-width: 768px) {
256
+ flex: 0 0 100%;
257
+ }
258
+ }
259
+ }
260
+
261
+ .hrms-form-field {
262
+ margin-bottom: $hrms-space-xl;
263
+ }
264
+
265
+ .hrms-form-actions {
266
+ display: flex;
267
+ justify-content: space-between;
268
+ margin-top: $hrms-space-lg;
269
+ }
270
+
271
+
272
+ .hrms-jurisdiction-card,
273
+ .hrms-assignment-card {
274
+ padding: $hrms-space-md;
275
+ border: 1px solid $hrms-border-dark;
276
+ border-radius: $hrms-radius-sm;
277
+ margin-bottom: $hrms-space-sm;
278
+ background: $hrms-bg-white;
279
+ }
280
+
281
+ .hrms-card-actions {
282
+ display: flex;
283
+ justify-content: flex-end;
284
+ gap: $hrms-space-sm;
285
+ margin-top: $hrms-space-sm;
286
+ }
287
+
288
+ .hrms-item-header {
289
+ display: flex;
290
+ align-items: center;
291
+ gap: $hrms-space-xs;
292
+ }
293
+
294
+
295
+ .hrms-inbox-header {
296
+ display: flex;
297
+ justify-content: space-between;
298
+ padding: $hrms-space-base;
299
+ border-bottom: 1px solid $hrms-border-light;
300
+ }
301
+
302
+ .hrms-inbox-row {
303
+ padding: $hrms-space-md;
304
+ margin-bottom: $hrms-space-xs;
305
+ background-color: $hrms-bg-lighter;
306
+
307
+ @media (max-width: 768px) {
308
+ padding: $hrms-space-sm;
309
+ }
310
+ }
311
+
312
+ .hrms-inbox-actions {
313
+ display: flex;
314
+ gap: $hrms-space-sm;
315
+ margin-left: $hrms-space-sm;
316
+ }
317
+
318
+
319
+ .hrms-filter-container {
320
+ margin-bottom: $hrms-space-base;
321
+ }
322
+
323
+ .hrms-filter-grid {
324
+ display: grid;
325
+ grid-template-columns: 1fr 1fr;
326
+ gap: $hrms-space-base;
327
+
328
+ @media (max-width: 768px) {
329
+ grid-template-columns: 1fr;
330
+ }
331
+ }
332
+
333
+
334
+ .hrms-badge {
335
+ padding: 4px $hrms-space-md;
336
+ border-radius: $hrms-radius-lg;
337
+ font-size: 12px;
338
+ font-weight: $hrms-font-medium;
339
+ display: inline-block;
340
+ text-align: center;
341
+
342
+ &--category {
343
+ background-color: $badge-category-bg;
344
+ color: $badge-category-text;
345
+ }
346
+
347
+ &--subcategory {
348
+ background-color: $badge-subcategory-bg;
349
+ color: $badge-subcategory-text;
350
+ }
351
+
352
+ &--zone {
353
+ background-color: $badge-zone-bg;
354
+ color: $badge-zone-text;
355
+ }
356
+
357
+ &--role {
358
+ background-color: $badge-role-bg;
359
+ color: $badge-role-text;
360
+ }
361
+ }
362
+
363
+
364
+ .hrms-response-container {
365
+ display: flex;
366
+ justify-content: space-between;
367
+ align-items: center;
368
+ margin-top: $hrms-space-xl;
369
+ }
370
+
371
+
372
+ .hrms-details-section {
373
+ margin-top: $hrms-space-lg;
374
+ }
375
+
376
+ .hrms-details-grid {
377
+ display: flex;
378
+ flex-wrap: wrap;
379
+ }
380
+
381
+ .hrms-divider {
382
+ border-bottom: 1px solid $hrms-border-light;
383
+ }
384
+
385
+ .hrms-section-bg {
386
+ background-color: $hrms-bg-light;
387
+ padding: 15px;
388
+ border-radius: $hrms-radius-sm;
389
+ }
390
+
391
+ .hrms-cursor-pointer {
392
+ cursor: pointer;
393
+ }
394
+
395
+
396
+ @media (max-width: 768px) {
397
+ .hrms-mobile-full {
398
+ width: 100%;
399
+ }
400
+
401
+ .hrms-mobile-p-sm {
402
+ padding: $hrms-space-sm;
403
+ }
404
+
405
+ .hrms-mobile-mb-xs {
406
+ margin-bottom: $hrms-space-xs;
407
+ }
408
+ }
409
+
410
+
411
+ .hrms-grid-2 {
412
+ display: grid;
413
+ grid-template-columns: 1fr 1fr;
414
+ gap: $hrms-space-base;
415
+
416
+ @media (max-width: 768px) {
417
+ grid-template-columns: 1fr;
418
+ }
419
+ }
420
+
421
+ .hrms-grid-3 {
422
+ display: grid;
423
+ grid-template-columns: repeat(3, 1fr);
424
+ gap: $hrms-space-base;
425
+
426
+ @media (max-width: 768px) {
427
+ grid-template-columns: 1fr;
428
+ }
429
+ }
430
+
431
+ .hrms-header-wrapper {
432
+ margin-left: 15px;
433
+
434
+ @media (max-width: 640px) {
435
+ margin-left: -12px;
436
+ }
437
+ }
438
+
439
+ .hrms-document-link {
440
+ min-width: 160px;
441
+ margin-right: $hrms-space-lg;
442
+ cursor: pointer;
443
+ display: inline-block;
444
+ }
445
+
446
+ .hrms-document-svg {
447
+ background: #f6f6f6;
448
+ padding: $hrms-space-xs;
449
+ margin-left: 15px;
450
+ }
451
+
452
+ .hrms-document-name {
453
+ margin-top: $hrms-space-xs;
454
+ max-width: 196px;
455
+ }
456
+
457
+ .hrms-jurisdiction-status-table {
458
+ max-width: 640px;
459
+ border: 1px solid rgb(214, 213, 212);
460
+ inset: 0px;
461
+ width: auto;
462
+ padding: .2rem;
463
+ margin-bottom: 2rem;
464
+ }
465
+
466
+ .hrms-section-title {
467
+ padding-bottom: 2rem;
468
+ }
469
+
470
+ .hrms-card .card-header {
471
+ font-size: $hrms-font-xl;
472
+ font-weight: $hrms-font-normal;
473
+ color: #1C1D1F;
474
+ }
475
+
476
+ .hrms-delete-btn {
477
+ background: none;
478
+ border: none;
479
+ color: #D4351C;
480
+ cursor: pointer;
481
+ font-size: $hrms-font-sm;
482
+ font-weight: $hrms-font-medium;
483
+ padding: 0;
484
+
485
+ &:hover {
486
+ text-decoration: underline;
487
+ }
488
+
489
+ &:disabled {
490
+ opacity: 0.5;
491
+ cursor: not-allowed;
492
+ }
493
+ }
@@ -15,10 +15,17 @@
15
15
 
16
16
  .ral-error-label {
17
17
  width: 70%;
18
- margin-left: 30%;
18
+ margin-left: 1%;
19
19
  margin-top: -18px;
20
20
  }
21
21
 
22
+ /* Desktop view - margin-left 50% */
23
+ @media (min-width: 768px) {
24
+ .ral-error-label {
25
+ margin-left: 50%;
26
+ }
27
+ }
28
+
22
29
  .ral-applicant-container {
23
30
  border: 1px solid #ddd;
24
31
  padding: 12px;
@@ -1,7 +1,7 @@
1
1
  .search-icon{
2
2
  position: relative;
3
3
  z-index: 100;
4
- left: 160px;
4
+ right: 50px;
5
5
  margin-top: -55px;
6
6
  cursor: pointer;
7
7
 
@@ -1,9 +1,9 @@
1
- .form-field{
1
+ .form-field, .field{
2
2
  @apply w-full
3
3
  }
4
4
 
5
5
  @screen dt {
6
- .form-field{
6
+ .form-field, .field{
7
7
  @apply w-full
8
8
  }
9
9
 
@@ -11,3 +11,11 @@
11
11
  @apply w-full !important
12
12
  }
13
13
  }
14
+
15
+ employee-form-first {
16
+ display: flex;
17
+ flex-wrap: wrap;
18
+ gap: 24px;
19
+ width: 100%;
20
+ flex-direction: column;
21
+ }
@@ -458,8 +458,8 @@
458
458
  svg {
459
459
  fill: #a82227;
460
460
  }
461
- .form-field{
462
- width: 100% !important;
461
+ .form-field, .field{
462
+ width: 100%;
463
463
  }
464
464
  }
465
465
  }
@@ -1,6 +1,6 @@
1
1
  .alignmentSettle {
2
2
  /* Desktop: 4 fields per row */
3
- .form-field {
3
+ .form-field , .field{
4
4
  width: calc(25% - 15px) !important;
5
5
  margin-right: 15px !important;
6
6
  margin-bottom: 16px !important;
@@ -41,7 +41,7 @@
41
41
 
42
42
  /* Tablet: 2 fields per row */
43
43
  @media (max-width: 1024px) {
44
- .form-field {
44
+ .form-field , .field{
45
45
  width: calc(50% - 10px) !important;
46
46
  min-width: calc(50% - 10px) !important;
47
47
  max-width: calc(50% - 10px) !important;
@@ -65,7 +65,7 @@
65
65
 
66
66
  /* Mobile: 1 field per row */
67
67
  @media (max-width: 640px) {
68
- .form-field {
68
+ .form-field , .field{
69
69
  width: 100% !important;
70
70
  min-width: 100% !important;
71
71
  max-width: 100% !important;
@@ -92,7 +92,7 @@
92
92
 
93
93
  /* Small mobile optimization */
94
94
  @media (max-width: 480px) {
95
- .form-field {
95
+ .form-field , .field{
96
96
  margin-bottom: 10px !important;
97
97
  }
98
98