@keenmate/pure-admin-theme-express 1.0.0-rc05 → 1.0.0
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/dist/express.css +725 -39
- package/package.json +3 -3
- package/src/scss/express.scss +19 -0
package/dist/express.css
CHANGED
|
@@ -182,18 +182,17 @@ label {
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
*::-webkit-scrollbar-thumb {
|
|
185
|
-
background:
|
|
185
|
+
background: var(--pa-border-color);
|
|
186
186
|
border-radius: 3px;
|
|
187
187
|
border: 1px solid var(--pa-primary-bg);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
*::-webkit-scrollbar-thumb:hover {
|
|
191
|
-
background:
|
|
192
|
-
border-color: rgba(212, 5, 17, 0.12);
|
|
191
|
+
background: var(--pa-accent);
|
|
193
192
|
}
|
|
194
193
|
|
|
195
194
|
*::-webkit-scrollbar-thumb:active {
|
|
196
|
-
background:
|
|
195
|
+
background: var(--pa-accent-hover);
|
|
197
196
|
}
|
|
198
197
|
|
|
199
198
|
*::-webkit-scrollbar-corner {
|
|
@@ -279,6 +278,28 @@ body.pa-container-2xl .pa-navbar {
|
|
|
279
278
|
gap: 1.6rem;
|
|
280
279
|
}
|
|
281
280
|
|
|
281
|
+
.pa-header__left {
|
|
282
|
+
display: flex;
|
|
283
|
+
align-items: center;
|
|
284
|
+
gap: 1.6rem;
|
|
285
|
+
flex-shrink: 0;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.pa-header__center {
|
|
289
|
+
flex: 1;
|
|
290
|
+
min-width: 0;
|
|
291
|
+
display: flex;
|
|
292
|
+
align-items: center;
|
|
293
|
+
justify-content: center;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.pa-header__right {
|
|
297
|
+
display: flex;
|
|
298
|
+
align-items: center;
|
|
299
|
+
gap: 1.6rem;
|
|
300
|
+
flex-shrink: 0;
|
|
301
|
+
}
|
|
302
|
+
|
|
282
303
|
/* ========================================
|
|
283
304
|
Layout Container
|
|
284
305
|
Main layout wrapper, content areas, sticky/scroll modes
|
|
@@ -364,28 +385,128 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
364
385
|
}
|
|
365
386
|
|
|
366
387
|
.pa-layout__footer {
|
|
367
|
-
height: 4.8rem;
|
|
388
|
+
min-height: 4.8rem;
|
|
368
389
|
background-color: var(--pa-footer-bg);
|
|
369
390
|
border-top: 1px solid var(--pa-footer-border-color);
|
|
370
391
|
display: flex;
|
|
371
392
|
align-items: center;
|
|
372
|
-
padding: 0 1.6rem;
|
|
393
|
+
padding: 0.4rem 1.6rem;
|
|
394
|
+
flex-shrink: 0;
|
|
395
|
+
gap: 1.6rem;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.pa-footer__left {
|
|
399
|
+
display: flex;
|
|
400
|
+
align-items: center;
|
|
401
|
+
gap: 1.6rem;
|
|
402
|
+
flex-shrink: 0;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.pa-footer__center {
|
|
406
|
+
flex: 1;
|
|
407
|
+
min-width: 0;
|
|
408
|
+
display: flex;
|
|
409
|
+
align-items: center;
|
|
410
|
+
justify-content: center;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.pa-footer__right {
|
|
414
|
+
display: flex;
|
|
415
|
+
align-items: center;
|
|
416
|
+
gap: 1.6rem;
|
|
373
417
|
flex-shrink: 0;
|
|
374
418
|
}
|
|
375
419
|
|
|
420
|
+
.pa-footer__right--vertical {
|
|
421
|
+
flex-direction: column;
|
|
422
|
+
align-items: flex-end;
|
|
423
|
+
gap: 0.4rem;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@media (max-width: 768px) {
|
|
427
|
+
.pa-layout__footer {
|
|
428
|
+
flex-wrap: wrap;
|
|
429
|
+
min-height: auto;
|
|
430
|
+
padding: 0.8rem 1.6rem;
|
|
431
|
+
}
|
|
432
|
+
.pa-footer__left,
|
|
433
|
+
.pa-footer__center,
|
|
434
|
+
.pa-footer__right {
|
|
435
|
+
flex-shrink: 1;
|
|
436
|
+
min-width: 0;
|
|
437
|
+
}
|
|
438
|
+
.pa-footer__left {
|
|
439
|
+
flex: 1 1 auto;
|
|
440
|
+
}
|
|
441
|
+
.pa-footer__center {
|
|
442
|
+
display: none;
|
|
443
|
+
}
|
|
444
|
+
.pa-footer__right {
|
|
445
|
+
flex: 0 1 auto;
|
|
446
|
+
}
|
|
447
|
+
.pa-footer__right--vertical {
|
|
448
|
+
align-items: flex-end;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
376
451
|
/* ========================================
|
|
377
452
|
Sidebar Component
|
|
378
453
|
Sidebar navigation with nested submenus
|
|
379
454
|
======================================== */
|
|
455
|
+
:root {
|
|
456
|
+
--pa-sidebar-width: 29rem;
|
|
457
|
+
--pa-sidebar-min-width: 18rem;
|
|
458
|
+
--pa-sidebar-max-width: 50rem;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
:where(.pa-layout__sidebar) {
|
|
462
|
+
width: var(--pa-sidebar-width);
|
|
463
|
+
}
|
|
464
|
+
|
|
380
465
|
.pa-layout__sidebar {
|
|
381
|
-
width: 29rem;
|
|
382
466
|
background-color: var(--pa-sidebar-bg);
|
|
383
467
|
border-right: 1px solid var(--pa-border-color);
|
|
384
468
|
flex-shrink: 0;
|
|
469
|
+
position: relative;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.pa-sidebar-resize {
|
|
473
|
+
position: absolute;
|
|
474
|
+
top: 0;
|
|
475
|
+
right: 0;
|
|
476
|
+
width: 6px;
|
|
477
|
+
height: 100%;
|
|
478
|
+
cursor: ew-resize;
|
|
479
|
+
z-index: 100;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.pa-sidebar-resize::after {
|
|
483
|
+
content: "";
|
|
484
|
+
position: absolute;
|
|
485
|
+
top: 0;
|
|
486
|
+
left: 50%;
|
|
487
|
+
transform: translateX(-50%);
|
|
488
|
+
width: 2px;
|
|
489
|
+
height: 100%;
|
|
490
|
+
background-color: transparent;
|
|
491
|
+
transition: background-color 0.1s ease-out;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.pa-sidebar-resize:hover::after, .pa-sidebar-resize--active::after {
|
|
495
|
+
background-color: var(--pa-accent);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
body.pa-sidebar-resizing {
|
|
499
|
+
cursor: ew-resize !important;
|
|
500
|
+
user-select: none;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
body.pa-sidebar-resizing * {
|
|
504
|
+
cursor: ew-resize !important;
|
|
385
505
|
}
|
|
386
506
|
|
|
387
507
|
body.pa-layout--sticky .pa-layout__sidebar {
|
|
388
508
|
overflow-y: auto;
|
|
509
|
+
overflow-y: overlay;
|
|
389
510
|
overflow-x: visible;
|
|
390
511
|
}
|
|
391
512
|
|
|
@@ -815,14 +936,6 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
815
936
|
background-color: var(--pa-accent-hover);
|
|
816
937
|
}
|
|
817
938
|
|
|
818
|
-
.pa-header__nav--left {
|
|
819
|
-
margin-right: auto;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.pa-header__nav--right {
|
|
823
|
-
margin-left: auto;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
939
|
.pa-header__nav-item--has-dropdown {
|
|
827
940
|
position: static;
|
|
828
941
|
}
|
|
@@ -2518,6 +2631,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2518
2631
|
padding-bottom: 0;
|
|
2519
2632
|
}
|
|
2520
2633
|
|
|
2634
|
+
@media (max-width: 768px) {
|
|
2635
|
+
.pa-col-5 {
|
|
2636
|
+
flex: 0 0 100%;
|
|
2637
|
+
max-width: 100%;
|
|
2638
|
+
}
|
|
2639
|
+
.pa-col-10 {
|
|
2640
|
+
flex: 0 0 100%;
|
|
2641
|
+
max-width: 100%;
|
|
2642
|
+
}
|
|
2643
|
+
.pa-col-15 {
|
|
2644
|
+
flex: 0 0 100%;
|
|
2645
|
+
max-width: 100%;
|
|
2646
|
+
}
|
|
2647
|
+
.pa-col-20 {
|
|
2648
|
+
flex: 0 0 100%;
|
|
2649
|
+
max-width: 100%;
|
|
2650
|
+
}
|
|
2651
|
+
.pa-col-25 {
|
|
2652
|
+
flex: 0 0 100%;
|
|
2653
|
+
max-width: 100%;
|
|
2654
|
+
}
|
|
2655
|
+
.pa-col-30 {
|
|
2656
|
+
flex: 0 0 100%;
|
|
2657
|
+
max-width: 100%;
|
|
2658
|
+
}
|
|
2659
|
+
.pa-col-35 {
|
|
2660
|
+
flex: 0 0 100%;
|
|
2661
|
+
max-width: 100%;
|
|
2662
|
+
}
|
|
2663
|
+
.pa-col-40 {
|
|
2664
|
+
flex: 0 0 100%;
|
|
2665
|
+
max-width: 100%;
|
|
2666
|
+
}
|
|
2667
|
+
.pa-col-45 {
|
|
2668
|
+
flex: 0 0 100%;
|
|
2669
|
+
max-width: 100%;
|
|
2670
|
+
}
|
|
2671
|
+
.pa-col-50 {
|
|
2672
|
+
flex: 0 0 100%;
|
|
2673
|
+
max-width: 100%;
|
|
2674
|
+
}
|
|
2675
|
+
.pa-col-55 {
|
|
2676
|
+
flex: 0 0 100%;
|
|
2677
|
+
max-width: 100%;
|
|
2678
|
+
}
|
|
2679
|
+
.pa-col-60 {
|
|
2680
|
+
flex: 0 0 100%;
|
|
2681
|
+
max-width: 100%;
|
|
2682
|
+
}
|
|
2683
|
+
.pa-col-65 {
|
|
2684
|
+
flex: 0 0 100%;
|
|
2685
|
+
max-width: 100%;
|
|
2686
|
+
}
|
|
2687
|
+
.pa-col-70 {
|
|
2688
|
+
flex: 0 0 100%;
|
|
2689
|
+
max-width: 100%;
|
|
2690
|
+
}
|
|
2691
|
+
.pa-col-75 {
|
|
2692
|
+
flex: 0 0 100%;
|
|
2693
|
+
max-width: 100%;
|
|
2694
|
+
}
|
|
2695
|
+
.pa-col-80 {
|
|
2696
|
+
flex: 0 0 100%;
|
|
2697
|
+
max-width: 100%;
|
|
2698
|
+
}
|
|
2699
|
+
.pa-col-85 {
|
|
2700
|
+
flex: 0 0 100%;
|
|
2701
|
+
max-width: 100%;
|
|
2702
|
+
}
|
|
2703
|
+
.pa-col-90 {
|
|
2704
|
+
flex: 0 0 100%;
|
|
2705
|
+
max-width: 100%;
|
|
2706
|
+
}
|
|
2707
|
+
.pa-col-95 {
|
|
2708
|
+
flex: 0 0 100%;
|
|
2709
|
+
max-width: 100%;
|
|
2710
|
+
}
|
|
2711
|
+
.pa-col-1-2 {
|
|
2712
|
+
flex: 0 0 100%;
|
|
2713
|
+
max-width: 100%;
|
|
2714
|
+
}
|
|
2715
|
+
.pa-col-1-3 {
|
|
2716
|
+
flex: 0 0 100%;
|
|
2717
|
+
max-width: 100%;
|
|
2718
|
+
}
|
|
2719
|
+
.pa-col-2-3 {
|
|
2720
|
+
flex: 0 0 100%;
|
|
2721
|
+
max-width: 100%;
|
|
2722
|
+
}
|
|
2723
|
+
.pa-col-1-4 {
|
|
2724
|
+
flex: 0 0 100%;
|
|
2725
|
+
max-width: 100%;
|
|
2726
|
+
}
|
|
2727
|
+
.pa-col-3-4 {
|
|
2728
|
+
flex: 0 0 100%;
|
|
2729
|
+
max-width: 100%;
|
|
2730
|
+
}
|
|
2731
|
+
.pa-col-1-5 {
|
|
2732
|
+
flex: 0 0 100%;
|
|
2733
|
+
max-width: 100%;
|
|
2734
|
+
}
|
|
2735
|
+
.pa-col-2-5 {
|
|
2736
|
+
flex: 0 0 100%;
|
|
2737
|
+
max-width: 100%;
|
|
2738
|
+
}
|
|
2739
|
+
.pa-col-3-5 {
|
|
2740
|
+
flex: 0 0 100%;
|
|
2741
|
+
max-width: 100%;
|
|
2742
|
+
}
|
|
2743
|
+
.pa-col-4-5 {
|
|
2744
|
+
flex: 0 0 100%;
|
|
2745
|
+
max-width: 100%;
|
|
2746
|
+
}
|
|
2747
|
+
.pa-col-1-6 {
|
|
2748
|
+
flex: 0 0 100%;
|
|
2749
|
+
max-width: 100%;
|
|
2750
|
+
}
|
|
2751
|
+
.pa-col-5-6 {
|
|
2752
|
+
flex: 0 0 100%;
|
|
2753
|
+
max-width: 100%;
|
|
2754
|
+
}
|
|
2755
|
+
.pa-col-1-12 {
|
|
2756
|
+
flex: 0 0 100%;
|
|
2757
|
+
max-width: 100%;
|
|
2758
|
+
}
|
|
2759
|
+
.pa-col-5-12 {
|
|
2760
|
+
flex: 0 0 100%;
|
|
2761
|
+
max-width: 100%;
|
|
2762
|
+
}
|
|
2763
|
+
.pa-col-7-12 {
|
|
2764
|
+
flex: 0 0 100%;
|
|
2765
|
+
max-width: 100%;
|
|
2766
|
+
}
|
|
2767
|
+
.pa-col-11-12 {
|
|
2768
|
+
flex: 0 0 100%;
|
|
2769
|
+
max-width: 100%;
|
|
2770
|
+
}
|
|
2771
|
+
}
|
|
2521
2772
|
/* ========================================
|
|
2522
2773
|
Card Components
|
|
2523
2774
|
Cards with headers, bodies, footers, variants, and card sections
|
|
@@ -3105,6 +3356,7 @@ a.pa-card p {
|
|
|
3105
3356
|
border-radius: 8px;
|
|
3106
3357
|
padding: 1.6rem 1rem;
|
|
3107
3358
|
background-color: var(--pa-card-bg);
|
|
3359
|
+
margin-bottom: 1.6rem;
|
|
3108
3360
|
}
|
|
3109
3361
|
|
|
3110
3362
|
.pa-tabs__container--bordered .pa-tabs {
|
|
@@ -3124,6 +3376,7 @@ a.pa-card p {
|
|
|
3124
3376
|
border-radius: 8px;
|
|
3125
3377
|
background-color: var(--pa-card-bg);
|
|
3126
3378
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
3379
|
+
margin-bottom: 1.6rem;
|
|
3127
3380
|
}
|
|
3128
3381
|
|
|
3129
3382
|
.pa-tabs__container--card .pa-tabs {
|
|
@@ -3249,6 +3502,7 @@ a.pa-card p {
|
|
|
3249
3502
|
border-radius: 8px;
|
|
3250
3503
|
padding: 1.6rem 1rem;
|
|
3251
3504
|
background-color: var(--pa-card-bg);
|
|
3505
|
+
margin-bottom: 1.6rem;
|
|
3252
3506
|
}
|
|
3253
3507
|
|
|
3254
3508
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
|
|
@@ -6444,10 +6698,11 @@ a.pa-card p {
|
|
|
6444
6698
|
.pa-input-group__prepend, .pa-input-group__append {
|
|
6445
6699
|
display: flex;
|
|
6446
6700
|
align-items: center;
|
|
6447
|
-
|
|
6701
|
+
height: 3.5rem;
|
|
6702
|
+
line-height: 3.5rem;
|
|
6703
|
+
padding: 0 0.8rem;
|
|
6448
6704
|
border: 1px solid var(--pa-border-color);
|
|
6449
6705
|
font-size: 1.4rem;
|
|
6450
|
-
line-height: 1;
|
|
6451
6706
|
white-space: nowrap;
|
|
6452
6707
|
border-radius: 0;
|
|
6453
6708
|
}
|
|
@@ -6482,32 +6737,29 @@ a.pa-card p {
|
|
|
6482
6737
|
border-left: 1px solid var(--pa-border-color);
|
|
6483
6738
|
}
|
|
6484
6739
|
|
|
6485
|
-
.pa-input-group:focus
|
|
6740
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
|
|
6486
6741
|
border-right: 1px solid var(--pa-input-focus-border-color);
|
|
6487
6742
|
}
|
|
6488
6743
|
|
|
6489
|
-
.pa-input-group:focus
|
|
6744
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
|
|
6490
6745
|
border-right: none;
|
|
6491
6746
|
}
|
|
6492
6747
|
|
|
6493
|
-
.pa-input-group:focus
|
|
6748
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append {
|
|
6494
6749
|
border-left: 1px solid var(--pa-input-focus-border-color);
|
|
6495
6750
|
}
|
|
6496
6751
|
|
|
6497
|
-
.pa-input-group:focus
|
|
6752
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
|
|
6498
6753
|
border-left: 1px solid var(--pa-border-color);
|
|
6499
6754
|
}
|
|
6500
6755
|
|
|
6501
6756
|
.pa-input-group__button {
|
|
6502
6757
|
border-radius: 0;
|
|
6503
|
-
border-color: var(--pa-border-color);
|
|
6504
|
-
border-left: none;
|
|
6505
6758
|
}
|
|
6506
6759
|
|
|
6507
6760
|
.pa-input-group__button:first-child {
|
|
6508
6761
|
border-top-left-radius: 4px;
|
|
6509
6762
|
border-bottom-left-radius: 4px;
|
|
6510
|
-
border-left: 1px solid var(--pa-border-color);
|
|
6511
6763
|
}
|
|
6512
6764
|
|
|
6513
6765
|
.pa-input-group__button:last-child {
|
|
@@ -6517,25 +6769,29 @@ a.pa-card p {
|
|
|
6517
6769
|
|
|
6518
6770
|
.pa-input-group--xs .pa-input-group__prepend,
|
|
6519
6771
|
.pa-input-group--xs .pa-input-group__append {
|
|
6520
|
-
|
|
6772
|
+
height: 3.1rem;
|
|
6773
|
+
line-height: 3.1rem;
|
|
6521
6774
|
font-size: 1.2rem;
|
|
6522
6775
|
}
|
|
6523
6776
|
|
|
6524
6777
|
.pa-input-group--sm .pa-input-group__prepend,
|
|
6525
6778
|
.pa-input-group--sm .pa-input-group__append {
|
|
6526
|
-
|
|
6779
|
+
height: 3.3rem;
|
|
6780
|
+
line-height: 3.3rem;
|
|
6527
6781
|
font-size: 1.4rem;
|
|
6528
6782
|
}
|
|
6529
6783
|
|
|
6530
6784
|
.pa-input-group--lg .pa-input-group__prepend,
|
|
6531
6785
|
.pa-input-group--lg .pa-input-group__append {
|
|
6532
|
-
|
|
6786
|
+
height: 3.8rem;
|
|
6787
|
+
line-height: 3.8rem;
|
|
6533
6788
|
font-size: 1.6rem;
|
|
6534
6789
|
}
|
|
6535
6790
|
|
|
6536
6791
|
.pa-input-group--xl .pa-input-group__prepend,
|
|
6537
6792
|
.pa-input-group--xl .pa-input-group__append {
|
|
6538
|
-
|
|
6793
|
+
height: 4.1rem;
|
|
6794
|
+
line-height: 4.1rem;
|
|
6539
6795
|
font-size: 1.8rem;
|
|
6540
6796
|
}
|
|
6541
6797
|
|
|
@@ -9197,6 +9453,16 @@ code {
|
|
|
9197
9453
|
Profile Panel Components
|
|
9198
9454
|
Profile panel and header button
|
|
9199
9455
|
======================================== */
|
|
9456
|
+
:root {
|
|
9457
|
+
--pa-profile-panel-width: 20vw;
|
|
9458
|
+
--pa-profile-panel-max-width: 48rem;
|
|
9459
|
+
}
|
|
9460
|
+
|
|
9461
|
+
:where(.pa-profile-panel__content) {
|
|
9462
|
+
width: var(--pa-profile-panel-width);
|
|
9463
|
+
max-width: var(--pa-profile-panel-max-width);
|
|
9464
|
+
}
|
|
9465
|
+
|
|
9200
9466
|
.pa-header__profile-btn {
|
|
9201
9467
|
display: flex;
|
|
9202
9468
|
align-items: center;
|
|
@@ -9260,8 +9526,6 @@ code {
|
|
|
9260
9526
|
position: absolute;
|
|
9261
9527
|
top: 0;
|
|
9262
9528
|
right: 0;
|
|
9263
|
-
width: 20vw;
|
|
9264
|
-
max-width: 48rem;
|
|
9265
9529
|
height: 100vh;
|
|
9266
9530
|
background-color: var(--pa-card-bg);
|
|
9267
9531
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
|
|
@@ -11472,6 +11736,60 @@ code {
|
|
|
11472
11736
|
right: -1.6rem;
|
|
11473
11737
|
}
|
|
11474
11738
|
}
|
|
11739
|
+
.pa-notifications__list--page {
|
|
11740
|
+
max-height: none;
|
|
11741
|
+
overflow: visible;
|
|
11742
|
+
}
|
|
11743
|
+
|
|
11744
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11745
|
+
padding: 1.6rem 2.4rem;
|
|
11746
|
+
}
|
|
11747
|
+
|
|
11748
|
+
.pa-notifications__list--page .pa-notifications__icon-wrapper {
|
|
11749
|
+
width: 4rem;
|
|
11750
|
+
height: 4rem;
|
|
11751
|
+
font-size: 1.8rem;
|
|
11752
|
+
}
|
|
11753
|
+
|
|
11754
|
+
.pa-notifications__list--page .pa-notifications__content h4 {
|
|
11755
|
+
font-size: 1.4rem;
|
|
11756
|
+
margin-bottom: 0.4rem;
|
|
11757
|
+
}
|
|
11758
|
+
|
|
11759
|
+
.pa-notifications__list--page .pa-notifications__content p {
|
|
11760
|
+
font-size: 1.4rem;
|
|
11761
|
+
-webkit-line-clamp: 3;
|
|
11762
|
+
}
|
|
11763
|
+
|
|
11764
|
+
.pa-notifications__list--page .pa-notifications__time {
|
|
11765
|
+
font-size: 1.2rem;
|
|
11766
|
+
}
|
|
11767
|
+
|
|
11768
|
+
.pa-notifications__actions {
|
|
11769
|
+
display: flex;
|
|
11770
|
+
gap: 0.4rem;
|
|
11771
|
+
flex-shrink: 0;
|
|
11772
|
+
opacity: 0;
|
|
11773
|
+
transition: opacity 0.1s ease-out;
|
|
11774
|
+
}
|
|
11775
|
+
|
|
11776
|
+
.pa-notifications__item:hover .pa-notifications__actions {
|
|
11777
|
+
opacity: 1;
|
|
11778
|
+
}
|
|
11779
|
+
|
|
11780
|
+
@media (max-width: 768px) {
|
|
11781
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11782
|
+
flex-wrap: wrap;
|
|
11783
|
+
}
|
|
11784
|
+
.pa-notifications__list--page .pa-notifications__actions {
|
|
11785
|
+
opacity: 1;
|
|
11786
|
+
width: 100%;
|
|
11787
|
+
justify-content: flex-end;
|
|
11788
|
+
margin-top: 0.8rem;
|
|
11789
|
+
padding-top: 0.8rem;
|
|
11790
|
+
border-top: 1px solid var(--pa-border-color);
|
|
11791
|
+
}
|
|
11792
|
+
}
|
|
11475
11793
|
/* ========================================
|
|
11476
11794
|
Popconfirm Component
|
|
11477
11795
|
Small confirmation dialog anchored to trigger button
|
|
@@ -11963,6 +12281,21 @@ html.font-size-4xl {
|
|
|
11963
12281
|
overflow: visible;
|
|
11964
12282
|
}
|
|
11965
12283
|
|
|
12284
|
+
.overflow-overlay {
|
|
12285
|
+
overflow: auto;
|
|
12286
|
+
overflow: overlay;
|
|
12287
|
+
}
|
|
12288
|
+
|
|
12289
|
+
.overflow-y-overlay {
|
|
12290
|
+
overflow-y: auto;
|
|
12291
|
+
overflow-y: overlay;
|
|
12292
|
+
}
|
|
12293
|
+
|
|
12294
|
+
.overflow-x-overlay {
|
|
12295
|
+
overflow-x: auto;
|
|
12296
|
+
overflow-x: overlay;
|
|
12297
|
+
}
|
|
12298
|
+
|
|
11966
12299
|
.cursor-pointer {
|
|
11967
12300
|
cursor: pointer;
|
|
11968
12301
|
}
|
|
@@ -12183,6 +12516,26 @@ html.font-size-4xl {
|
|
|
12183
12516
|
column-gap: 2.4rem;
|
|
12184
12517
|
}
|
|
12185
12518
|
|
|
12519
|
+
.self-start {
|
|
12520
|
+
align-self: flex-start;
|
|
12521
|
+
}
|
|
12522
|
+
|
|
12523
|
+
.self-center {
|
|
12524
|
+
align-self: center;
|
|
12525
|
+
}
|
|
12526
|
+
|
|
12527
|
+
.self-end {
|
|
12528
|
+
align-self: flex-end;
|
|
12529
|
+
}
|
|
12530
|
+
|
|
12531
|
+
.self-stretch {
|
|
12532
|
+
align-self: stretch;
|
|
12533
|
+
}
|
|
12534
|
+
|
|
12535
|
+
.self-baseline {
|
|
12536
|
+
align-self: baseline;
|
|
12537
|
+
}
|
|
12538
|
+
|
|
12186
12539
|
.text-2xs {
|
|
12187
12540
|
font-size: 1rem;
|
|
12188
12541
|
}
|
|
@@ -12223,6 +12576,12 @@ html.font-size-4xl {
|
|
|
12223
12576
|
font-size: 3.2rem;
|
|
12224
12577
|
}
|
|
12225
12578
|
|
|
12579
|
+
.text-truncate {
|
|
12580
|
+
overflow: hidden;
|
|
12581
|
+
text-overflow: ellipsis;
|
|
12582
|
+
white-space: nowrap;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12226
12585
|
.component-showcase {
|
|
12227
12586
|
display: flex;
|
|
12228
12587
|
flex-wrap: wrap;
|
|
@@ -12266,6 +12625,114 @@ html.font-size-4xl {
|
|
|
12266
12625
|
align-items: flex-start;
|
|
12267
12626
|
}
|
|
12268
12627
|
|
|
12628
|
+
.pa-bg-color-1 {
|
|
12629
|
+
background-color: var(--pa-color-1);
|
|
12630
|
+
}
|
|
12631
|
+
|
|
12632
|
+
.pa-text-color-1 {
|
|
12633
|
+
color: var(--pa-color-1);
|
|
12634
|
+
}
|
|
12635
|
+
|
|
12636
|
+
.pa-border-color-1 {
|
|
12637
|
+
border-color: var(--pa-color-1);
|
|
12638
|
+
}
|
|
12639
|
+
|
|
12640
|
+
.pa-bg-color-2 {
|
|
12641
|
+
background-color: var(--pa-color-2);
|
|
12642
|
+
}
|
|
12643
|
+
|
|
12644
|
+
.pa-text-color-2 {
|
|
12645
|
+
color: var(--pa-color-2);
|
|
12646
|
+
}
|
|
12647
|
+
|
|
12648
|
+
.pa-border-color-2 {
|
|
12649
|
+
border-color: var(--pa-color-2);
|
|
12650
|
+
}
|
|
12651
|
+
|
|
12652
|
+
.pa-bg-color-3 {
|
|
12653
|
+
background-color: var(--pa-color-3);
|
|
12654
|
+
}
|
|
12655
|
+
|
|
12656
|
+
.pa-text-color-3 {
|
|
12657
|
+
color: var(--pa-color-3);
|
|
12658
|
+
}
|
|
12659
|
+
|
|
12660
|
+
.pa-border-color-3 {
|
|
12661
|
+
border-color: var(--pa-color-3);
|
|
12662
|
+
}
|
|
12663
|
+
|
|
12664
|
+
.pa-bg-color-4 {
|
|
12665
|
+
background-color: var(--pa-color-4);
|
|
12666
|
+
}
|
|
12667
|
+
|
|
12668
|
+
.pa-text-color-4 {
|
|
12669
|
+
color: var(--pa-color-4);
|
|
12670
|
+
}
|
|
12671
|
+
|
|
12672
|
+
.pa-border-color-4 {
|
|
12673
|
+
border-color: var(--pa-color-4);
|
|
12674
|
+
}
|
|
12675
|
+
|
|
12676
|
+
.pa-bg-color-5 {
|
|
12677
|
+
background-color: var(--pa-color-5);
|
|
12678
|
+
}
|
|
12679
|
+
|
|
12680
|
+
.pa-text-color-5 {
|
|
12681
|
+
color: var(--pa-color-5);
|
|
12682
|
+
}
|
|
12683
|
+
|
|
12684
|
+
.pa-border-color-5 {
|
|
12685
|
+
border-color: var(--pa-color-5);
|
|
12686
|
+
}
|
|
12687
|
+
|
|
12688
|
+
.pa-bg-color-6 {
|
|
12689
|
+
background-color: var(--pa-color-6);
|
|
12690
|
+
}
|
|
12691
|
+
|
|
12692
|
+
.pa-text-color-6 {
|
|
12693
|
+
color: var(--pa-color-6);
|
|
12694
|
+
}
|
|
12695
|
+
|
|
12696
|
+
.pa-border-color-6 {
|
|
12697
|
+
border-color: var(--pa-color-6);
|
|
12698
|
+
}
|
|
12699
|
+
|
|
12700
|
+
.pa-bg-color-7 {
|
|
12701
|
+
background-color: var(--pa-color-7);
|
|
12702
|
+
}
|
|
12703
|
+
|
|
12704
|
+
.pa-text-color-7 {
|
|
12705
|
+
color: var(--pa-color-7);
|
|
12706
|
+
}
|
|
12707
|
+
|
|
12708
|
+
.pa-border-color-7 {
|
|
12709
|
+
border-color: var(--pa-color-7);
|
|
12710
|
+
}
|
|
12711
|
+
|
|
12712
|
+
.pa-bg-color-8 {
|
|
12713
|
+
background-color: var(--pa-color-8);
|
|
12714
|
+
}
|
|
12715
|
+
|
|
12716
|
+
.pa-text-color-8 {
|
|
12717
|
+
color: var(--pa-color-8);
|
|
12718
|
+
}
|
|
12719
|
+
|
|
12720
|
+
.pa-border-color-8 {
|
|
12721
|
+
border-color: var(--pa-color-8);
|
|
12722
|
+
}
|
|
12723
|
+
|
|
12724
|
+
.pa-bg-color-9 {
|
|
12725
|
+
background-color: var(--pa-color-9);
|
|
12726
|
+
}
|
|
12727
|
+
|
|
12728
|
+
.pa-text-color-9 {
|
|
12729
|
+
color: var(--pa-color-9);
|
|
12730
|
+
}
|
|
12731
|
+
|
|
12732
|
+
.pa-border-color-9 {
|
|
12733
|
+
border-color: var(--pa-color-9);
|
|
12734
|
+
}
|
|
12735
|
+
|
|
12269
12736
|
.m-0 {
|
|
12270
12737
|
margin: 0 !important;
|
|
12271
12738
|
}
|
|
@@ -13222,6 +13689,10 @@ html.font-size-4xl {
|
|
|
13222
13689
|
width: auto !important;
|
|
13223
13690
|
}
|
|
13224
13691
|
|
|
13692
|
+
.w-1-2 {
|
|
13693
|
+
width: 50% !important;
|
|
13694
|
+
}
|
|
13695
|
+
|
|
13225
13696
|
.w-1-3 {
|
|
13226
13697
|
width: 33.333333% !important;
|
|
13227
13698
|
}
|
|
@@ -13230,6 +13701,14 @@ html.font-size-4xl {
|
|
|
13230
13701
|
width: 66.666667% !important;
|
|
13231
13702
|
}
|
|
13232
13703
|
|
|
13704
|
+
.w-1-4 {
|
|
13705
|
+
width: 25% !important;
|
|
13706
|
+
}
|
|
13707
|
+
|
|
13708
|
+
.w-3-4 {
|
|
13709
|
+
width: 75% !important;
|
|
13710
|
+
}
|
|
13711
|
+
|
|
13233
13712
|
.mw-25 {
|
|
13234
13713
|
min-width: 25% !important;
|
|
13235
13714
|
}
|
|
@@ -13250,6 +13729,10 @@ html.font-size-4xl {
|
|
|
13250
13729
|
min-width: auto !important;
|
|
13251
13730
|
}
|
|
13252
13731
|
|
|
13732
|
+
.mw-1-2 {
|
|
13733
|
+
min-width: 50% !important;
|
|
13734
|
+
}
|
|
13735
|
+
|
|
13253
13736
|
.mw-1-3 {
|
|
13254
13737
|
min-width: 33.333333% !important;
|
|
13255
13738
|
}
|
|
@@ -13258,6 +13741,14 @@ html.font-size-4xl {
|
|
|
13258
13741
|
min-width: 66.666667% !important;
|
|
13259
13742
|
}
|
|
13260
13743
|
|
|
13744
|
+
.mw-1-4 {
|
|
13745
|
+
min-width: 25% !important;
|
|
13746
|
+
}
|
|
13747
|
+
|
|
13748
|
+
.mw-3-4 {
|
|
13749
|
+
min-width: 75% !important;
|
|
13750
|
+
}
|
|
13751
|
+
|
|
13261
13752
|
.w-25-fixed {
|
|
13262
13753
|
min-width: 25% !important;
|
|
13263
13754
|
width: 25% !important;
|
|
@@ -13278,6 +13769,11 @@ html.font-size-4xl {
|
|
|
13278
13769
|
width: 100% !important;
|
|
13279
13770
|
}
|
|
13280
13771
|
|
|
13772
|
+
.w-1-2-fixed {
|
|
13773
|
+
min-width: 50% !important;
|
|
13774
|
+
width: 50% !important;
|
|
13775
|
+
}
|
|
13776
|
+
|
|
13281
13777
|
.w-1-3-fixed {
|
|
13282
13778
|
min-width: 33.333333% !important;
|
|
13283
13779
|
width: 33.333333% !important;
|
|
@@ -13288,6 +13784,16 @@ html.font-size-4xl {
|
|
|
13288
13784
|
width: 66.666667% !important;
|
|
13289
13785
|
}
|
|
13290
13786
|
|
|
13787
|
+
.w-1-4-fixed {
|
|
13788
|
+
min-width: 25% !important;
|
|
13789
|
+
width: 25% !important;
|
|
13790
|
+
}
|
|
13791
|
+
|
|
13792
|
+
.w-3-4-fixed {
|
|
13793
|
+
min-width: 75% !important;
|
|
13794
|
+
width: 75% !important;
|
|
13795
|
+
}
|
|
13796
|
+
|
|
13291
13797
|
.h-25 {
|
|
13292
13798
|
height: 25% !important;
|
|
13293
13799
|
}
|
|
@@ -13308,6 +13814,26 @@ html.font-size-4xl {
|
|
|
13308
13814
|
height: auto !important;
|
|
13309
13815
|
}
|
|
13310
13816
|
|
|
13817
|
+
.h-1-2 {
|
|
13818
|
+
height: 50% !important;
|
|
13819
|
+
}
|
|
13820
|
+
|
|
13821
|
+
.h-1-3 {
|
|
13822
|
+
height: 33.333333% !important;
|
|
13823
|
+
}
|
|
13824
|
+
|
|
13825
|
+
.h-2-3 {
|
|
13826
|
+
height: 66.666667% !important;
|
|
13827
|
+
}
|
|
13828
|
+
|
|
13829
|
+
.h-1-4 {
|
|
13830
|
+
height: 25% !important;
|
|
13831
|
+
}
|
|
13832
|
+
|
|
13833
|
+
.h-3-4 {
|
|
13834
|
+
height: 75% !important;
|
|
13835
|
+
}
|
|
13836
|
+
|
|
13311
13837
|
.wr-1 {
|
|
13312
13838
|
width: 1rem !important;
|
|
13313
13839
|
}
|
|
@@ -13360,6 +13886,26 @@ html.font-size-4xl {
|
|
|
13360
13886
|
width: 25rem !important;
|
|
13361
13887
|
}
|
|
13362
13888
|
|
|
13889
|
+
.wr-30 {
|
|
13890
|
+
width: 30rem !important;
|
|
13891
|
+
}
|
|
13892
|
+
|
|
13893
|
+
.wr-35 {
|
|
13894
|
+
width: 35rem !important;
|
|
13895
|
+
}
|
|
13896
|
+
|
|
13897
|
+
.wr-40 {
|
|
13898
|
+
width: 40rem !important;
|
|
13899
|
+
}
|
|
13900
|
+
|
|
13901
|
+
.wr-45 {
|
|
13902
|
+
width: 45rem !important;
|
|
13903
|
+
}
|
|
13904
|
+
|
|
13905
|
+
.wr-50 {
|
|
13906
|
+
width: 50rem !important;
|
|
13907
|
+
}
|
|
13908
|
+
|
|
13363
13909
|
.minwr-1 {
|
|
13364
13910
|
min-width: 1rem !important;
|
|
13365
13911
|
}
|
|
@@ -13412,6 +13958,26 @@ html.font-size-4xl {
|
|
|
13412
13958
|
min-width: 25rem !important;
|
|
13413
13959
|
}
|
|
13414
13960
|
|
|
13961
|
+
.minwr-30 {
|
|
13962
|
+
min-width: 30rem !important;
|
|
13963
|
+
}
|
|
13964
|
+
|
|
13965
|
+
.minwr-35 {
|
|
13966
|
+
min-width: 35rem !important;
|
|
13967
|
+
}
|
|
13968
|
+
|
|
13969
|
+
.minwr-40 {
|
|
13970
|
+
min-width: 40rem !important;
|
|
13971
|
+
}
|
|
13972
|
+
|
|
13973
|
+
.minwr-45 {
|
|
13974
|
+
min-width: 45rem !important;
|
|
13975
|
+
}
|
|
13976
|
+
|
|
13977
|
+
.minwr-50 {
|
|
13978
|
+
min-width: 50rem !important;
|
|
13979
|
+
}
|
|
13980
|
+
|
|
13415
13981
|
.maxwr-1 {
|
|
13416
13982
|
max-width: 1rem !important;
|
|
13417
13983
|
}
|
|
@@ -13464,6 +14030,26 @@ html.font-size-4xl {
|
|
|
13464
14030
|
max-width: 25rem !important;
|
|
13465
14031
|
}
|
|
13466
14032
|
|
|
14033
|
+
.maxwr-30 {
|
|
14034
|
+
max-width: 30rem !important;
|
|
14035
|
+
}
|
|
14036
|
+
|
|
14037
|
+
.maxwr-35 {
|
|
14038
|
+
max-width: 35rem !important;
|
|
14039
|
+
}
|
|
14040
|
+
|
|
14041
|
+
.maxwr-40 {
|
|
14042
|
+
max-width: 40rem !important;
|
|
14043
|
+
}
|
|
14044
|
+
|
|
14045
|
+
.maxwr-45 {
|
|
14046
|
+
max-width: 45rem !important;
|
|
14047
|
+
}
|
|
14048
|
+
|
|
14049
|
+
.maxwr-50 {
|
|
14050
|
+
max-width: 50rem !important;
|
|
14051
|
+
}
|
|
14052
|
+
|
|
13467
14053
|
.hr-1 {
|
|
13468
14054
|
height: 1rem !important;
|
|
13469
14055
|
}
|
|
@@ -13516,6 +14102,26 @@ html.font-size-4xl {
|
|
|
13516
14102
|
height: 25rem !important;
|
|
13517
14103
|
}
|
|
13518
14104
|
|
|
14105
|
+
.hr-30 {
|
|
14106
|
+
height: 30rem !important;
|
|
14107
|
+
}
|
|
14108
|
+
|
|
14109
|
+
.hr-35 {
|
|
14110
|
+
height: 35rem !important;
|
|
14111
|
+
}
|
|
14112
|
+
|
|
14113
|
+
.hr-40 {
|
|
14114
|
+
height: 40rem !important;
|
|
14115
|
+
}
|
|
14116
|
+
|
|
14117
|
+
.hr-45 {
|
|
14118
|
+
height: 45rem !important;
|
|
14119
|
+
}
|
|
14120
|
+
|
|
14121
|
+
.hr-50 {
|
|
14122
|
+
height: 50rem !important;
|
|
14123
|
+
}
|
|
14124
|
+
|
|
13519
14125
|
.minhr-1 {
|
|
13520
14126
|
min-height: 1rem !important;
|
|
13521
14127
|
}
|
|
@@ -13568,6 +14174,26 @@ html.font-size-4xl {
|
|
|
13568
14174
|
min-height: 25rem !important;
|
|
13569
14175
|
}
|
|
13570
14176
|
|
|
14177
|
+
.minhr-30 {
|
|
14178
|
+
min-height: 30rem !important;
|
|
14179
|
+
}
|
|
14180
|
+
|
|
14181
|
+
.minhr-35 {
|
|
14182
|
+
min-height: 35rem !important;
|
|
14183
|
+
}
|
|
14184
|
+
|
|
14185
|
+
.minhr-40 {
|
|
14186
|
+
min-height: 40rem !important;
|
|
14187
|
+
}
|
|
14188
|
+
|
|
14189
|
+
.minhr-45 {
|
|
14190
|
+
min-height: 45rem !important;
|
|
14191
|
+
}
|
|
14192
|
+
|
|
14193
|
+
.minhr-50 {
|
|
14194
|
+
min-height: 50rem !important;
|
|
14195
|
+
}
|
|
14196
|
+
|
|
13571
14197
|
.maxhr-1 {
|
|
13572
14198
|
max-height: 1rem !important;
|
|
13573
14199
|
}
|
|
@@ -13620,6 +14246,26 @@ html.font-size-4xl {
|
|
|
13620
14246
|
max-height: 25rem !important;
|
|
13621
14247
|
}
|
|
13622
14248
|
|
|
14249
|
+
.maxhr-30 {
|
|
14250
|
+
max-height: 30rem !important;
|
|
14251
|
+
}
|
|
14252
|
+
|
|
14253
|
+
.maxhr-35 {
|
|
14254
|
+
max-height: 35rem !important;
|
|
14255
|
+
}
|
|
14256
|
+
|
|
14257
|
+
.maxhr-40 {
|
|
14258
|
+
max-height: 40rem !important;
|
|
14259
|
+
}
|
|
14260
|
+
|
|
14261
|
+
.maxhr-45 {
|
|
14262
|
+
max-height: 45rem !important;
|
|
14263
|
+
}
|
|
14264
|
+
|
|
14265
|
+
.maxhr-50 {
|
|
14266
|
+
max-height: 50rem !important;
|
|
14267
|
+
}
|
|
14268
|
+
|
|
13623
14269
|
.minw-5 {
|
|
13624
14270
|
min-width: 5% !important;
|
|
13625
14271
|
}
|
|
@@ -13788,6 +14434,10 @@ html.font-size-4xl {
|
|
|
13788
14434
|
max-width: 100% !important;
|
|
13789
14435
|
}
|
|
13790
14436
|
|
|
14437
|
+
.maxw-1-2 {
|
|
14438
|
+
max-width: 50% !important;
|
|
14439
|
+
}
|
|
14440
|
+
|
|
13791
14441
|
.maxw-1-3 {
|
|
13792
14442
|
max-width: 33.333333% !important;
|
|
13793
14443
|
}
|
|
@@ -13796,6 +14446,14 @@ html.font-size-4xl {
|
|
|
13796
14446
|
max-width: 66.666667% !important;
|
|
13797
14447
|
}
|
|
13798
14448
|
|
|
14449
|
+
.maxw-1-4 {
|
|
14450
|
+
max-width: 25% !important;
|
|
14451
|
+
}
|
|
14452
|
+
|
|
14453
|
+
.maxw-3-4 {
|
|
14454
|
+
max-width: 75% !important;
|
|
14455
|
+
}
|
|
14456
|
+
|
|
13799
14457
|
.minh-5 {
|
|
13800
14458
|
min-height: 5% !important;
|
|
13801
14459
|
}
|
|
@@ -13876,6 +14534,10 @@ html.font-size-4xl {
|
|
|
13876
14534
|
min-height: 100% !important;
|
|
13877
14535
|
}
|
|
13878
14536
|
|
|
14537
|
+
.minh-1-2 {
|
|
14538
|
+
min-height: 50% !important;
|
|
14539
|
+
}
|
|
14540
|
+
|
|
13879
14541
|
.minh-1-3 {
|
|
13880
14542
|
min-height: 33.333333% !important;
|
|
13881
14543
|
}
|
|
@@ -13884,6 +14546,14 @@ html.font-size-4xl {
|
|
|
13884
14546
|
min-height: 66.666667% !important;
|
|
13885
14547
|
}
|
|
13886
14548
|
|
|
14549
|
+
.minh-1-4 {
|
|
14550
|
+
min-height: 25% !important;
|
|
14551
|
+
}
|
|
14552
|
+
|
|
14553
|
+
.minh-3-4 {
|
|
14554
|
+
min-height: 75% !important;
|
|
14555
|
+
}
|
|
14556
|
+
|
|
13887
14557
|
.maxh-5 {
|
|
13888
14558
|
max-height: 5% !important;
|
|
13889
14559
|
}
|
|
@@ -13964,6 +14634,10 @@ html.font-size-4xl {
|
|
|
13964
14634
|
max-height: 100% !important;
|
|
13965
14635
|
}
|
|
13966
14636
|
|
|
14637
|
+
.maxh-1-2 {
|
|
14638
|
+
max-height: 50% !important;
|
|
14639
|
+
}
|
|
14640
|
+
|
|
13967
14641
|
.maxh-1-3 {
|
|
13968
14642
|
max-height: 33.333333% !important;
|
|
13969
14643
|
}
|
|
@@ -13972,6 +14646,14 @@ html.font-size-4xl {
|
|
|
13972
14646
|
max-height: 66.666667% !important;
|
|
13973
14647
|
}
|
|
13974
14648
|
|
|
14649
|
+
.maxh-1-4 {
|
|
14650
|
+
max-height: 25% !important;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
.maxh-3-4 {
|
|
14654
|
+
max-height: 75% !important;
|
|
14655
|
+
}
|
|
14656
|
+
|
|
13975
14657
|
.position-static {
|
|
13976
14658
|
position: static !important;
|
|
13977
14659
|
}
|
|
@@ -14506,15 +15188,19 @@ html.font-size-4xl {
|
|
|
14506
15188
|
--pa-multiselect-option-hover-bg: #F2F2F2;
|
|
14507
15189
|
--pa-multiselect-pill-bg: rgba(212, 5, 17, 0.06);
|
|
14508
15190
|
--pa-multiselect-pill-border: #D40511;
|
|
14509
|
-
--pa-color-1:
|
|
14510
|
-
--pa-color-2:
|
|
14511
|
-
--pa-color-3:
|
|
14512
|
-
--pa-color-4:
|
|
14513
|
-
--pa-color-5:
|
|
14514
|
-
--pa-color-6:
|
|
14515
|
-
--pa-color-7:
|
|
14516
|
-
--pa-color-8:
|
|
14517
|
-
--pa-color-9:
|
|
15191
|
+
--pa-color-1: #D40511;
|
|
15192
|
+
--pa-color-2: #FFCC00;
|
|
15193
|
+
--pa-color-3: #ff6b00;
|
|
15194
|
+
--pa-color-4: #00a651;
|
|
15195
|
+
--pa-color-5: #0066cc;
|
|
15196
|
+
--pa-color-6: #6b3fa0;
|
|
15197
|
+
--pa-color-7: #8C8C8C;
|
|
15198
|
+
--pa-color-8: #333333;
|
|
15199
|
+
--pa-color-9: #00b4d8;
|
|
15200
|
+
--pa-input-group-prepend-bg: #EBEBEB;
|
|
15201
|
+
--pa-input-group-prepend-text: #333333;
|
|
15202
|
+
--pa-input-group-append-bg: #EBEBEB;
|
|
15203
|
+
--pa-input-group-append-text: #333333;
|
|
14518
15204
|
--drp-dropdown-bg: #ffffff;
|
|
14519
15205
|
--drp-border-color: #E5E5E5;
|
|
14520
15206
|
--drp-primary-bg: #F2F2F2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-express",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Express theme for Pure Admin",
|
|
5
5
|
"style": "dist/express.css",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "KeenMate",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
22
|
+
"@keenmate/pure-admin-core": "^1.0.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0",
|
|
26
26
|
"sass": "^1.70.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
package/src/scss/express.scss
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
/* Express Theme - Bold yellow and red palette inspired by logistics brands */
|
|
2
2
|
@use 'sass:color';
|
|
3
3
|
|
|
4
|
+
// =============================================================================
|
|
5
|
+
// THEME COLOR SLOTS (1-9) - Express logistics palette
|
|
6
|
+
// =============================================================================
|
|
7
|
+
$color-1: #D40511; // Express Red (primary)
|
|
8
|
+
$color-2: #FFCC00; // Express Yellow (brand)
|
|
9
|
+
$color-3: #ff6b00; // Orange (urgent)
|
|
10
|
+
$color-4: #00a651; // Green (delivered)
|
|
11
|
+
$color-5: #0066cc; // Blue (tracking)
|
|
12
|
+
$color-6: #6b3fa0; // Purple (premium)
|
|
13
|
+
$color-7: #8C8C8C; // Gray (neutral)
|
|
14
|
+
$color-8: #333333; // Dark (contrast)
|
|
15
|
+
$color-9: #00b4d8; // Cyan (info)
|
|
16
|
+
|
|
4
17
|
// ============================================================================
|
|
5
18
|
// EXPRESS COLOR PALETTE
|
|
6
19
|
// ============================================================================
|
|
@@ -430,6 +443,12 @@ $alert-info-border: $base-info-color;
|
|
|
430
443
|
// Pure Admin theme CSS variables
|
|
431
444
|
@include output-pa-css-variables;
|
|
432
445
|
|
|
446
|
+
// Input group - light gray background for light mode
|
|
447
|
+
--pa-input-group-prepend-bg: #{$express-gray-lightest};
|
|
448
|
+
--pa-input-group-prepend-text: #{$express-dark};
|
|
449
|
+
--pa-input-group-append-bg: #{$express-gray-lightest};
|
|
450
|
+
--pa-input-group-append-text: #{$express-dark};
|
|
451
|
+
|
|
433
452
|
// Web component overrides (light mode)
|
|
434
453
|
--drp-dropdown-bg: #ffffff;
|
|
435
454
|
--drp-border-color: #{$express-gray-lighter};
|