@pmidc/upyog-css 1.2.19 → 1.2.21

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.2.19",
3
+ "version": "1.2.21",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -722,7 +722,7 @@ button.card-link.submit-bar {
722
722
 
723
723
 
724
724
  .employee .employeeCard .field {
725
- width: 40%;
725
+ width: 100%;
726
726
  }
727
727
  .employee .employeeCard .form-field {
728
728
  width: 100%;
package/src/index.scss CHANGED
@@ -139,6 +139,7 @@
139
139
 
140
140
  @import "./modules/adv/index.scss";
141
141
  @import "./modules/hrms/index.scss";
142
+ @import "./modules/BPA/index.scss";
142
143
 
143
144
  .display-none {
144
145
  display: none;
@@ -0,0 +1,99 @@
1
+ .zero-margin-padding {
2
+ margin: 0 !important;
3
+ padding: 0 !important;
4
+ }
5
+
6
+ .auto-height-box-43 {
7
+ height: auto;
8
+ min-height: 40px;
9
+ max-height: 40px;
10
+ width: 43%;
11
+ margin: 5px;
12
+ padding: 0;
13
+ }
14
+
15
+ .center-flex-desktop {
16
+ margin: 0;
17
+ display: flex;
18
+ justify-content: center;
19
+ padding: 0;
20
+ width: 46%;
21
+ }
22
+
23
+ .center-flex-mobile {
24
+ display: flex;
25
+ justify-content: center;
26
+ width: 80%;
27
+ margin-bottom: 10px;
28
+ }
29
+
30
+ .video-preview {
31
+ width: 100%;
32
+ border-radius: 8px;
33
+ background: #000;
34
+ }
35
+
36
+ /* Layout */
37
+ .upload-container-flex {
38
+ display: flex;
39
+ justify-content: flex-start;
40
+ align-items: center;
41
+ flex-wrap: wrap;
42
+ margin: 0;
43
+ padding: 0;
44
+ }
45
+
46
+ /* Upload wrapper */
47
+ .upload-file-min-height {
48
+ min-height: 50px;
49
+ }
50
+
51
+ /* Button */
52
+ .upload-file-button {
53
+ height: auto;
54
+ min-height: 40px;
55
+ max-height: 40px;
56
+ width: 43%;
57
+ margin: 5px;
58
+ padding: 0;
59
+ }
60
+
61
+ /* Hide elements */
62
+ .upload-hidden {
63
+ display: none;
64
+ }
65
+
66
+ /* Tag container */
67
+ .upload-tag-container {
68
+ margin: 0;
69
+ display: flex;
70
+ justify-content: center;
71
+ padding: 0;
72
+ width: 46%;
73
+ }
74
+
75
+ /* View document container */
76
+ .view-doc-container {
77
+ margin-bottom: 10px;
78
+ }
79
+
80
+ /* File input */
81
+ .upload-file-input {
82
+ width: 43%;
83
+ min-height: 42px;
84
+ max-height: 42px;
85
+ top: 5px;
86
+ left: 5px;
87
+ }
88
+
89
+ /* Error text */
90
+ .error-text {
91
+ color: red;
92
+ }
93
+
94
+ /* Mobile */
95
+ @media (max-width: 768px) {
96
+ .upload-tag-container {
97
+ width: 80%;
98
+ }
99
+ }
@@ -272,7 +272,6 @@
272
272
  cursor: not-allowed;
273
273
  }
274
274
 
275
-
276
275
  .ads-cart-table-wrapper {
277
276
  flex: 1;
278
277
  overflow-y: auto;
@@ -391,9 +390,9 @@
391
390
 
392
391
  .ads-summary-edit {
393
392
  cursor: pointer;
394
- color: #2e86de;
393
+ color: #2e86de !important;
395
394
  font-weight: 600;
396
- font-size: 0.9rem;
395
+ text-align: end !important;
397
396
  }
398
397
 
399
398
  .ads-summary-row {
@@ -517,14 +516,14 @@
517
516
  font-size: 16px;
518
517
  }
519
518
  .ads-btn-back {
520
- background: #fff;
521
- color: #2947a3;
522
- border: 1px solid #2947a3;
519
+ background: #fff;
520
+ color: #2947a3;
521
+ border: 1px solid #2947a3;
523
522
  }
524
523
  .ads-heading-large {
525
524
  font-size: 28px;
526
525
  font-weight: 500;
527
- color: #1C1D1F;
526
+ color: #1c1d1f;
528
527
  }
529
528
  .ads-search-container {
530
529
  width: auto;
@@ -550,4 +549,95 @@
550
549
  .ads-search-submit-wrapper {
551
550
  max-width: unset;
552
551
  margin-left: unset;
553
- }
552
+ }
553
+
554
+ /* ADS AdCard Refactored Styles */
555
+ .ads-ad-card-image-img {
556
+ width: 100%;
557
+ height: 100%;
558
+ object-fit: cover;
559
+ }
560
+
561
+ .ads-ad-card-info {
562
+ display: flex;
563
+ flex-direction: column;
564
+ gap: 6px;
565
+ font-size: 13px;
566
+ color: #444;
567
+ }
568
+
569
+ .ads-ad-card-info-row {
570
+ display: flex;
571
+ justify-content: space-between;
572
+ }
573
+
574
+ .ads-ad-card-info-row--bold {
575
+ font-weight: 600;
576
+ }
577
+
578
+ .ads-ad-card-amount {
579
+ color: #222;
580
+ }
581
+
582
+ .ads-ad-card-light {
583
+ color: green;
584
+ font-weight: 600;
585
+ }
586
+
587
+ .ads-ad-card-date-row {
588
+ display: flex;
589
+ gap: 4px;
590
+ margin-top: 8px;
591
+ }
592
+
593
+ .ads-ad-card-date-field {
594
+ flex: 1;
595
+ }
596
+
597
+ .ads-ad-card-date-label {
598
+ font-size: 12px;
599
+ color: #666;
600
+ }
601
+
602
+ .ads-ad-card-actions {
603
+ display: flex;
604
+ gap: 8px;
605
+ margin-top: 6px;
606
+ }
607
+
608
+ .ads-ad-card-cart-icon {
609
+ color: black;
610
+ }
611
+
612
+ .ads-availibility-for-title {
613
+ margin: 0;
614
+ font-size: 20px;
615
+ font-weight: 700;
616
+ color: #333;
617
+ }
618
+
619
+ /* ADS Cart Modal Refactored Styles */
620
+ .ads-cart-modal-body {
621
+ flex: 1;
622
+ overflow-y: auto;
623
+ }
624
+
625
+ .ads-cart-empty-text {
626
+ padding: 12px;
627
+ color: #666;
628
+ }
629
+
630
+ .ads-cart-item-header-info {
631
+ cursor: pointer;
632
+ flex: 1;
633
+ }
634
+
635
+ .ads-cart-item-toggle-modal {
636
+ font-size: 18px;
637
+ margin-left: 8px;
638
+ }
639
+
640
+ .ads-reservation-wrapper {
641
+ display: flex;
642
+ justify-content: flex-end;
643
+ }
@@ -172,6 +172,7 @@ $hrms-radius-lg: 16px;
172
172
  padding: $hrms-space-base $hrms-space-lg $hrms-space-sm $hrms-space-lg;
173
173
  border-bottom: 1px solid $hrms-border-light;
174
174
  background: $hrms-bg-white;
175
+ margin-top:3rem;
175
176
 
176
177
  @media (max-width: 768px) {
177
178
  padding: $hrms-space-md;
@@ -127,20 +127,25 @@
127
127
  }
128
128
 
129
129
  .custom-card-top {
130
- display: flex;
131
- justify-content: space-between;
132
- align-items: center;
133
- flex-wrap: wrap;
130
+ display: grid;
131
+ grid-template-columns: 1fr 1fr 1fr;
132
+ align-items: flex-start;
134
133
  padding: 20px 24px;
134
+ gap: 16px;
135
135
  }
136
136
 
137
- .custom-card-left {
138
- flex: 1;
139
- padding-right: 16px;
137
+ .custom-card-column {
138
+ display: flex;
139
+ flex-direction: column;
140
140
  }
141
141
 
142
- .custom-card-right {
143
- flex-shrink: 0;
142
+ .custom-card-column-mid {
143
+ text-align: center;
144
+ }
145
+
146
+ .custom-card-column-right {
147
+ text-align: right;
148
+ align-items: flex-end;
144
149
  }
145
150
 
146
151
  .custom-action-title {
@@ -178,11 +183,24 @@
178
183
 
179
184
  .custom-comments-section {
180
185
  display: flex;
181
- justify-content: space-between;
182
- flex-wrap: wrap;
186
+ flex-direction: column;
183
187
  border-top: 1px solid #e5e7eb;
184
188
  padding: 16px 24px 20px;
189
+ gap: 12px;
185
190
  }
191
+
192
+ .custom-comments-content {
193
+ width: 100%;
194
+ }
195
+
196
+ .custom-assigned-to-footer {
197
+ align-self: flex-end;
198
+ text-align: right;
199
+ display: flex;
200
+ flex-direction: column;
201
+ align-items: flex-end;
202
+ }
203
+
186
204
  .custom-assignee-section {
187
205
  border-top: 1px solid #e5e7eb;
188
206
  padding: 16px 24px 20px;
@@ -266,24 +284,26 @@
266
284
  }
267
285
 
268
286
  .custom-card-top {
269
- padding: 16px;
287
+ display: flex;
270
288
  flex-direction: column;
271
- align-items: flex-start;
289
+ padding: 16px;
272
290
  gap: 12px;
273
291
  }
274
292
 
275
- .custom-card-left {
276
- padding-right: 0;
277
- width: 100%;
278
- }
279
-
280
- .custom-card-right {
281
- width: 100%;
293
+ .custom-card-column {
294
+ width: 100% !important;
295
+ text-align: left !important;
296
+ align-items: flex-start !important;
282
297
  }
283
298
 
284
299
  .custom-comments-section {
285
300
  padding: 12px 16px;
286
- gap: 12px;
301
+ }
302
+
303
+ .custom-assigned-to-footer {
304
+ align-self: flex-start;
305
+ text-align: left;
306
+ align-items: flex-start;
287
307
  }
288
308
  }
289
309