@keenmate/pure-admin-core 2.3.0 → 2.3.2

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.
Files changed (69) hide show
  1. package/README.md +7 -5
  2. package/dist/css/main.css +207 -181
  3. package/package.json +1 -1
  4. package/snippets/buttons.html +375 -365
  5. package/src/scss/_base-css-variables.scss +8 -0
  6. package/src/scss/_core.scss +121 -121
  7. package/src/scss/core-components/_alerts.scss +227 -227
  8. package/src/scss/core-components/_badges.scss +16 -16
  9. package/src/scss/core-components/_base.scss +125 -125
  10. package/src/scss/core-components/_buttons.scss +580 -548
  11. package/src/scss/core-components/_callouts.scss +152 -152
  12. package/src/scss/core-components/_cards.scss +488 -488
  13. package/src/scss/core-components/_checkbox-lists.scss +289 -289
  14. package/src/scss/core-components/_code.scss +141 -141
  15. package/src/scss/core-components/_command-palette.scss +509 -509
  16. package/src/scss/core-components/_comparison.scss +172 -172
  17. package/src/scss/core-components/_data-display.scss +9 -9
  18. package/src/scss/core-components/_data-viz.scss +9 -9
  19. package/src/scss/core-components/_detail-panel.scss +1 -1
  20. package/src/scss/core-components/_file-selector.scss +780 -780
  21. package/src/scss/core-components/_filter-card.scss +58 -58
  22. package/src/scss/core-components/_forms.scss +16 -16
  23. package/src/scss/core-components/_grid.scss +293 -293
  24. package/src/scss/core-components/_layout.scss +15 -15
  25. package/src/scss/core-components/_lists.scss +211 -211
  26. package/src/scss/core-components/_loaders.scss +277 -277
  27. package/src/scss/core-components/_logic-tree.scss +280 -280
  28. package/src/scss/core-components/_modals.scss +203 -203
  29. package/src/scss/core-components/_notifications.scss +320 -320
  30. package/src/scss/core-components/_pagers.scss +141 -141
  31. package/src/scss/core-components/_popconfirm.scss +170 -170
  32. package/src/scss/core-components/_profile.scss +405 -405
  33. package/src/scss/core-components/_scrollbars.scss +40 -40
  34. package/src/scss/core-components/_settings-panel.scss +141 -141
  35. package/src/scss/core-components/_statistics.scss +200 -201
  36. package/src/scss/core-components/_tables.scss +900 -900
  37. package/src/scss/core-components/_tabs.scss +504 -504
  38. package/src/scss/core-components/_timeline.scss +589 -589
  39. package/src/scss/core-components/_toasts.scss +425 -425
  40. package/src/scss/core-components/_tooltips.scss +605 -605
  41. package/src/scss/core-components/_utilities.scss +1 -1
  42. package/src/scss/core-components/_web-components-theme.scss +21 -21
  43. package/src/scss/core-components/badges/_badge-base.scss +121 -121
  44. package/src/scss/core-components/badges/_badge-group.scss +25 -25
  45. package/src/scss/core-components/badges/_composite-badge-variants.scss +396 -396
  46. package/src/scss/core-components/badges/_composite-badge.scss +70 -70
  47. package/src/scss/core-components/badges/_index.scss +10 -10
  48. package/src/scss/core-components/badges/_labels.scss +155 -155
  49. package/src/scss/core-components/forms/_checkboxes-radios.scss +205 -205
  50. package/src/scss/core-components/forms/_form-inputs.scss +136 -135
  51. package/src/scss/core-components/forms/_form-layout.scss +66 -66
  52. package/src/scss/core-components/forms/_form-states.scss +115 -115
  53. package/src/scss/core-components/forms/_index.scss +12 -12
  54. package/src/scss/core-components/forms/_input-groups.scss +154 -154
  55. package/src/scss/core-components/forms/_input-wrapper.scss +89 -89
  56. package/src/scss/core-components/forms/_query-editor.scss +313 -313
  57. package/src/scss/core-components/layout/_index.scss +11 -11
  58. package/src/scss/core-components/layout/_layout-container.scss +168 -168
  59. package/src/scss/core-components/layout/_layout-responsive.scss +99 -99
  60. package/src/scss/core-components/layout/_navbar-elements.scss +250 -250
  61. package/src/scss/core-components/layout/_navbar.scss +83 -83
  62. package/src/scss/core-components/layout/_sidebar-states.scss +237 -237
  63. package/src/scss/core-components/layout/_sidebar.scss +234 -234
  64. package/src/scss/main.scss +7 -7
  65. package/src/scss/utilities.scss +740 -740
  66. package/src/scss/variables/_base.scss +228 -228
  67. package/src/scss/variables/_components.scss +748 -748
  68. package/src/scss/variables/_layout.scss +65 -65
  69. package/src/scss/variables/_typography.scss +37 -37
@@ -1,741 +1,741 @@
1
- // Pure Admin Visual - Utility Classes
2
- // Spacing utilities similar to Bootstrap/Tailwind
3
- // Based on rem units: 0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 4, 5
4
-
5
- @use './variables' as *;
6
-
7
- // Spacing scale
8
- $spacers: (
9
- 0: 0,
10
- 1: 0.25rem, // 4px
11
- 2: 0.5rem, // 8px
12
- 3: 0.75rem, // 12px
13
- 4: 1rem, // 16px
14
- 5: 1.25rem, // 20px
15
- 6: 1.5rem, // 24px
16
- 8: 2rem, // 32px
17
- 10: 2.5rem, // 40px
18
- 12: 3rem, // 48px
19
- 16: 4rem, // 64px
20
- 20: 5rem // 80px
21
- );
22
-
23
- // Margin utilities
24
- @each $name, $value in $spacers {
25
- // All sides
26
- .m-#{$name} {
27
- margin: #{$value} !important;
28
- }
29
-
30
- // Top
31
- .mt-#{$name} {
32
- margin-top: #{$value} !important;
33
- }
34
-
35
- // Right
36
- .mr-#{$name} {
37
- margin-right: #{$value} !important;
38
- }
39
-
40
- // Bottom
41
- .mb-#{$name} {
42
- margin-bottom: #{$value} !important;
43
- }
44
-
45
- // Left
46
- .ml-#{$name} {
47
- margin-left: #{$value} !important;
48
- }
49
-
50
- // X-axis (left + right)
51
- .mx-#{$name} {
52
- margin-left: #{$value} !important;
53
- margin-right: #{$value} !important;
54
- }
55
-
56
- // Y-axis (top + bottom)
57
- .my-#{$name} {
58
- margin-top: #{$value} !important;
59
- margin-bottom: #{$value} !important;
60
- }
61
- }
62
-
63
- // Padding utilities
64
- @each $name, $value in $spacers {
65
- // All sides
66
- .p-#{$name} {
67
- padding: #{$value} !important;
68
- }
69
-
70
- // Top
71
- .pt-#{$name} {
72
- padding-top: #{$value} !important;
73
- }
74
-
75
- // Right
76
- .pr-#{$name} {
77
- padding-right: #{$value} !important;
78
- }
79
-
80
- // Bottom
81
- .pb-#{$name} {
82
- padding-bottom: #{$value} !important;
83
- }
84
-
85
- // Left
86
- .pl-#{$name} {
87
- padding-left: #{$value} !important;
88
- }
89
-
90
- // X-axis (left + right)
91
- .px-#{$name} {
92
- padding-left: #{$value} !important;
93
- padding-right: #{$value} !important;
94
- }
95
-
96
- // Y-axis (top + bottom)
97
- .py-#{$name} {
98
- padding-top: #{$value} !important;
99
- padding-bottom: #{$value} !important;
100
- }
101
- }
102
-
103
- // Auto margin utilities
104
- .m-auto {
105
- margin: auto !important;
106
- }
107
-
108
- .mt-auto {
109
- margin-top: auto !important;
110
- }
111
-
112
- .mr-auto {
113
- margin-right: auto !important;
114
- }
115
-
116
- .mb-auto {
117
- margin-bottom: auto !important;
118
- }
119
-
120
- .ml-auto {
121
- margin-left: auto !important;
122
- }
123
-
124
- .mx-auto {
125
- margin-left: auto !important;
126
- margin-right: auto !important;
127
- }
128
-
129
- .my-auto {
130
- margin-top: auto !important;
131
- margin-bottom: auto !important;
132
- }
133
-
134
- // Semantic margin utilities (using spacing variables)
135
- @each $name, $value in $semantic-spacers {
136
- .m-#{$name} { margin: #{$value} !important; }
137
- .mt-#{$name} { margin-top: #{$value} !important; }
138
- .mr-#{$name} { margin-right: #{$value} !important; }
139
- .mb-#{$name} { margin-bottom: #{$value} !important; }
140
- .ml-#{$name} { margin-left: #{$value} !important; }
141
- .mx-#{$name} { margin-left: #{$value} !important; margin-right: #{$value} !important; }
142
- .my-#{$name} { margin-top: #{$value} !important; margin-bottom: #{$value} !important; }
143
- }
144
-
145
- // Semantic padding utilities (using spacing variables)
146
- @each $name, $value in $semantic-spacers {
147
- .p-#{$name} { padding: #{$value} !important; }
148
- .pt-#{$name} { padding-top: #{$value} !important; }
149
- .pr-#{$name} { padding-right: #{$value} !important; }
150
- .pb-#{$name} { padding-bottom: #{$value} !important; }
151
- .pl-#{$name} { padding-left: #{$value} !important; }
152
- .px-#{$name} { padding-left: #{$value} !important; padding-right: #{$value} !important; }
153
- .py-#{$name} { padding-top: #{$value} !important; padding-bottom: #{$value} !important; }
154
- }
155
-
156
- // Display utilities
157
- .d-none {
158
- display: none !important;
159
- }
160
-
161
- .d-inline {
162
- display: inline !important;
163
- }
164
-
165
- .d-inline-block {
166
- display: inline-block !important;
167
- }
168
-
169
- .d-block {
170
- display: block !important;
171
- }
172
-
173
- .d-flex {
174
- display: flex !important;
175
- }
176
-
177
- .d-inline-flex {
178
- display: inline-flex !important;
179
- }
180
-
181
- // Flexbox utilities
182
- .flex-row {
183
- flex-direction: row !important;
184
- }
185
-
186
- .flex-column {
187
- flex-direction: column !important;
188
- }
189
-
190
- .flex-wrap {
191
- flex-wrap: wrap !important;
192
- }
193
-
194
- .flex-nowrap {
195
- flex-wrap: nowrap !important;
196
- }
197
-
198
- .justify-content-start {
199
- justify-content: flex-start !important;
200
- }
201
-
202
- .justify-content-end {
203
- justify-content: flex-end !important;
204
- }
205
-
206
- .justify-content-center {
207
- justify-content: center !important;
208
- }
209
-
210
- .justify-content-between {
211
- justify-content: space-between !important;
212
- }
213
-
214
- .justify-content-around {
215
- justify-content: space-around !important;
216
- }
217
-
218
- .align-items-start {
219
- align-items: flex-start !important;
220
- }
221
-
222
- .align-items-end {
223
- align-items: flex-end !important;
224
- }
225
-
226
- .align-items-center {
227
- align-items: center !important;
228
- }
229
-
230
- .align-items-baseline {
231
- align-items: baseline !important;
232
- }
233
-
234
- .align-items-stretch {
235
- align-items: stretch !important;
236
- }
237
-
238
- .flex-fill {
239
- flex: 1 1 auto !important;
240
- }
241
-
242
- .flex-grow-0 {
243
- flex-grow: 0 !important;
244
- }
245
-
246
- .flex-grow-1 {
247
- flex-grow: 1 !important;
248
- }
249
-
250
- .flex-shrink-0 {
251
- flex-shrink: 0 !important;
252
- }
253
-
254
- .flex-shrink-1 {
255
- flex-shrink: 1 !important;
256
- }
257
-
258
- // Text utilities
259
- .text-center {
260
- text-align: center !important;
261
- }
262
-
263
- .text-nowrap {
264
- white-space: nowrap !important;
265
- }
266
-
267
- .text-truncate {
268
- overflow: hidden !important;
269
- text-overflow: ellipsis !important;
270
- white-space: nowrap !important;
271
- }
272
-
273
- // Width utilities (5% increments)
274
- .w-5 { width: 5% !important; }
275
- .w-10 { width: 10% !important; }
276
- .w-15 { width: 15% !important; }
277
- .w-20 { width: 20% !important; }
278
- .w-25 { width: 25% !important; }
279
- .w-30 { width: 30% !important; }
280
- .w-35 { width: 35% !important; }
281
- .w-40 { width: 40% !important; }
282
- .w-45 { width: 45% !important; }
283
- .w-50 { width: 50% !important; }
284
- .w-55 { width: 55% !important; }
285
- .w-60 { width: 60% !important; }
286
- .w-65 { width: 65% !important; }
287
- .w-70 { width: 70% !important; }
288
- .w-75 { width: 75% !important; }
289
- .w-80 { width: 80% !important; }
290
- .w-85 { width: 85% !important; }
291
- .w-90 { width: 90% !important; }
292
- .w-95 { width: 95% !important; }
293
- .w-100 { width: 100% !important; }
294
- .w-auto { width: auto !important; }
295
-
296
- // Width utilities (fractions) - matches grid naming
297
- .w-1-2 { width: 50% !important; }
298
- .w-1-3 { width: 33.333333% !important; }
299
- .w-2-3 { width: 66.666667% !important; }
300
- .w-1-4 { width: 25% !important; }
301
- .w-3-4 { width: 75% !important; }
302
-
303
- // Min-width utilities
304
- .mw-25 { min-width: 25% !important; }
305
- .mw-50 { min-width: 50% !important; }
306
- .mw-75 { min-width: 75% !important; }
307
- .mw-100 { min-width: 100% !important; }
308
- .mw-auto { min-width: auto !important; }
309
- .mw-1-2 { min-width: 50% !important; }
310
- .mw-1-3 { min-width: 33.333333% !important; }
311
- .mw-2-3 { min-width: 66.666667% !important; }
312
- .mw-1-4 { min-width: 25% !important; }
313
- .mw-3-4 { min-width: 75% !important; }
314
-
315
- // Fixed width utilities (min-width + width locked)
316
- .w-25-fixed { min-width: 25% !important; width: 25% !important; }
317
- .w-50-fixed { min-width: 50% !important; width: 50% !important; }
318
- .w-75-fixed { min-width: 75% !important; width: 75% !important; }
319
- .w-100-fixed { min-width: 100% !important; width: 100% !important; }
320
- .w-1-2-fixed { min-width: 50% !important; width: 50% !important; }
321
- .w-1-3-fixed { min-width: 33.333333% !important; width: 33.333333% !important; }
322
- .w-2-3-fixed { min-width: 66.666667% !important; width: 66.666667% !important; }
323
- .w-1-4-fixed { min-width: 25% !important; width: 25% !important; }
324
- .w-3-4-fixed { min-width: 75% !important; width: 75% !important; }
325
-
326
- // Height utilities
327
- .h-25 {
328
- height: 25% !important;
329
- }
330
-
331
- .h-50 {
332
- height: 50% !important;
333
- }
334
-
335
- .h-75 {
336
- height: 75% !important;
337
- }
338
-
339
- .h-100 {
340
- height: 100% !important;
341
- }
342
-
343
- .h-auto {
344
- height: auto !important;
345
- }
346
-
347
- // Height utilities (fractions)
348
- .h-1-2 { height: 50% !important; }
349
- .h-1-3 { height: 33.333333% !important; }
350
- .h-2-3 { height: 66.666667% !important; }
351
- .h-1-4 { height: 25% !important; }
352
- .h-3-4 { height: 75% !important; }
353
-
354
- // ============================================================================
355
- // REM-BASED SIZING UTILITIES
356
- // Use 'r' suffix to distinguish from percentage-based utilities
357
- // Values: 1-10, 15, 20, 25, 30, 35, 40, 45, 50 (rem)
358
- // ============================================================================
359
-
360
- // Width (rem)
361
- .wr-1 { width: 1rem !important; }
362
- .wr-2 { width: 2rem !important; }
363
- .wr-3 { width: 3rem !important; }
364
- .wr-4 { width: 4rem !important; }
365
- .wr-5 { width: 5rem !important; }
366
- .wr-6 { width: 6rem !important; }
367
- .wr-7 { width: 7rem !important; }
368
- .wr-8 { width: 8rem !important; }
369
- .wr-9 { width: 9rem !important; }
370
- .wr-10 { width: 10rem !important; }
371
- .wr-15 { width: 15rem !important; }
372
- .wr-20 { width: 20rem !important; }
373
- .wr-25 { width: 25rem !important; }
374
- .wr-30 { width: 30rem !important; }
375
- .wr-35 { width: 35rem !important; }
376
- .wr-40 { width: 40rem !important; }
377
- .wr-45 { width: 45rem !important; }
378
- .wr-50 { width: 50rem !important; }
379
-
380
- // Min-width (rem)
381
- .minwr-1 { min-width: 1rem !important; }
382
- .minwr-2 { min-width: 2rem !important; }
383
- .minwr-3 { min-width: 3rem !important; }
384
- .minwr-4 { min-width: 4rem !important; }
385
- .minwr-5 { min-width: 5rem !important; }
386
- .minwr-6 { min-width: 6rem !important; }
387
- .minwr-7 { min-width: 7rem !important; }
388
- .minwr-8 { min-width: 8rem !important; }
389
- .minwr-9 { min-width: 9rem !important; }
390
- .minwr-10 { min-width: 10rem !important; }
391
- .minwr-15 { min-width: 15rem !important; }
392
- .minwr-20 { min-width: 20rem !important; }
393
- .minwr-25 { min-width: 25rem !important; }
394
- .minwr-30 { min-width: 30rem !important; }
395
- .minwr-35 { min-width: 35rem !important; }
396
- .minwr-40 { min-width: 40rem !important; }
397
- .minwr-45 { min-width: 45rem !important; }
398
- .minwr-50 { min-width: 50rem !important; }
399
-
400
- // Max-width (rem)
401
- .maxwr-1 { max-width: 1rem !important; }
402
- .maxwr-2 { max-width: 2rem !important; }
403
- .maxwr-3 { max-width: 3rem !important; }
404
- .maxwr-4 { max-width: 4rem !important; }
405
- .maxwr-5 { max-width: 5rem !important; }
406
- .maxwr-6 { max-width: 6rem !important; }
407
- .maxwr-7 { max-width: 7rem !important; }
408
- .maxwr-8 { max-width: 8rem !important; }
409
- .maxwr-9 { max-width: 9rem !important; }
410
- .maxwr-10 { max-width: 10rem !important; }
411
- .maxwr-15 { max-width: 15rem !important; }
412
- .maxwr-20 { max-width: 20rem !important; }
413
- .maxwr-25 { max-width: 25rem !important; }
414
- .maxwr-30 { max-width: 30rem !important; }
415
- .maxwr-35 { max-width: 35rem !important; }
416
- .maxwr-40 { max-width: 40rem !important; }
417
- .maxwr-45 { max-width: 45rem !important; }
418
- .maxwr-50 { max-width: 50rem !important; }
419
-
420
- // Height (rem)
421
- .hr-1 { height: 1rem !important; }
422
- .hr-2 { height: 2rem !important; }
423
- .hr-3 { height: 3rem !important; }
424
- .hr-4 { height: 4rem !important; }
425
- .hr-5 { height: 5rem !important; }
426
- .hr-6 { height: 6rem !important; }
427
- .hr-7 { height: 7rem !important; }
428
- .hr-8 { height: 8rem !important; }
429
- .hr-9 { height: 9rem !important; }
430
- .hr-10 { height: 10rem !important; }
431
- .hr-15 { height: 15rem !important; }
432
- .hr-20 { height: 20rem !important; }
433
- .hr-25 { height: 25rem !important; }
434
- .hr-30 { height: 30rem !important; }
435
- .hr-35 { height: 35rem !important; }
436
- .hr-40 { height: 40rem !important; }
437
- .hr-45 { height: 45rem !important; }
438
- .hr-50 { height: 50rem !important; }
439
-
440
- // Min-height (rem)
441
- .minhr-1 { min-height: 1rem !important; }
442
- .minhr-2 { min-height: 2rem !important; }
443
- .minhr-3 { min-height: 3rem !important; }
444
- .minhr-4 { min-height: 4rem !important; }
445
- .minhr-5 { min-height: 5rem !important; }
446
- .minhr-6 { min-height: 6rem !important; }
447
- .minhr-7 { min-height: 7rem !important; }
448
- .minhr-8 { min-height: 8rem !important; }
449
- .minhr-9 { min-height: 9rem !important; }
450
- .minhr-10 { min-height: 10rem !important; }
451
- .minhr-15 { min-height: 15rem !important; }
452
- .minhr-20 { min-height: 20rem !important; }
453
- .minhr-25 { min-height: 25rem !important; }
454
- .minhr-30 { min-height: 30rem !important; }
455
- .minhr-35 { min-height: 35rem !important; }
456
- .minhr-40 { min-height: 40rem !important; }
457
- .minhr-45 { min-height: 45rem !important; }
458
- .minhr-50 { min-height: 50rem !important; }
459
- .minhr-60 { min-height: 60rem !important; }
460
- .minhr-70 { min-height: 70rem !important; }
461
- .minhr-80 { min-height: 80rem !important; }
462
- .minhr-90 { min-height: 90rem !important; }
463
- .minhr-100 { min-height: 100rem !important; }
464
-
465
- // Max-height (rem)
466
- .maxhr-1 { max-height: 1rem !important; }
467
- .maxhr-2 { max-height: 2rem !important; }
468
- .maxhr-3 { max-height: 3rem !important; }
469
- .maxhr-4 { max-height: 4rem !important; }
470
- .maxhr-5 { max-height: 5rem !important; }
471
- .maxhr-6 { max-height: 6rem !important; }
472
- .maxhr-7 { max-height: 7rem !important; }
473
- .maxhr-8 { max-height: 8rem !important; }
474
- .maxhr-9 { max-height: 9rem !important; }
475
- .maxhr-10 { max-height: 10rem !important; }
476
- .maxhr-15 { max-height: 15rem !important; }
477
- .maxhr-20 { max-height: 20rem !important; }
478
- .maxhr-25 { max-height: 25rem !important; }
479
- .maxhr-30 { max-height: 30rem !important; }
480
- .maxhr-35 { max-height: 35rem !important; }
481
- .maxhr-40 { max-height: 40rem !important; }
482
- .maxhr-45 { max-height: 45rem !important; }
483
- .maxhr-50 { max-height: 50rem !important; }
484
-
485
- // ============================================================================
486
- // PERCENTAGE-BASED MIN/MAX UTILITIES
487
- // Extends existing w-* and h-* utilities with min/max variants
488
- // ============================================================================
489
-
490
- // Min-width (percentage) - 5% increments
491
- .minw-5 { min-width: 5% !important; }
492
- .minw-10 { min-width: 10% !important; }
493
- .minw-15 { min-width: 15% !important; }
494
- .minw-20 { min-width: 20% !important; }
495
- .minw-25 { min-width: 25% !important; }
496
- .minw-30 { min-width: 30% !important; }
497
- .minw-35 { min-width: 35% !important; }
498
- .minw-40 { min-width: 40% !important; }
499
- .minw-45 { min-width: 45% !important; }
500
- .minw-50 { min-width: 50% !important; }
501
- .minw-55 { min-width: 55% !important; }
502
- .minw-60 { min-width: 60% !important; }
503
- .minw-65 { min-width: 65% !important; }
504
- .minw-70 { min-width: 70% !important; }
505
- .minw-75 { min-width: 75% !important; }
506
- .minw-80 { min-width: 80% !important; }
507
- .minw-85 { min-width: 85% !important; }
508
- .minw-90 { min-width: 90% !important; }
509
- .minw-95 { min-width: 95% !important; }
510
- .minw-100 { min-width: 100% !important; }
511
- .minw-1-3 { min-width: 33.333333% !important; }
512
- .minw-2-3 { min-width: 66.666667% !important; }
513
-
514
- // Max-width (percentage) - 5% increments
515
- .maxw-5 { max-width: 5% !important; }
516
- .maxw-10 { max-width: 10% !important; }
517
- .maxw-15 { max-width: 15% !important; }
518
- .maxw-20 { max-width: 20% !important; }
519
- .maxw-25 { max-width: 25% !important; }
520
- .maxw-30 { max-width: 30% !important; }
521
- .maxw-35 { max-width: 35% !important; }
522
- .maxw-40 { max-width: 40% !important; }
523
- .maxw-45 { max-width: 45% !important; }
524
- .maxw-50 { max-width: 50% !important; }
525
- .maxw-55 { max-width: 55% !important; }
526
- .maxw-60 { max-width: 60% !important; }
527
- .maxw-65 { max-width: 65% !important; }
528
- .maxw-70 { max-width: 70% !important; }
529
- .maxw-75 { max-width: 75% !important; }
530
- .maxw-80 { max-width: 80% !important; }
531
- .maxw-85 { max-width: 85% !important; }
532
- .maxw-90 { max-width: 90% !important; }
533
- .maxw-95 { max-width: 95% !important; }
534
- .maxw-100 { max-width: 100% !important; }
535
- .maxw-1-2 { max-width: 50% !important; }
536
- .maxw-1-3 { max-width: 33.333333% !important; }
537
- .maxw-2-3 { max-width: 66.666667% !important; }
538
- .maxw-1-4 { max-width: 25% !important; }
539
- .maxw-3-4 { max-width: 75% !important; }
540
-
541
- // Min-height (percentage)
542
- .minh-5 { min-height: 5% !important; }
543
- .minh-10 { min-height: 10% !important; }
544
- .minh-15 { min-height: 15% !important; }
545
- .minh-20 { min-height: 20% !important; }
546
- .minh-25 { min-height: 25% !important; }
547
- .minh-30 { min-height: 30% !important; }
548
- .minh-35 { min-height: 35% !important; }
549
- .minh-40 { min-height: 40% !important; }
550
- .minh-45 { min-height: 45% !important; }
551
- .minh-50 { min-height: 50% !important; }
552
- .minh-55 { min-height: 55% !important; }
553
- .minh-60 { min-height: 60% !important; }
554
- .minh-65 { min-height: 65% !important; }
555
- .minh-70 { min-height: 70% !important; }
556
- .minh-75 { min-height: 75% !important; }
557
- .minh-80 { min-height: 80% !important; }
558
- .minh-85 { min-height: 85% !important; }
559
- .minh-90 { min-height: 90% !important; }
560
- .minh-95 { min-height: 95% !important; }
561
- .minh-100 { min-height: 100% !important; }
562
- .minh-1-2 { min-height: 50% !important; }
563
- .minh-1-3 { min-height: 33.333333% !important; }
564
- .minh-2-3 { min-height: 66.666667% !important; }
565
- .minh-1-4 { min-height: 25% !important; }
566
- .minh-3-4 { min-height: 75% !important; }
567
-
568
- // Max-height (percentage)
569
- .maxh-5 { max-height: 5% !important; }
570
- .maxh-10 { max-height: 10% !important; }
571
- .maxh-15 { max-height: 15% !important; }
572
- .maxh-20 { max-height: 20% !important; }
573
- .maxh-25 { max-height: 25% !important; }
574
- .maxh-30 { max-height: 30% !important; }
575
- .maxh-35 { max-height: 35% !important; }
576
- .maxh-40 { max-height: 40% !important; }
577
- .maxh-45 { max-height: 45% !important; }
578
- .maxh-50 { max-height: 50% !important; }
579
- .maxh-55 { max-height: 55% !important; }
580
- .maxh-60 { max-height: 60% !important; }
581
- .maxh-65 { max-height: 65% !important; }
582
- .maxh-70 { max-height: 70% !important; }
583
- .maxh-75 { max-height: 75% !important; }
584
- .maxh-80 { max-height: 80% !important; }
585
- .maxh-85 { max-height: 85% !important; }
586
- .maxh-90 { max-height: 90% !important; }
587
- .maxh-95 { max-height: 95% !important; }
588
- .maxh-100 { max-height: 100% !important; }
589
- .maxh-1-2 { max-height: 50% !important; }
590
- .maxh-1-3 { max-height: 33.333333% !important; }
591
- .maxh-2-3 { max-height: 66.666667% !important; }
592
- .maxh-1-4 { max-height: 25% !important; }
593
- .maxh-3-4 { max-height: 75% !important; }
594
-
595
- // Position utilities
596
- .position-static {
597
- position: static !important;
598
- }
599
-
600
- .position-relative {
601
- position: relative !important;
602
- }
603
-
604
- .position-absolute {
605
- position: absolute !important;
606
- }
607
-
608
- .position-fixed {
609
- position: fixed !important;
610
- }
611
-
612
- .position-sticky {
613
- position: sticky !important;
614
- }
615
-
616
- // Border utilities
617
- .border {
618
- border: 1px solid var(--border-color) !important;
619
- }
620
-
621
- .border-top {
622
- border-top: 1px solid var(--border-color) !important;
623
- }
624
-
625
- .border-right {
626
- border-right: 1px solid var(--border-color) !important;
627
- }
628
-
629
- .border-bottom {
630
- border-bottom: 1px solid var(--border-color) !important;
631
- }
632
-
633
- .border-left {
634
- border-left: 1px solid var(--border-color) !important;
635
- }
636
-
637
- .border-0 {
638
- border: 0 !important;
639
- }
640
-
641
- .border-top-0 {
642
- border-top: 0 !important;
643
- }
644
-
645
- .border-right-0 {
646
- border-right: 0 !important;
647
- }
648
-
649
- .border-bottom-0 {
650
- border-bottom: 0 !important;
651
- }
652
-
653
- .border-left-0 {
654
- border-left: 0 !important;
655
- }
656
-
657
- // Border style utilities
658
- .border-solid { border-style: solid !important; }
659
- .border-dashed { border-style: dashed !important; }
660
- .border-dotted { border-style: dotted !important; }
661
- .border-none { border-style: none !important; }
662
-
663
- // Text color utilities (semantic colors)
664
- .text-primary { color: var(--pa-accent) !important; }
665
- .text-success { color: var(--pa-success-text) !important; }
666
- .text-danger { color: var(--pa-danger-text) !important; }
667
- .text-warning { color: var(--pa-warning-text) !important; }
668
- .text-info { color: var(--pa-info-text) !important; }
669
-
670
- // Text color utilities (theme custom colors 1-9)
671
- .text-color-1 { color: var(--pa-color-1) !important; }
672
- .text-color-2 { color: var(--pa-color-2) !important; }
673
- .text-color-3 { color: var(--pa-color-3) !important; }
674
- .text-color-4 { color: var(--pa-color-4) !important; }
675
- .text-color-5 { color: var(--pa-color-5) !important; }
676
- .text-color-6 { color: var(--pa-color-6) !important; }
677
- .text-color-7 { color: var(--pa-color-7) !important; }
678
- .text-color-8 { color: var(--pa-color-8) !important; }
679
- .text-color-9 { color: var(--pa-color-9) !important; }
680
-
681
- // Rounded utilities
682
- .rounded {
683
- border-radius: var(--border-radius) !important;
684
- }
685
-
686
- .rounded-lg {
687
- border-radius: var(--border-radius-lg) !important;
688
- }
689
-
690
- .rounded-circle {
691
- border-radius: 50% !important;
692
- }
693
-
694
- .rounded-0 {
695
- border-radius: 0 !important;
696
- }
697
-
698
- .rounded-top {
699
- border-top-left-radius: var(--border-radius) !important;
700
- border-top-right-radius: var(--border-radius) !important;
701
- }
702
-
703
- .rounded-bottom {
704
- border-bottom-left-radius: var(--border-radius) !important;
705
- border-bottom-right-radius: var(--border-radius) !important;
706
- }
707
-
708
- .rounded-left {
709
- border-top-left-radius: var(--border-radius) !important;
710
- border-bottom-left-radius: var(--border-radius) !important;
711
- }
712
-
713
- .rounded-right {
714
- border-top-right-radius: var(--border-radius) !important;
715
- border-bottom-right-radius: var(--border-radius) !important;
716
- }
717
-
718
- // Shadow utilities
719
- .shadow-none {
720
- box-shadow: none !important;
721
- }
722
-
723
- .shadow-sm {
724
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) !important;
725
- }
726
-
727
- .shadow {
728
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
729
- }
730
-
731
- .shadow-lg {
732
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
733
- }
734
-
735
- // ============================================================================
736
- // Container queries
737
- // ============================================================================
738
-
739
- .pa-cq {
740
- container-type: inline-size;
1
+ // Pure Admin Visual - Utility Classes
2
+ // Spacing utilities similar to Bootstrap/Tailwind
3
+ // Based on rem units: 0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 2, 2.5, 3, 4, 5
4
+
5
+ @use './variables' as *;
6
+
7
+ // Spacing scale
8
+ $spacers: (
9
+ 0: 0,
10
+ 1: 0.25rem, // 4px
11
+ 2: 0.5rem, // 8px
12
+ 3: 0.75rem, // 12px
13
+ 4: 1rem, // 16px
14
+ 5: 1.25rem, // 20px
15
+ 6: 1.5rem, // 24px
16
+ 8: 2rem, // 32px
17
+ 10: 2.5rem, // 40px
18
+ 12: 3rem, // 48px
19
+ 16: 4rem, // 64px
20
+ 20: 5rem // 80px
21
+ );
22
+
23
+ // Margin utilities
24
+ @each $name, $value in $spacers {
25
+ // All sides
26
+ .m-#{$name} {
27
+ margin: #{$value} !important;
28
+ }
29
+
30
+ // Top
31
+ .mt-#{$name} {
32
+ margin-top: #{$value} !important;
33
+ }
34
+
35
+ // Right
36
+ .mr-#{$name} {
37
+ margin-right: #{$value} !important;
38
+ }
39
+
40
+ // Bottom
41
+ .mb-#{$name} {
42
+ margin-bottom: #{$value} !important;
43
+ }
44
+
45
+ // Left
46
+ .ml-#{$name} {
47
+ margin-left: #{$value} !important;
48
+ }
49
+
50
+ // X-axis (left + right)
51
+ .mx-#{$name} {
52
+ margin-left: #{$value} !important;
53
+ margin-right: #{$value} !important;
54
+ }
55
+
56
+ // Y-axis (top + bottom)
57
+ .my-#{$name} {
58
+ margin-top: #{$value} !important;
59
+ margin-bottom: #{$value} !important;
60
+ }
61
+ }
62
+
63
+ // Padding utilities
64
+ @each $name, $value in $spacers {
65
+ // All sides
66
+ .p-#{$name} {
67
+ padding: #{$value} !important;
68
+ }
69
+
70
+ // Top
71
+ .pt-#{$name} {
72
+ padding-top: #{$value} !important;
73
+ }
74
+
75
+ // Right
76
+ .pr-#{$name} {
77
+ padding-right: #{$value} !important;
78
+ }
79
+
80
+ // Bottom
81
+ .pb-#{$name} {
82
+ padding-bottom: #{$value} !important;
83
+ }
84
+
85
+ // Left
86
+ .pl-#{$name} {
87
+ padding-left: #{$value} !important;
88
+ }
89
+
90
+ // X-axis (left + right)
91
+ .px-#{$name} {
92
+ padding-left: #{$value} !important;
93
+ padding-right: #{$value} !important;
94
+ }
95
+
96
+ // Y-axis (top + bottom)
97
+ .py-#{$name} {
98
+ padding-top: #{$value} !important;
99
+ padding-bottom: #{$value} !important;
100
+ }
101
+ }
102
+
103
+ // Auto margin utilities
104
+ .m-auto {
105
+ margin: auto !important;
106
+ }
107
+
108
+ .mt-auto {
109
+ margin-top: auto !important;
110
+ }
111
+
112
+ .mr-auto {
113
+ margin-right: auto !important;
114
+ }
115
+
116
+ .mb-auto {
117
+ margin-bottom: auto !important;
118
+ }
119
+
120
+ .ml-auto {
121
+ margin-left: auto !important;
122
+ }
123
+
124
+ .mx-auto {
125
+ margin-left: auto !important;
126
+ margin-right: auto !important;
127
+ }
128
+
129
+ .my-auto {
130
+ margin-top: auto !important;
131
+ margin-bottom: auto !important;
132
+ }
133
+
134
+ // Semantic margin utilities (using spacing variables)
135
+ @each $name, $value in $semantic-spacers {
136
+ .m-#{$name} { margin: #{$value} !important; }
137
+ .mt-#{$name} { margin-top: #{$value} !important; }
138
+ .mr-#{$name} { margin-right: #{$value} !important; }
139
+ .mb-#{$name} { margin-bottom: #{$value} !important; }
140
+ .ml-#{$name} { margin-left: #{$value} !important; }
141
+ .mx-#{$name} { margin-left: #{$value} !important; margin-right: #{$value} !important; }
142
+ .my-#{$name} { margin-top: #{$value} !important; margin-bottom: #{$value} !important; }
143
+ }
144
+
145
+ // Semantic padding utilities (using spacing variables)
146
+ @each $name, $value in $semantic-spacers {
147
+ .p-#{$name} { padding: #{$value} !important; }
148
+ .pt-#{$name} { padding-top: #{$value} !important; }
149
+ .pr-#{$name} { padding-right: #{$value} !important; }
150
+ .pb-#{$name} { padding-bottom: #{$value} !important; }
151
+ .pl-#{$name} { padding-left: #{$value} !important; }
152
+ .px-#{$name} { padding-left: #{$value} !important; padding-right: #{$value} !important; }
153
+ .py-#{$name} { padding-top: #{$value} !important; padding-bottom: #{$value} !important; }
154
+ }
155
+
156
+ // Display utilities
157
+ .d-none {
158
+ display: none !important;
159
+ }
160
+
161
+ .d-inline {
162
+ display: inline !important;
163
+ }
164
+
165
+ .d-inline-block {
166
+ display: inline-block !important;
167
+ }
168
+
169
+ .d-block {
170
+ display: block !important;
171
+ }
172
+
173
+ .d-flex {
174
+ display: flex !important;
175
+ }
176
+
177
+ .d-inline-flex {
178
+ display: inline-flex !important;
179
+ }
180
+
181
+ // Flexbox utilities
182
+ .flex-row {
183
+ flex-direction: row !important;
184
+ }
185
+
186
+ .flex-column {
187
+ flex-direction: column !important;
188
+ }
189
+
190
+ .flex-wrap {
191
+ flex-wrap: wrap !important;
192
+ }
193
+
194
+ .flex-nowrap {
195
+ flex-wrap: nowrap !important;
196
+ }
197
+
198
+ .justify-content-start {
199
+ justify-content: flex-start !important;
200
+ }
201
+
202
+ .justify-content-end {
203
+ justify-content: flex-end !important;
204
+ }
205
+
206
+ .justify-content-center {
207
+ justify-content: center !important;
208
+ }
209
+
210
+ .justify-content-between {
211
+ justify-content: space-between !important;
212
+ }
213
+
214
+ .justify-content-around {
215
+ justify-content: space-around !important;
216
+ }
217
+
218
+ .align-items-start {
219
+ align-items: flex-start !important;
220
+ }
221
+
222
+ .align-items-end {
223
+ align-items: flex-end !important;
224
+ }
225
+
226
+ .align-items-center {
227
+ align-items: center !important;
228
+ }
229
+
230
+ .align-items-baseline {
231
+ align-items: baseline !important;
232
+ }
233
+
234
+ .align-items-stretch {
235
+ align-items: stretch !important;
236
+ }
237
+
238
+ .flex-fill {
239
+ flex: 1 1 auto !important;
240
+ }
241
+
242
+ .flex-grow-0 {
243
+ flex-grow: 0 !important;
244
+ }
245
+
246
+ .flex-grow-1 {
247
+ flex-grow: 1 !important;
248
+ }
249
+
250
+ .flex-shrink-0 {
251
+ flex-shrink: 0 !important;
252
+ }
253
+
254
+ .flex-shrink-1 {
255
+ flex-shrink: 1 !important;
256
+ }
257
+
258
+ // Text utilities
259
+ .text-center {
260
+ text-align: center !important;
261
+ }
262
+
263
+ .text-nowrap {
264
+ white-space: nowrap !important;
265
+ }
266
+
267
+ .text-truncate {
268
+ overflow: hidden !important;
269
+ text-overflow: ellipsis !important;
270
+ white-space: nowrap !important;
271
+ }
272
+
273
+ // Width utilities (5% increments)
274
+ .w-5 { width: 5% !important; }
275
+ .w-10 { width: 10% !important; }
276
+ .w-15 { width: 15% !important; }
277
+ .w-20 { width: 20% !important; }
278
+ .w-25 { width: 25% !important; }
279
+ .w-30 { width: 30% !important; }
280
+ .w-35 { width: 35% !important; }
281
+ .w-40 { width: 40% !important; }
282
+ .w-45 { width: 45% !important; }
283
+ .w-50 { width: 50% !important; }
284
+ .w-55 { width: 55% !important; }
285
+ .w-60 { width: 60% !important; }
286
+ .w-65 { width: 65% !important; }
287
+ .w-70 { width: 70% !important; }
288
+ .w-75 { width: 75% !important; }
289
+ .w-80 { width: 80% !important; }
290
+ .w-85 { width: 85% !important; }
291
+ .w-90 { width: 90% !important; }
292
+ .w-95 { width: 95% !important; }
293
+ .w-100 { width: 100% !important; }
294
+ .w-auto { width: auto !important; }
295
+
296
+ // Width utilities (fractions) - matches grid naming
297
+ .w-1-2 { width: 50% !important; }
298
+ .w-1-3 { width: 33.333333% !important; }
299
+ .w-2-3 { width: 66.666667% !important; }
300
+ .w-1-4 { width: 25% !important; }
301
+ .w-3-4 { width: 75% !important; }
302
+
303
+ // Min-width utilities
304
+ .mw-25 { min-width: 25% !important; }
305
+ .mw-50 { min-width: 50% !important; }
306
+ .mw-75 { min-width: 75% !important; }
307
+ .mw-100 { min-width: 100% !important; }
308
+ .mw-auto { min-width: auto !important; }
309
+ .mw-1-2 { min-width: 50% !important; }
310
+ .mw-1-3 { min-width: 33.333333% !important; }
311
+ .mw-2-3 { min-width: 66.666667% !important; }
312
+ .mw-1-4 { min-width: 25% !important; }
313
+ .mw-3-4 { min-width: 75% !important; }
314
+
315
+ // Fixed width utilities (min-width + width locked)
316
+ .w-25-fixed { min-width: 25% !important; width: 25% !important; }
317
+ .w-50-fixed { min-width: 50% !important; width: 50% !important; }
318
+ .w-75-fixed { min-width: 75% !important; width: 75% !important; }
319
+ .w-100-fixed { min-width: 100% !important; width: 100% !important; }
320
+ .w-1-2-fixed { min-width: 50% !important; width: 50% !important; }
321
+ .w-1-3-fixed { min-width: 33.333333% !important; width: 33.333333% !important; }
322
+ .w-2-3-fixed { min-width: 66.666667% !important; width: 66.666667% !important; }
323
+ .w-1-4-fixed { min-width: 25% !important; width: 25% !important; }
324
+ .w-3-4-fixed { min-width: 75% !important; width: 75% !important; }
325
+
326
+ // Height utilities
327
+ .h-25 {
328
+ height: 25% !important;
329
+ }
330
+
331
+ .h-50 {
332
+ height: 50% !important;
333
+ }
334
+
335
+ .h-75 {
336
+ height: 75% !important;
337
+ }
338
+
339
+ .h-100 {
340
+ height: 100% !important;
341
+ }
342
+
343
+ .h-auto {
344
+ height: auto !important;
345
+ }
346
+
347
+ // Height utilities (fractions)
348
+ .h-1-2 { height: 50% !important; }
349
+ .h-1-3 { height: 33.333333% !important; }
350
+ .h-2-3 { height: 66.666667% !important; }
351
+ .h-1-4 { height: 25% !important; }
352
+ .h-3-4 { height: 75% !important; }
353
+
354
+ // ============================================================================
355
+ // REM-BASED SIZING UTILITIES
356
+ // Use 'r' suffix to distinguish from percentage-based utilities
357
+ // Values: 1-10, 15, 20, 25, 30, 35, 40, 45, 50 (rem)
358
+ // ============================================================================
359
+
360
+ // Width (rem)
361
+ .wr-1 { width: 1rem !important; }
362
+ .wr-2 { width: 2rem !important; }
363
+ .wr-3 { width: 3rem !important; }
364
+ .wr-4 { width: 4rem !important; }
365
+ .wr-5 { width: 5rem !important; }
366
+ .wr-6 { width: 6rem !important; }
367
+ .wr-7 { width: 7rem !important; }
368
+ .wr-8 { width: 8rem !important; }
369
+ .wr-9 { width: 9rem !important; }
370
+ .wr-10 { width: 10rem !important; }
371
+ .wr-15 { width: 15rem !important; }
372
+ .wr-20 { width: 20rem !important; }
373
+ .wr-25 { width: 25rem !important; }
374
+ .wr-30 { width: 30rem !important; }
375
+ .wr-35 { width: 35rem !important; }
376
+ .wr-40 { width: 40rem !important; }
377
+ .wr-45 { width: 45rem !important; }
378
+ .wr-50 { width: 50rem !important; }
379
+
380
+ // Min-width (rem)
381
+ .minwr-1 { min-width: 1rem !important; }
382
+ .minwr-2 { min-width: 2rem !important; }
383
+ .minwr-3 { min-width: 3rem !important; }
384
+ .minwr-4 { min-width: 4rem !important; }
385
+ .minwr-5 { min-width: 5rem !important; }
386
+ .minwr-6 { min-width: 6rem !important; }
387
+ .minwr-7 { min-width: 7rem !important; }
388
+ .minwr-8 { min-width: 8rem !important; }
389
+ .minwr-9 { min-width: 9rem !important; }
390
+ .minwr-10 { min-width: 10rem !important; }
391
+ .minwr-15 { min-width: 15rem !important; }
392
+ .minwr-20 { min-width: 20rem !important; }
393
+ .minwr-25 { min-width: 25rem !important; }
394
+ .minwr-30 { min-width: 30rem !important; }
395
+ .minwr-35 { min-width: 35rem !important; }
396
+ .minwr-40 { min-width: 40rem !important; }
397
+ .minwr-45 { min-width: 45rem !important; }
398
+ .minwr-50 { min-width: 50rem !important; }
399
+
400
+ // Max-width (rem)
401
+ .maxwr-1 { max-width: 1rem !important; }
402
+ .maxwr-2 { max-width: 2rem !important; }
403
+ .maxwr-3 { max-width: 3rem !important; }
404
+ .maxwr-4 { max-width: 4rem !important; }
405
+ .maxwr-5 { max-width: 5rem !important; }
406
+ .maxwr-6 { max-width: 6rem !important; }
407
+ .maxwr-7 { max-width: 7rem !important; }
408
+ .maxwr-8 { max-width: 8rem !important; }
409
+ .maxwr-9 { max-width: 9rem !important; }
410
+ .maxwr-10 { max-width: 10rem !important; }
411
+ .maxwr-15 { max-width: 15rem !important; }
412
+ .maxwr-20 { max-width: 20rem !important; }
413
+ .maxwr-25 { max-width: 25rem !important; }
414
+ .maxwr-30 { max-width: 30rem !important; }
415
+ .maxwr-35 { max-width: 35rem !important; }
416
+ .maxwr-40 { max-width: 40rem !important; }
417
+ .maxwr-45 { max-width: 45rem !important; }
418
+ .maxwr-50 { max-width: 50rem !important; }
419
+
420
+ // Height (rem)
421
+ .hr-1 { height: 1rem !important; }
422
+ .hr-2 { height: 2rem !important; }
423
+ .hr-3 { height: 3rem !important; }
424
+ .hr-4 { height: 4rem !important; }
425
+ .hr-5 { height: 5rem !important; }
426
+ .hr-6 { height: 6rem !important; }
427
+ .hr-7 { height: 7rem !important; }
428
+ .hr-8 { height: 8rem !important; }
429
+ .hr-9 { height: 9rem !important; }
430
+ .hr-10 { height: 10rem !important; }
431
+ .hr-15 { height: 15rem !important; }
432
+ .hr-20 { height: 20rem !important; }
433
+ .hr-25 { height: 25rem !important; }
434
+ .hr-30 { height: 30rem !important; }
435
+ .hr-35 { height: 35rem !important; }
436
+ .hr-40 { height: 40rem !important; }
437
+ .hr-45 { height: 45rem !important; }
438
+ .hr-50 { height: 50rem !important; }
439
+
440
+ // Min-height (rem)
441
+ .minhr-1 { min-height: 1rem !important; }
442
+ .minhr-2 { min-height: 2rem !important; }
443
+ .minhr-3 { min-height: 3rem !important; }
444
+ .minhr-4 { min-height: 4rem !important; }
445
+ .minhr-5 { min-height: 5rem !important; }
446
+ .minhr-6 { min-height: 6rem !important; }
447
+ .minhr-7 { min-height: 7rem !important; }
448
+ .minhr-8 { min-height: 8rem !important; }
449
+ .minhr-9 { min-height: 9rem !important; }
450
+ .minhr-10 { min-height: 10rem !important; }
451
+ .minhr-15 { min-height: 15rem !important; }
452
+ .minhr-20 { min-height: 20rem !important; }
453
+ .minhr-25 { min-height: 25rem !important; }
454
+ .minhr-30 { min-height: 30rem !important; }
455
+ .minhr-35 { min-height: 35rem !important; }
456
+ .minhr-40 { min-height: 40rem !important; }
457
+ .minhr-45 { min-height: 45rem !important; }
458
+ .minhr-50 { min-height: 50rem !important; }
459
+ .minhr-60 { min-height: 60rem !important; }
460
+ .minhr-70 { min-height: 70rem !important; }
461
+ .minhr-80 { min-height: 80rem !important; }
462
+ .minhr-90 { min-height: 90rem !important; }
463
+ .minhr-100 { min-height: 100rem !important; }
464
+
465
+ // Max-height (rem)
466
+ .maxhr-1 { max-height: 1rem !important; }
467
+ .maxhr-2 { max-height: 2rem !important; }
468
+ .maxhr-3 { max-height: 3rem !important; }
469
+ .maxhr-4 { max-height: 4rem !important; }
470
+ .maxhr-5 { max-height: 5rem !important; }
471
+ .maxhr-6 { max-height: 6rem !important; }
472
+ .maxhr-7 { max-height: 7rem !important; }
473
+ .maxhr-8 { max-height: 8rem !important; }
474
+ .maxhr-9 { max-height: 9rem !important; }
475
+ .maxhr-10 { max-height: 10rem !important; }
476
+ .maxhr-15 { max-height: 15rem !important; }
477
+ .maxhr-20 { max-height: 20rem !important; }
478
+ .maxhr-25 { max-height: 25rem !important; }
479
+ .maxhr-30 { max-height: 30rem !important; }
480
+ .maxhr-35 { max-height: 35rem !important; }
481
+ .maxhr-40 { max-height: 40rem !important; }
482
+ .maxhr-45 { max-height: 45rem !important; }
483
+ .maxhr-50 { max-height: 50rem !important; }
484
+
485
+ // ============================================================================
486
+ // PERCENTAGE-BASED MIN/MAX UTILITIES
487
+ // Extends existing w-* and h-* utilities with min/max variants
488
+ // ============================================================================
489
+
490
+ // Min-width (percentage) - 5% increments
491
+ .minw-5 { min-width: 5% !important; }
492
+ .minw-10 { min-width: 10% !important; }
493
+ .minw-15 { min-width: 15% !important; }
494
+ .minw-20 { min-width: 20% !important; }
495
+ .minw-25 { min-width: 25% !important; }
496
+ .minw-30 { min-width: 30% !important; }
497
+ .minw-35 { min-width: 35% !important; }
498
+ .minw-40 { min-width: 40% !important; }
499
+ .minw-45 { min-width: 45% !important; }
500
+ .minw-50 { min-width: 50% !important; }
501
+ .minw-55 { min-width: 55% !important; }
502
+ .minw-60 { min-width: 60% !important; }
503
+ .minw-65 { min-width: 65% !important; }
504
+ .minw-70 { min-width: 70% !important; }
505
+ .minw-75 { min-width: 75% !important; }
506
+ .minw-80 { min-width: 80% !important; }
507
+ .minw-85 { min-width: 85% !important; }
508
+ .minw-90 { min-width: 90% !important; }
509
+ .minw-95 { min-width: 95% !important; }
510
+ .minw-100 { min-width: 100% !important; }
511
+ .minw-1-3 { min-width: 33.333333% !important; }
512
+ .minw-2-3 { min-width: 66.666667% !important; }
513
+
514
+ // Max-width (percentage) - 5% increments
515
+ .maxw-5 { max-width: 5% !important; }
516
+ .maxw-10 { max-width: 10% !important; }
517
+ .maxw-15 { max-width: 15% !important; }
518
+ .maxw-20 { max-width: 20% !important; }
519
+ .maxw-25 { max-width: 25% !important; }
520
+ .maxw-30 { max-width: 30% !important; }
521
+ .maxw-35 { max-width: 35% !important; }
522
+ .maxw-40 { max-width: 40% !important; }
523
+ .maxw-45 { max-width: 45% !important; }
524
+ .maxw-50 { max-width: 50% !important; }
525
+ .maxw-55 { max-width: 55% !important; }
526
+ .maxw-60 { max-width: 60% !important; }
527
+ .maxw-65 { max-width: 65% !important; }
528
+ .maxw-70 { max-width: 70% !important; }
529
+ .maxw-75 { max-width: 75% !important; }
530
+ .maxw-80 { max-width: 80% !important; }
531
+ .maxw-85 { max-width: 85% !important; }
532
+ .maxw-90 { max-width: 90% !important; }
533
+ .maxw-95 { max-width: 95% !important; }
534
+ .maxw-100 { max-width: 100% !important; }
535
+ .maxw-1-2 { max-width: 50% !important; }
536
+ .maxw-1-3 { max-width: 33.333333% !important; }
537
+ .maxw-2-3 { max-width: 66.666667% !important; }
538
+ .maxw-1-4 { max-width: 25% !important; }
539
+ .maxw-3-4 { max-width: 75% !important; }
540
+
541
+ // Min-height (percentage)
542
+ .minh-5 { min-height: 5% !important; }
543
+ .minh-10 { min-height: 10% !important; }
544
+ .minh-15 { min-height: 15% !important; }
545
+ .minh-20 { min-height: 20% !important; }
546
+ .minh-25 { min-height: 25% !important; }
547
+ .minh-30 { min-height: 30% !important; }
548
+ .minh-35 { min-height: 35% !important; }
549
+ .minh-40 { min-height: 40% !important; }
550
+ .minh-45 { min-height: 45% !important; }
551
+ .minh-50 { min-height: 50% !important; }
552
+ .minh-55 { min-height: 55% !important; }
553
+ .minh-60 { min-height: 60% !important; }
554
+ .minh-65 { min-height: 65% !important; }
555
+ .minh-70 { min-height: 70% !important; }
556
+ .minh-75 { min-height: 75% !important; }
557
+ .minh-80 { min-height: 80% !important; }
558
+ .minh-85 { min-height: 85% !important; }
559
+ .minh-90 { min-height: 90% !important; }
560
+ .minh-95 { min-height: 95% !important; }
561
+ .minh-100 { min-height: 100% !important; }
562
+ .minh-1-2 { min-height: 50% !important; }
563
+ .minh-1-3 { min-height: 33.333333% !important; }
564
+ .minh-2-3 { min-height: 66.666667% !important; }
565
+ .minh-1-4 { min-height: 25% !important; }
566
+ .minh-3-4 { min-height: 75% !important; }
567
+
568
+ // Max-height (percentage)
569
+ .maxh-5 { max-height: 5% !important; }
570
+ .maxh-10 { max-height: 10% !important; }
571
+ .maxh-15 { max-height: 15% !important; }
572
+ .maxh-20 { max-height: 20% !important; }
573
+ .maxh-25 { max-height: 25% !important; }
574
+ .maxh-30 { max-height: 30% !important; }
575
+ .maxh-35 { max-height: 35% !important; }
576
+ .maxh-40 { max-height: 40% !important; }
577
+ .maxh-45 { max-height: 45% !important; }
578
+ .maxh-50 { max-height: 50% !important; }
579
+ .maxh-55 { max-height: 55% !important; }
580
+ .maxh-60 { max-height: 60% !important; }
581
+ .maxh-65 { max-height: 65% !important; }
582
+ .maxh-70 { max-height: 70% !important; }
583
+ .maxh-75 { max-height: 75% !important; }
584
+ .maxh-80 { max-height: 80% !important; }
585
+ .maxh-85 { max-height: 85% !important; }
586
+ .maxh-90 { max-height: 90% !important; }
587
+ .maxh-95 { max-height: 95% !important; }
588
+ .maxh-100 { max-height: 100% !important; }
589
+ .maxh-1-2 { max-height: 50% !important; }
590
+ .maxh-1-3 { max-height: 33.333333% !important; }
591
+ .maxh-2-3 { max-height: 66.666667% !important; }
592
+ .maxh-1-4 { max-height: 25% !important; }
593
+ .maxh-3-4 { max-height: 75% !important; }
594
+
595
+ // Position utilities
596
+ .position-static {
597
+ position: static !important;
598
+ }
599
+
600
+ .position-relative {
601
+ position: relative !important;
602
+ }
603
+
604
+ .position-absolute {
605
+ position: absolute !important;
606
+ }
607
+
608
+ .position-fixed {
609
+ position: fixed !important;
610
+ }
611
+
612
+ .position-sticky {
613
+ position: sticky !important;
614
+ }
615
+
616
+ // Border utilities
617
+ .border {
618
+ border: 1px solid var(--border-color) !important;
619
+ }
620
+
621
+ .border-top {
622
+ border-top: 1px solid var(--border-color) !important;
623
+ }
624
+
625
+ .border-right {
626
+ border-right: 1px solid var(--border-color) !important;
627
+ }
628
+
629
+ .border-bottom {
630
+ border-bottom: 1px solid var(--border-color) !important;
631
+ }
632
+
633
+ .border-left {
634
+ border-left: 1px solid var(--border-color) !important;
635
+ }
636
+
637
+ .border-0 {
638
+ border: 0 !important;
639
+ }
640
+
641
+ .border-top-0 {
642
+ border-top: 0 !important;
643
+ }
644
+
645
+ .border-right-0 {
646
+ border-right: 0 !important;
647
+ }
648
+
649
+ .border-bottom-0 {
650
+ border-bottom: 0 !important;
651
+ }
652
+
653
+ .border-left-0 {
654
+ border-left: 0 !important;
655
+ }
656
+
657
+ // Border style utilities
658
+ .border-solid { border-style: solid !important; }
659
+ .border-dashed { border-style: dashed !important; }
660
+ .border-dotted { border-style: dotted !important; }
661
+ .border-none { border-style: none !important; }
662
+
663
+ // Text color utilities (semantic colors)
664
+ .text-primary { color: var(--pa-accent) !important; }
665
+ .text-success { color: var(--pa-success-text) !important; }
666
+ .text-danger { color: var(--pa-danger-text) !important; }
667
+ .text-warning { color: var(--pa-warning-text) !important; }
668
+ .text-info { color: var(--pa-info-text) !important; }
669
+
670
+ // Text color utilities (theme custom colors 1-9)
671
+ .text-color-1 { color: var(--pa-color-1) !important; }
672
+ .text-color-2 { color: var(--pa-color-2) !important; }
673
+ .text-color-3 { color: var(--pa-color-3) !important; }
674
+ .text-color-4 { color: var(--pa-color-4) !important; }
675
+ .text-color-5 { color: var(--pa-color-5) !important; }
676
+ .text-color-6 { color: var(--pa-color-6) !important; }
677
+ .text-color-7 { color: var(--pa-color-7) !important; }
678
+ .text-color-8 { color: var(--pa-color-8) !important; }
679
+ .text-color-9 { color: var(--pa-color-9) !important; }
680
+
681
+ // Rounded utilities
682
+ .rounded {
683
+ border-radius: var(--border-radius) !important;
684
+ }
685
+
686
+ .rounded-lg {
687
+ border-radius: var(--border-radius-lg) !important;
688
+ }
689
+
690
+ .rounded-circle {
691
+ border-radius: 50% !important;
692
+ }
693
+
694
+ .rounded-0 {
695
+ border-radius: 0 !important;
696
+ }
697
+
698
+ .rounded-top {
699
+ border-top-left-radius: var(--border-radius) !important;
700
+ border-top-right-radius: var(--border-radius) !important;
701
+ }
702
+
703
+ .rounded-bottom {
704
+ border-bottom-left-radius: var(--border-radius) !important;
705
+ border-bottom-right-radius: var(--border-radius) !important;
706
+ }
707
+
708
+ .rounded-left {
709
+ border-top-left-radius: var(--border-radius) !important;
710
+ border-bottom-left-radius: var(--border-radius) !important;
711
+ }
712
+
713
+ .rounded-right {
714
+ border-top-right-radius: var(--border-radius) !important;
715
+ border-bottom-right-radius: var(--border-radius) !important;
716
+ }
717
+
718
+ // Shadow utilities
719
+ .shadow-none {
720
+ box-shadow: none !important;
721
+ }
722
+
723
+ .shadow-sm {
724
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) !important;
725
+ }
726
+
727
+ .shadow {
728
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
729
+ }
730
+
731
+ .shadow-lg {
732
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
733
+ }
734
+
735
+ // ============================================================================
736
+ // Container queries
737
+ // ============================================================================
738
+
739
+ .pa-cq {
740
+ container-type: inline-size;
741
741
  }