@djb25/digit-ui-css 1.0.34 → 1.0.36

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": "@djb25/digit-ui-css",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -68,12 +68,15 @@
68
68
  }
69
69
 
70
70
  .stepper-container {
71
- width: 240px;
71
+ min-width: 240px;
72
72
  background: #fff;
73
73
  padding: 24px 0;
74
74
  border-radius: 8px;
75
75
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
76
76
  overflow-y: scroll;
77
+ @media (min-width: 768px) {
78
+ max-width: 25%;
79
+ }
77
80
  }
78
81
 
79
82
  .stepper-item {
@@ -113,6 +116,7 @@
113
116
  .stepper-label {
114
117
  font-size: 14px;
115
118
  color: #505a5f;
119
+ word-wrap: anywhere;
116
120
  }
117
121
 
118
122
  .stepper-label.active {
@@ -4,11 +4,19 @@
4
4
  padding: 16px;
5
5
  background-color: #fff;
6
6
  border-radius: 12px;
7
+ overflow-y: scroll;
8
+ height: fit-content;
9
+ @media (min-width: 768px) {
10
+ max-width: 25%;
11
+ min-width: 250px;
12
+ min-height: 500px;
13
+ }
7
14
  }
8
15
 
9
16
  .vertical-timeline-step {
10
17
  display: flex;
11
18
  position: relative;
19
+ gap: 16px;
12
20
  @media (min-width: 768px) {
13
21
  min-height: 80px;
14
22
  padding-bottom: 20px;
@@ -55,7 +63,6 @@
55
63
  /* Larger text */
56
64
  color: #6b7280;
57
65
  z-index: 1;
58
- margin-right: 16px;
59
66
  flex-shrink: 0;
60
67
  transition: all 0.3s ease;
61
68
  }
@@ -90,10 +97,7 @@
90
97
  color: #4b5563;
91
98
  font-weight: 500;
92
99
  line-height: normal;
93
- /* Reset line height */
94
- @media (min-width: 768px) {
95
- text-wrap: nowrap;
96
- }
100
+ word-wrap: anywhere;
97
101
  }
98
102
 
99
103
  .vertical-timeline-step.active .vertical-timeline-label {
@@ -26,6 +26,22 @@
26
26
  box-sizing: border-box;
27
27
  }
28
28
 
29
+ .workflow-timeline-wrapper.hide-workflow {
30
+ @media (max-width: 768px) {
31
+ width: fit-content;
32
+ }
33
+ }
34
+
35
+ .workflow-timeline-wrapper {
36
+ overflow-y: scroll;
37
+ @media (max-width: 768px) {
38
+ width: 100%;
39
+ }
40
+ @media (min-width: 768px) {
41
+ max-width: 25%;
42
+ }
43
+ }
44
+
29
45
  .hidden-content {
30
46
  display: none !important;
31
47
  }
@@ -103,6 +103,10 @@
103
103
  color: rgb(244, 119, 56);
104
104
  display: flex;
105
105
  cursor: pointer;
106
+
107
+ @media (max-width: 480px) {
108
+ padding: 5px;
109
+ }
106
110
  }
107
111
 
108
112
  .search-add-icon {
@@ -27,7 +27,7 @@ body {
27
27
  }
28
28
 
29
29
  .link-label {
30
- @apply block text-link text-primary-main mb-md ml-md cursor-pointer;
30
+ @apply block text-link text-primary-main cursor-pointer;
31
31
 
32
32
  &:hover {
33
33
  @apply text-primary-main;
@@ -267,10 +267,6 @@ body {
267
267
  @apply text-heading-l-dt;
268
268
  }
269
269
 
270
- .link-label {
271
- margin-left: 0;
272
- }
273
-
274
270
  .back-btn {
275
271
  margin-left: 0;
276
272
  }
@@ -306,17 +302,6 @@ body {
306
302
  margin: 0;
307
303
  }
308
304
 
309
- .module-carousel-header h3::before {
310
- content: "";
311
- position: absolute;
312
- left: 0;
313
- top: 4px;
314
- height: 16px;
315
- width: 4px;
316
- background: #3b82f6;
317
- border-radius: 4px;
318
- }
319
-
320
305
  .module-carousel-header {
321
306
  background: linear-gradient(135deg, #3585c4, #6fa0f0 40%, #80b3ff);
322
307
  padding: 12px 16px;
@@ -107,6 +107,7 @@
107
107
  }
108
108
 
109
109
  .card-label {
110
+ word-wrap: anywhere;
110
111
  @apply text-legend text-text-primary mb-md;
111
112
  }
112
113
 
@@ -131,6 +132,12 @@
131
132
  }
132
133
  }
133
134
 
135
+ .card-form-container {
136
+ display: flex;
137
+ flex-direction: column;
138
+ gap: 16px;
139
+ }
140
+
134
141
  .vehicle-details-card {
135
142
  width: 100%;
136
143
  height: fit-content;
@@ -182,7 +189,7 @@
182
189
  }
183
190
 
184
191
  header {
185
- @apply font-rc font-medium text-legend text-white leading-10;
192
+ @apply font-rc font-medium text-legend text-white;
186
193
  }
187
194
  }
188
195
 
@@ -208,7 +215,6 @@
208
215
  }
209
216
  }
210
217
  @screen dt {
211
-
212
218
  .submit-bar,
213
219
  .submit-bar-disabled {
214
220
  width: 240px;
@@ -374,7 +380,7 @@
374
380
  }
375
381
 
376
382
  /* Remove any default margins that might interfere */
377
- .label-field-pair>* {
383
+ .label-field-pair > * {
378
384
  margin: 0;
379
385
  width: 100%;
380
386
  }
@@ -515,7 +521,7 @@
515
521
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
516
522
  }
517
523
 
518
- .new-employee-card>* {
524
+ .new-employee-card > * {
519
525
  position: relative;
520
526
  z-index: 1;
521
527
  }
@@ -1235,7 +1241,7 @@
1235
1241
 
1236
1242
  .premium-sidebar.collapsed {
1237
1243
  width: var(--sidebar-collapsed);
1238
- padding:5px;
1244
+ padding: 5px;
1239
1245
  }
1240
1246
 
1241
1247
  /* --- Header & Brand --- */
@@ -1430,7 +1436,6 @@
1430
1436
  }
1431
1437
 
1432
1438
  @media (max-width: 768px) {
1433
-
1434
1439
  /* Wrapper becomes a sticky top bar, not a flex column member */
1435
1440
  .module-sidebar-wrapper {
1436
1441
  position: fixed;
@@ -1564,7 +1569,6 @@
1564
1569
  }
1565
1570
 
1566
1571
  @media (min-width: 768px) {
1567
-
1568
1572
  .mobile-sidebar-toggle,
1569
1573
  .mobile-close-btn,
1570
1574
  .sidebar-backdrop {
@@ -1589,4 +1593,4 @@
1589
1593
  padding: 20px;
1590
1594
  transition: none;
1591
1595
  }
1592
- }
1596
+ }
@@ -12,7 +12,8 @@
12
12
  height: 38px;
13
13
  opacity: 0;
14
14
  position: absolute;
15
- top: 0;
15
+ top: 50%;
16
+ transform: translateY(-50%);
16
17
  left: 0;
17
18
  z-index: 10;
18
19
  cursor: pointer;
@@ -49,7 +50,8 @@
49
50
  background-color: #fff;
50
51
  border-radius: 2px;
51
52
  position: absolute;
52
- top: 0;
53
+ top: 50%;
54
+ transform: translateY(-50%);
53
55
  left: 0;
54
56
  z-index: 0;
55
57
  display: flex;
@@ -90,4 +92,4 @@
90
92
  margin-left: 48px;
91
93
  font-size: 14px;
92
94
  color: #333;
93
- }
95
+ }
@@ -51,6 +51,7 @@
51
51
  @apply text-heading-s;
52
52
  white-space: break-spaces !important;
53
53
  word-break: break-all;
54
+ text-align: center;
54
55
  }
55
56
 
56
57
  .caption {
@@ -109,7 +110,7 @@
109
110
  }
110
111
  &.status-radio-table {
111
112
  margin-top: 1rem;
112
- .row {
113
+ .row {
113
114
  span {
114
115
  width: 24px;
115
116
  display: block;
@@ -120,15 +121,17 @@
120
121
  }
121
122
 
122
123
  &.view-header {
123
- .row {
124
- display: grid;
125
- grid-template-columns: 1fr 68%;
126
- }
124
+ .row {
125
+ display: grid;
126
+ grid-template-columns: 1fr 68%;
127
+ }
127
128
  }
128
129
  }
129
130
 
130
-
131
- .pt-citizen {.data-table {.row {
132
- justify-content: space-between;
133
-
134
- }}}
131
+ .pt-citizen {
132
+ .data-table {
133
+ .row {
134
+ justify-content: space-between;
135
+ }
136
+ }
137
+ }
@@ -31,6 +31,7 @@
31
31
  min-width: 200px;
32
32
  }
33
33
  }
34
+
34
35
  @screen dt {
35
36
  .InboxComposerWrapper {
36
37
  grid-template-columns: calc(25% - 32px) 75%;
@@ -4,11 +4,17 @@
4
4
  }
5
5
 
6
6
  .page-loader {
7
- padding-top: 88px;
7
+ position: absolute;
8
+ top: 50%;
9
+ left: 50%;
10
+ transform: translate(-50%, -50%);
8
11
  }
9
12
 
10
13
  .module-loader {
11
- padding: 16px;
14
+ position: absolute;
15
+ top: 50%;
16
+ left: 50%;
17
+ transform: translate(-50%, -50%);
12
18
  }
13
19
 
14
20
  @keyframes ldio-pjg92h09b2o {