@keenmate/pure-admin-theme-audi 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/audi.css +734 -39
- package/package.json +3 -3
- package/src/scss/audi.scss +32 -0
package/dist/audi.css
CHANGED
|
@@ -183,18 +183,17 @@ label {
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
*::-webkit-scrollbar-thumb {
|
|
186
|
-
background:
|
|
186
|
+
background: var(--pa-border-color);
|
|
187
187
|
border-radius: 3px;
|
|
188
188
|
border: 1px solid var(--pa-primary-bg);
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
*::-webkit-scrollbar-thumb:hover {
|
|
192
|
-
background:
|
|
193
|
-
border-color: rgba(255, 0, 0, 0.3);
|
|
192
|
+
background: var(--pa-accent);
|
|
194
193
|
}
|
|
195
194
|
|
|
196
195
|
*::-webkit-scrollbar-thumb:active {
|
|
197
|
-
background:
|
|
196
|
+
background: var(--pa-accent-hover);
|
|
198
197
|
}
|
|
199
198
|
|
|
200
199
|
*::-webkit-scrollbar-corner {
|
|
@@ -280,6 +279,28 @@ body.pa-container-2xl .pa-navbar {
|
|
|
280
279
|
gap: 1.6rem;
|
|
281
280
|
}
|
|
282
281
|
|
|
282
|
+
.pa-header__left {
|
|
283
|
+
display: flex;
|
|
284
|
+
align-items: center;
|
|
285
|
+
gap: 1.6rem;
|
|
286
|
+
flex-shrink: 0;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.pa-header__center {
|
|
290
|
+
flex: 1;
|
|
291
|
+
min-width: 0;
|
|
292
|
+
display: flex;
|
|
293
|
+
align-items: center;
|
|
294
|
+
justify-content: center;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.pa-header__right {
|
|
298
|
+
display: flex;
|
|
299
|
+
align-items: center;
|
|
300
|
+
gap: 1.6rem;
|
|
301
|
+
flex-shrink: 0;
|
|
302
|
+
}
|
|
303
|
+
|
|
283
304
|
/* ========================================
|
|
284
305
|
Layout Container
|
|
285
306
|
Main layout wrapper, content areas, sticky/scroll modes
|
|
@@ -365,28 +386,128 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
365
386
|
}
|
|
366
387
|
|
|
367
388
|
.pa-layout__footer {
|
|
368
|
-
height: 4.8rem;
|
|
389
|
+
min-height: 4.8rem;
|
|
369
390
|
background-color: var(--pa-footer-bg);
|
|
370
391
|
border-top: 1px solid var(--pa-footer-border-color);
|
|
371
392
|
display: flex;
|
|
372
393
|
align-items: center;
|
|
373
|
-
padding: 0 1.6rem;
|
|
394
|
+
padding: 0.4rem 1.6rem;
|
|
374
395
|
flex-shrink: 0;
|
|
396
|
+
gap: 1.6rem;
|
|
375
397
|
}
|
|
376
398
|
|
|
399
|
+
.pa-footer__left {
|
|
400
|
+
display: flex;
|
|
401
|
+
align-items: center;
|
|
402
|
+
gap: 1.6rem;
|
|
403
|
+
flex-shrink: 0;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.pa-footer__center {
|
|
407
|
+
flex: 1;
|
|
408
|
+
min-width: 0;
|
|
409
|
+
display: flex;
|
|
410
|
+
align-items: center;
|
|
411
|
+
justify-content: center;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.pa-footer__right {
|
|
415
|
+
display: flex;
|
|
416
|
+
align-items: center;
|
|
417
|
+
gap: 1.6rem;
|
|
418
|
+
flex-shrink: 0;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.pa-footer__right--vertical {
|
|
422
|
+
flex-direction: column;
|
|
423
|
+
align-items: flex-end;
|
|
424
|
+
gap: 0.4rem;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media (max-width: 768px) {
|
|
428
|
+
.pa-layout__footer {
|
|
429
|
+
flex-wrap: wrap;
|
|
430
|
+
min-height: auto;
|
|
431
|
+
padding: 0.8rem 1.6rem;
|
|
432
|
+
}
|
|
433
|
+
.pa-footer__left,
|
|
434
|
+
.pa-footer__center,
|
|
435
|
+
.pa-footer__right {
|
|
436
|
+
flex-shrink: 1;
|
|
437
|
+
min-width: 0;
|
|
438
|
+
}
|
|
439
|
+
.pa-footer__left {
|
|
440
|
+
flex: 1 1 auto;
|
|
441
|
+
}
|
|
442
|
+
.pa-footer__center {
|
|
443
|
+
display: none;
|
|
444
|
+
}
|
|
445
|
+
.pa-footer__right {
|
|
446
|
+
flex: 0 1 auto;
|
|
447
|
+
}
|
|
448
|
+
.pa-footer__right--vertical {
|
|
449
|
+
align-items: flex-end;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
377
452
|
/* ========================================
|
|
378
453
|
Sidebar Component
|
|
379
454
|
Sidebar navigation with nested submenus
|
|
380
455
|
======================================== */
|
|
456
|
+
:root {
|
|
457
|
+
--pa-sidebar-width: 29rem;
|
|
458
|
+
--pa-sidebar-min-width: 18rem;
|
|
459
|
+
--pa-sidebar-max-width: 50rem;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
:where(.pa-layout__sidebar) {
|
|
463
|
+
width: var(--pa-sidebar-width);
|
|
464
|
+
}
|
|
465
|
+
|
|
381
466
|
.pa-layout__sidebar {
|
|
382
|
-
width: 29rem;
|
|
383
467
|
background-color: var(--pa-sidebar-bg);
|
|
384
468
|
border-right: 1px solid var(--pa-border-color);
|
|
385
469
|
flex-shrink: 0;
|
|
470
|
+
position: relative;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.pa-sidebar-resize {
|
|
474
|
+
position: absolute;
|
|
475
|
+
top: 0;
|
|
476
|
+
right: 0;
|
|
477
|
+
width: 6px;
|
|
478
|
+
height: 100%;
|
|
479
|
+
cursor: ew-resize;
|
|
480
|
+
z-index: 100;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.pa-sidebar-resize::after {
|
|
484
|
+
content: "";
|
|
485
|
+
position: absolute;
|
|
486
|
+
top: 0;
|
|
487
|
+
left: 50%;
|
|
488
|
+
transform: translateX(-50%);
|
|
489
|
+
width: 2px;
|
|
490
|
+
height: 100%;
|
|
491
|
+
background-color: transparent;
|
|
492
|
+
transition: background-color 0.1s ease-out;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.pa-sidebar-resize:hover::after, .pa-sidebar-resize--active::after {
|
|
496
|
+
background-color: var(--pa-accent);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
body.pa-sidebar-resizing {
|
|
500
|
+
cursor: ew-resize !important;
|
|
501
|
+
user-select: none;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
body.pa-sidebar-resizing * {
|
|
505
|
+
cursor: ew-resize !important;
|
|
386
506
|
}
|
|
387
507
|
|
|
388
508
|
body.pa-layout--sticky .pa-layout__sidebar {
|
|
389
509
|
overflow-y: auto;
|
|
510
|
+
overflow-y: overlay;
|
|
390
511
|
overflow-x: visible;
|
|
391
512
|
}
|
|
392
513
|
|
|
@@ -816,14 +937,6 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
816
937
|
background-color: var(--pa-accent-hover);
|
|
817
938
|
}
|
|
818
939
|
|
|
819
|
-
.pa-header__nav--left {
|
|
820
|
-
margin-right: auto;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.pa-header__nav--right {
|
|
824
|
-
margin-left: auto;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
940
|
.pa-header__nav-item--has-dropdown {
|
|
828
941
|
position: static;
|
|
829
942
|
}
|
|
@@ -2519,6 +2632,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2519
2632
|
padding-bottom: 0;
|
|
2520
2633
|
}
|
|
2521
2634
|
|
|
2635
|
+
@media (max-width: 768px) {
|
|
2636
|
+
.pa-col-5 {
|
|
2637
|
+
flex: 0 0 100%;
|
|
2638
|
+
max-width: 100%;
|
|
2639
|
+
}
|
|
2640
|
+
.pa-col-10 {
|
|
2641
|
+
flex: 0 0 100%;
|
|
2642
|
+
max-width: 100%;
|
|
2643
|
+
}
|
|
2644
|
+
.pa-col-15 {
|
|
2645
|
+
flex: 0 0 100%;
|
|
2646
|
+
max-width: 100%;
|
|
2647
|
+
}
|
|
2648
|
+
.pa-col-20 {
|
|
2649
|
+
flex: 0 0 100%;
|
|
2650
|
+
max-width: 100%;
|
|
2651
|
+
}
|
|
2652
|
+
.pa-col-25 {
|
|
2653
|
+
flex: 0 0 100%;
|
|
2654
|
+
max-width: 100%;
|
|
2655
|
+
}
|
|
2656
|
+
.pa-col-30 {
|
|
2657
|
+
flex: 0 0 100%;
|
|
2658
|
+
max-width: 100%;
|
|
2659
|
+
}
|
|
2660
|
+
.pa-col-35 {
|
|
2661
|
+
flex: 0 0 100%;
|
|
2662
|
+
max-width: 100%;
|
|
2663
|
+
}
|
|
2664
|
+
.pa-col-40 {
|
|
2665
|
+
flex: 0 0 100%;
|
|
2666
|
+
max-width: 100%;
|
|
2667
|
+
}
|
|
2668
|
+
.pa-col-45 {
|
|
2669
|
+
flex: 0 0 100%;
|
|
2670
|
+
max-width: 100%;
|
|
2671
|
+
}
|
|
2672
|
+
.pa-col-50 {
|
|
2673
|
+
flex: 0 0 100%;
|
|
2674
|
+
max-width: 100%;
|
|
2675
|
+
}
|
|
2676
|
+
.pa-col-55 {
|
|
2677
|
+
flex: 0 0 100%;
|
|
2678
|
+
max-width: 100%;
|
|
2679
|
+
}
|
|
2680
|
+
.pa-col-60 {
|
|
2681
|
+
flex: 0 0 100%;
|
|
2682
|
+
max-width: 100%;
|
|
2683
|
+
}
|
|
2684
|
+
.pa-col-65 {
|
|
2685
|
+
flex: 0 0 100%;
|
|
2686
|
+
max-width: 100%;
|
|
2687
|
+
}
|
|
2688
|
+
.pa-col-70 {
|
|
2689
|
+
flex: 0 0 100%;
|
|
2690
|
+
max-width: 100%;
|
|
2691
|
+
}
|
|
2692
|
+
.pa-col-75 {
|
|
2693
|
+
flex: 0 0 100%;
|
|
2694
|
+
max-width: 100%;
|
|
2695
|
+
}
|
|
2696
|
+
.pa-col-80 {
|
|
2697
|
+
flex: 0 0 100%;
|
|
2698
|
+
max-width: 100%;
|
|
2699
|
+
}
|
|
2700
|
+
.pa-col-85 {
|
|
2701
|
+
flex: 0 0 100%;
|
|
2702
|
+
max-width: 100%;
|
|
2703
|
+
}
|
|
2704
|
+
.pa-col-90 {
|
|
2705
|
+
flex: 0 0 100%;
|
|
2706
|
+
max-width: 100%;
|
|
2707
|
+
}
|
|
2708
|
+
.pa-col-95 {
|
|
2709
|
+
flex: 0 0 100%;
|
|
2710
|
+
max-width: 100%;
|
|
2711
|
+
}
|
|
2712
|
+
.pa-col-1-2 {
|
|
2713
|
+
flex: 0 0 100%;
|
|
2714
|
+
max-width: 100%;
|
|
2715
|
+
}
|
|
2716
|
+
.pa-col-1-3 {
|
|
2717
|
+
flex: 0 0 100%;
|
|
2718
|
+
max-width: 100%;
|
|
2719
|
+
}
|
|
2720
|
+
.pa-col-2-3 {
|
|
2721
|
+
flex: 0 0 100%;
|
|
2722
|
+
max-width: 100%;
|
|
2723
|
+
}
|
|
2724
|
+
.pa-col-1-4 {
|
|
2725
|
+
flex: 0 0 100%;
|
|
2726
|
+
max-width: 100%;
|
|
2727
|
+
}
|
|
2728
|
+
.pa-col-3-4 {
|
|
2729
|
+
flex: 0 0 100%;
|
|
2730
|
+
max-width: 100%;
|
|
2731
|
+
}
|
|
2732
|
+
.pa-col-1-5 {
|
|
2733
|
+
flex: 0 0 100%;
|
|
2734
|
+
max-width: 100%;
|
|
2735
|
+
}
|
|
2736
|
+
.pa-col-2-5 {
|
|
2737
|
+
flex: 0 0 100%;
|
|
2738
|
+
max-width: 100%;
|
|
2739
|
+
}
|
|
2740
|
+
.pa-col-3-5 {
|
|
2741
|
+
flex: 0 0 100%;
|
|
2742
|
+
max-width: 100%;
|
|
2743
|
+
}
|
|
2744
|
+
.pa-col-4-5 {
|
|
2745
|
+
flex: 0 0 100%;
|
|
2746
|
+
max-width: 100%;
|
|
2747
|
+
}
|
|
2748
|
+
.pa-col-1-6 {
|
|
2749
|
+
flex: 0 0 100%;
|
|
2750
|
+
max-width: 100%;
|
|
2751
|
+
}
|
|
2752
|
+
.pa-col-5-6 {
|
|
2753
|
+
flex: 0 0 100%;
|
|
2754
|
+
max-width: 100%;
|
|
2755
|
+
}
|
|
2756
|
+
.pa-col-1-12 {
|
|
2757
|
+
flex: 0 0 100%;
|
|
2758
|
+
max-width: 100%;
|
|
2759
|
+
}
|
|
2760
|
+
.pa-col-5-12 {
|
|
2761
|
+
flex: 0 0 100%;
|
|
2762
|
+
max-width: 100%;
|
|
2763
|
+
}
|
|
2764
|
+
.pa-col-7-12 {
|
|
2765
|
+
flex: 0 0 100%;
|
|
2766
|
+
max-width: 100%;
|
|
2767
|
+
}
|
|
2768
|
+
.pa-col-11-12 {
|
|
2769
|
+
flex: 0 0 100%;
|
|
2770
|
+
max-width: 100%;
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2522
2773
|
/* ========================================
|
|
2523
2774
|
Card Components
|
|
2524
2775
|
Cards with headers, bodies, footers, variants, and card sections
|
|
@@ -3106,6 +3357,7 @@ a.pa-card p {
|
|
|
3106
3357
|
border-radius: 2px;
|
|
3107
3358
|
padding: 1.6rem 1rem;
|
|
3108
3359
|
background-color: var(--pa-card-bg);
|
|
3360
|
+
margin-bottom: 1.6rem;
|
|
3109
3361
|
}
|
|
3110
3362
|
|
|
3111
3363
|
.pa-tabs__container--bordered .pa-tabs {
|
|
@@ -3125,6 +3377,7 @@ a.pa-card p {
|
|
|
3125
3377
|
border-radius: 0;
|
|
3126
3378
|
background-color: var(--pa-card-bg);
|
|
3127
3379
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
3380
|
+
margin-bottom: 1.6rem;
|
|
3128
3381
|
}
|
|
3129
3382
|
|
|
3130
3383
|
.pa-tabs__container--card .pa-tabs {
|
|
@@ -3250,6 +3503,7 @@ a.pa-card p {
|
|
|
3250
3503
|
border-radius: 2px;
|
|
3251
3504
|
padding: 1.6rem 1rem;
|
|
3252
3505
|
background-color: var(--pa-card-bg);
|
|
3506
|
+
margin-bottom: 1.6rem;
|
|
3253
3507
|
}
|
|
3254
3508
|
|
|
3255
3509
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
|
|
@@ -6445,10 +6699,11 @@ a.pa-card p {
|
|
|
6445
6699
|
.pa-input-group__prepend, .pa-input-group__append {
|
|
6446
6700
|
display: flex;
|
|
6447
6701
|
align-items: center;
|
|
6448
|
-
|
|
6702
|
+
height: 3.5rem;
|
|
6703
|
+
line-height: 3.5rem;
|
|
6704
|
+
padding: 0 0.8rem;
|
|
6449
6705
|
border: 1px solid var(--pa-border-color);
|
|
6450
6706
|
font-size: 1.4rem;
|
|
6451
|
-
line-height: 1;
|
|
6452
6707
|
white-space: nowrap;
|
|
6453
6708
|
border-radius: 0;
|
|
6454
6709
|
}
|
|
@@ -6483,32 +6738,29 @@ a.pa-card p {
|
|
|
6483
6738
|
border-left: 1px solid var(--pa-border-color);
|
|
6484
6739
|
}
|
|
6485
6740
|
|
|
6486
|
-
.pa-input-group:focus
|
|
6741
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
|
|
6487
6742
|
border-right: 1px solid var(--pa-input-focus-border-color);
|
|
6488
6743
|
}
|
|
6489
6744
|
|
|
6490
|
-
.pa-input-group:focus
|
|
6745
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
|
|
6491
6746
|
border-right: none;
|
|
6492
6747
|
}
|
|
6493
6748
|
|
|
6494
|
-
.pa-input-group:focus
|
|
6749
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append {
|
|
6495
6750
|
border-left: 1px solid var(--pa-input-focus-border-color);
|
|
6496
6751
|
}
|
|
6497
6752
|
|
|
6498
|
-
.pa-input-group:focus
|
|
6753
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
|
|
6499
6754
|
border-left: 1px solid var(--pa-border-color);
|
|
6500
6755
|
}
|
|
6501
6756
|
|
|
6502
6757
|
.pa-input-group__button {
|
|
6503
6758
|
border-radius: 0;
|
|
6504
|
-
border-color: var(--pa-border-color);
|
|
6505
|
-
border-left: none;
|
|
6506
6759
|
}
|
|
6507
6760
|
|
|
6508
6761
|
.pa-input-group__button:first-child {
|
|
6509
6762
|
border-top-left-radius: 1px;
|
|
6510
6763
|
border-bottom-left-radius: 1px;
|
|
6511
|
-
border-left: 1px solid var(--pa-border-color);
|
|
6512
6764
|
}
|
|
6513
6765
|
|
|
6514
6766
|
.pa-input-group__button:last-child {
|
|
@@ -6518,25 +6770,29 @@ a.pa-card p {
|
|
|
6518
6770
|
|
|
6519
6771
|
.pa-input-group--xs .pa-input-group__prepend,
|
|
6520
6772
|
.pa-input-group--xs .pa-input-group__append {
|
|
6521
|
-
|
|
6773
|
+
height: 3.1rem;
|
|
6774
|
+
line-height: 3.1rem;
|
|
6522
6775
|
font-size: 1.2rem;
|
|
6523
6776
|
}
|
|
6524
6777
|
|
|
6525
6778
|
.pa-input-group--sm .pa-input-group__prepend,
|
|
6526
6779
|
.pa-input-group--sm .pa-input-group__append {
|
|
6527
|
-
|
|
6780
|
+
height: 3.3rem;
|
|
6781
|
+
line-height: 3.3rem;
|
|
6528
6782
|
font-size: 1.4rem;
|
|
6529
6783
|
}
|
|
6530
6784
|
|
|
6531
6785
|
.pa-input-group--lg .pa-input-group__prepend,
|
|
6532
6786
|
.pa-input-group--lg .pa-input-group__append {
|
|
6533
|
-
|
|
6787
|
+
height: 3.8rem;
|
|
6788
|
+
line-height: 3.8rem;
|
|
6534
6789
|
font-size: 1.6rem;
|
|
6535
6790
|
}
|
|
6536
6791
|
|
|
6537
6792
|
.pa-input-group--xl .pa-input-group__prepend,
|
|
6538
6793
|
.pa-input-group--xl .pa-input-group__append {
|
|
6539
|
-
|
|
6794
|
+
height: 4.1rem;
|
|
6795
|
+
line-height: 4.1rem;
|
|
6540
6796
|
font-size: 1.8rem;
|
|
6541
6797
|
}
|
|
6542
6798
|
|
|
@@ -9212,6 +9468,16 @@ code {
|
|
|
9212
9468
|
Profile Panel Components
|
|
9213
9469
|
Profile panel and header button
|
|
9214
9470
|
======================================== */
|
|
9471
|
+
:root {
|
|
9472
|
+
--pa-profile-panel-width: 20vw;
|
|
9473
|
+
--pa-profile-panel-max-width: 48rem;
|
|
9474
|
+
}
|
|
9475
|
+
|
|
9476
|
+
:where(.pa-profile-panel__content) {
|
|
9477
|
+
width: var(--pa-profile-panel-width);
|
|
9478
|
+
max-width: var(--pa-profile-panel-max-width);
|
|
9479
|
+
}
|
|
9480
|
+
|
|
9215
9481
|
.pa-header__profile-btn {
|
|
9216
9482
|
display: flex;
|
|
9217
9483
|
align-items: center;
|
|
@@ -9275,8 +9541,6 @@ code {
|
|
|
9275
9541
|
position: absolute;
|
|
9276
9542
|
top: 0;
|
|
9277
9543
|
right: 0;
|
|
9278
|
-
width: 20vw;
|
|
9279
|
-
max-width: 48rem;
|
|
9280
9544
|
height: 100vh;
|
|
9281
9545
|
background-color: var(--pa-card-bg);
|
|
9282
9546
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
|
|
@@ -11487,6 +11751,60 @@ code {
|
|
|
11487
11751
|
right: -1.6rem;
|
|
11488
11752
|
}
|
|
11489
11753
|
}
|
|
11754
|
+
.pa-notifications__list--page {
|
|
11755
|
+
max-height: none;
|
|
11756
|
+
overflow: visible;
|
|
11757
|
+
}
|
|
11758
|
+
|
|
11759
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11760
|
+
padding: 1.6rem 2.4rem;
|
|
11761
|
+
}
|
|
11762
|
+
|
|
11763
|
+
.pa-notifications__list--page .pa-notifications__icon-wrapper {
|
|
11764
|
+
width: 4rem;
|
|
11765
|
+
height: 4rem;
|
|
11766
|
+
font-size: 1.8rem;
|
|
11767
|
+
}
|
|
11768
|
+
|
|
11769
|
+
.pa-notifications__list--page .pa-notifications__content h4 {
|
|
11770
|
+
font-size: 1.4rem;
|
|
11771
|
+
margin-bottom: 0.4rem;
|
|
11772
|
+
}
|
|
11773
|
+
|
|
11774
|
+
.pa-notifications__list--page .pa-notifications__content p {
|
|
11775
|
+
font-size: 1.4rem;
|
|
11776
|
+
-webkit-line-clamp: 3;
|
|
11777
|
+
}
|
|
11778
|
+
|
|
11779
|
+
.pa-notifications__list--page .pa-notifications__time {
|
|
11780
|
+
font-size: 1.2rem;
|
|
11781
|
+
}
|
|
11782
|
+
|
|
11783
|
+
.pa-notifications__actions {
|
|
11784
|
+
display: flex;
|
|
11785
|
+
gap: 0.4rem;
|
|
11786
|
+
flex-shrink: 0;
|
|
11787
|
+
opacity: 0;
|
|
11788
|
+
transition: opacity 0.1s ease-out;
|
|
11789
|
+
}
|
|
11790
|
+
|
|
11791
|
+
.pa-notifications__item:hover .pa-notifications__actions {
|
|
11792
|
+
opacity: 1;
|
|
11793
|
+
}
|
|
11794
|
+
|
|
11795
|
+
@media (max-width: 768px) {
|
|
11796
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11797
|
+
flex-wrap: wrap;
|
|
11798
|
+
}
|
|
11799
|
+
.pa-notifications__list--page .pa-notifications__actions {
|
|
11800
|
+
opacity: 1;
|
|
11801
|
+
width: 100%;
|
|
11802
|
+
justify-content: flex-end;
|
|
11803
|
+
margin-top: 0.8rem;
|
|
11804
|
+
padding-top: 0.8rem;
|
|
11805
|
+
border-top: 1px solid var(--pa-border-color);
|
|
11806
|
+
}
|
|
11807
|
+
}
|
|
11490
11808
|
/* ========================================
|
|
11491
11809
|
Popconfirm Component
|
|
11492
11810
|
Small confirmation dialog anchored to trigger button
|
|
@@ -11978,6 +12296,21 @@ html.font-size-4xl {
|
|
|
11978
12296
|
overflow: visible;
|
|
11979
12297
|
}
|
|
11980
12298
|
|
|
12299
|
+
.overflow-overlay {
|
|
12300
|
+
overflow: auto;
|
|
12301
|
+
overflow: overlay;
|
|
12302
|
+
}
|
|
12303
|
+
|
|
12304
|
+
.overflow-y-overlay {
|
|
12305
|
+
overflow-y: auto;
|
|
12306
|
+
overflow-y: overlay;
|
|
12307
|
+
}
|
|
12308
|
+
|
|
12309
|
+
.overflow-x-overlay {
|
|
12310
|
+
overflow-x: auto;
|
|
12311
|
+
overflow-x: overlay;
|
|
12312
|
+
}
|
|
12313
|
+
|
|
11981
12314
|
.cursor-pointer {
|
|
11982
12315
|
cursor: pointer;
|
|
11983
12316
|
}
|
|
@@ -12198,6 +12531,26 @@ html.font-size-4xl {
|
|
|
12198
12531
|
column-gap: 2.4rem;
|
|
12199
12532
|
}
|
|
12200
12533
|
|
|
12534
|
+
.self-start {
|
|
12535
|
+
align-self: flex-start;
|
|
12536
|
+
}
|
|
12537
|
+
|
|
12538
|
+
.self-center {
|
|
12539
|
+
align-self: center;
|
|
12540
|
+
}
|
|
12541
|
+
|
|
12542
|
+
.self-end {
|
|
12543
|
+
align-self: flex-end;
|
|
12544
|
+
}
|
|
12545
|
+
|
|
12546
|
+
.self-stretch {
|
|
12547
|
+
align-self: stretch;
|
|
12548
|
+
}
|
|
12549
|
+
|
|
12550
|
+
.self-baseline {
|
|
12551
|
+
align-self: baseline;
|
|
12552
|
+
}
|
|
12553
|
+
|
|
12201
12554
|
.text-2xs {
|
|
12202
12555
|
font-size: 1rem;
|
|
12203
12556
|
}
|
|
@@ -12238,6 +12591,12 @@ html.font-size-4xl {
|
|
|
12238
12591
|
font-size: 3.2rem;
|
|
12239
12592
|
}
|
|
12240
12593
|
|
|
12594
|
+
.text-truncate {
|
|
12595
|
+
overflow: hidden;
|
|
12596
|
+
text-overflow: ellipsis;
|
|
12597
|
+
white-space: nowrap;
|
|
12598
|
+
}
|
|
12599
|
+
|
|
12241
12600
|
.component-showcase {
|
|
12242
12601
|
display: flex;
|
|
12243
12602
|
flex-wrap: wrap;
|
|
@@ -12281,6 +12640,114 @@ html.font-size-4xl {
|
|
|
12281
12640
|
align-items: flex-start;
|
|
12282
12641
|
}
|
|
12283
12642
|
|
|
12643
|
+
.pa-bg-color-1 {
|
|
12644
|
+
background-color: var(--pa-color-1);
|
|
12645
|
+
}
|
|
12646
|
+
|
|
12647
|
+
.pa-text-color-1 {
|
|
12648
|
+
color: var(--pa-color-1);
|
|
12649
|
+
}
|
|
12650
|
+
|
|
12651
|
+
.pa-border-color-1 {
|
|
12652
|
+
border-color: var(--pa-color-1);
|
|
12653
|
+
}
|
|
12654
|
+
|
|
12655
|
+
.pa-bg-color-2 {
|
|
12656
|
+
background-color: var(--pa-color-2);
|
|
12657
|
+
}
|
|
12658
|
+
|
|
12659
|
+
.pa-text-color-2 {
|
|
12660
|
+
color: var(--pa-color-2);
|
|
12661
|
+
}
|
|
12662
|
+
|
|
12663
|
+
.pa-border-color-2 {
|
|
12664
|
+
border-color: var(--pa-color-2);
|
|
12665
|
+
}
|
|
12666
|
+
|
|
12667
|
+
.pa-bg-color-3 {
|
|
12668
|
+
background-color: var(--pa-color-3);
|
|
12669
|
+
}
|
|
12670
|
+
|
|
12671
|
+
.pa-text-color-3 {
|
|
12672
|
+
color: var(--pa-color-3);
|
|
12673
|
+
}
|
|
12674
|
+
|
|
12675
|
+
.pa-border-color-3 {
|
|
12676
|
+
border-color: var(--pa-color-3);
|
|
12677
|
+
}
|
|
12678
|
+
|
|
12679
|
+
.pa-bg-color-4 {
|
|
12680
|
+
background-color: var(--pa-color-4);
|
|
12681
|
+
}
|
|
12682
|
+
|
|
12683
|
+
.pa-text-color-4 {
|
|
12684
|
+
color: var(--pa-color-4);
|
|
12685
|
+
}
|
|
12686
|
+
|
|
12687
|
+
.pa-border-color-4 {
|
|
12688
|
+
border-color: var(--pa-color-4);
|
|
12689
|
+
}
|
|
12690
|
+
|
|
12691
|
+
.pa-bg-color-5 {
|
|
12692
|
+
background-color: var(--pa-color-5);
|
|
12693
|
+
}
|
|
12694
|
+
|
|
12695
|
+
.pa-text-color-5 {
|
|
12696
|
+
color: var(--pa-color-5);
|
|
12697
|
+
}
|
|
12698
|
+
|
|
12699
|
+
.pa-border-color-5 {
|
|
12700
|
+
border-color: var(--pa-color-5);
|
|
12701
|
+
}
|
|
12702
|
+
|
|
12703
|
+
.pa-bg-color-6 {
|
|
12704
|
+
background-color: var(--pa-color-6);
|
|
12705
|
+
}
|
|
12706
|
+
|
|
12707
|
+
.pa-text-color-6 {
|
|
12708
|
+
color: var(--pa-color-6);
|
|
12709
|
+
}
|
|
12710
|
+
|
|
12711
|
+
.pa-border-color-6 {
|
|
12712
|
+
border-color: var(--pa-color-6);
|
|
12713
|
+
}
|
|
12714
|
+
|
|
12715
|
+
.pa-bg-color-7 {
|
|
12716
|
+
background-color: var(--pa-color-7);
|
|
12717
|
+
}
|
|
12718
|
+
|
|
12719
|
+
.pa-text-color-7 {
|
|
12720
|
+
color: var(--pa-color-7);
|
|
12721
|
+
}
|
|
12722
|
+
|
|
12723
|
+
.pa-border-color-7 {
|
|
12724
|
+
border-color: var(--pa-color-7);
|
|
12725
|
+
}
|
|
12726
|
+
|
|
12727
|
+
.pa-bg-color-8 {
|
|
12728
|
+
background-color: var(--pa-color-8);
|
|
12729
|
+
}
|
|
12730
|
+
|
|
12731
|
+
.pa-text-color-8 {
|
|
12732
|
+
color: var(--pa-color-8);
|
|
12733
|
+
}
|
|
12734
|
+
|
|
12735
|
+
.pa-border-color-8 {
|
|
12736
|
+
border-color: var(--pa-color-8);
|
|
12737
|
+
}
|
|
12738
|
+
|
|
12739
|
+
.pa-bg-color-9 {
|
|
12740
|
+
background-color: var(--pa-color-9);
|
|
12741
|
+
}
|
|
12742
|
+
|
|
12743
|
+
.pa-text-color-9 {
|
|
12744
|
+
color: var(--pa-color-9);
|
|
12745
|
+
}
|
|
12746
|
+
|
|
12747
|
+
.pa-border-color-9 {
|
|
12748
|
+
border-color: var(--pa-color-9);
|
|
12749
|
+
}
|
|
12750
|
+
|
|
12284
12751
|
.m-0 {
|
|
12285
12752
|
margin: 0 !important;
|
|
12286
12753
|
}
|
|
@@ -13237,6 +13704,10 @@ html.font-size-4xl {
|
|
|
13237
13704
|
width: auto !important;
|
|
13238
13705
|
}
|
|
13239
13706
|
|
|
13707
|
+
.w-1-2 {
|
|
13708
|
+
width: 50% !important;
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13240
13711
|
.w-1-3 {
|
|
13241
13712
|
width: 33.333333% !important;
|
|
13242
13713
|
}
|
|
@@ -13245,6 +13716,14 @@ html.font-size-4xl {
|
|
|
13245
13716
|
width: 66.666667% !important;
|
|
13246
13717
|
}
|
|
13247
13718
|
|
|
13719
|
+
.w-1-4 {
|
|
13720
|
+
width: 25% !important;
|
|
13721
|
+
}
|
|
13722
|
+
|
|
13723
|
+
.w-3-4 {
|
|
13724
|
+
width: 75% !important;
|
|
13725
|
+
}
|
|
13726
|
+
|
|
13248
13727
|
.mw-25 {
|
|
13249
13728
|
min-width: 25% !important;
|
|
13250
13729
|
}
|
|
@@ -13265,6 +13744,10 @@ html.font-size-4xl {
|
|
|
13265
13744
|
min-width: auto !important;
|
|
13266
13745
|
}
|
|
13267
13746
|
|
|
13747
|
+
.mw-1-2 {
|
|
13748
|
+
min-width: 50% !important;
|
|
13749
|
+
}
|
|
13750
|
+
|
|
13268
13751
|
.mw-1-3 {
|
|
13269
13752
|
min-width: 33.333333% !important;
|
|
13270
13753
|
}
|
|
@@ -13273,6 +13756,14 @@ html.font-size-4xl {
|
|
|
13273
13756
|
min-width: 66.666667% !important;
|
|
13274
13757
|
}
|
|
13275
13758
|
|
|
13759
|
+
.mw-1-4 {
|
|
13760
|
+
min-width: 25% !important;
|
|
13761
|
+
}
|
|
13762
|
+
|
|
13763
|
+
.mw-3-4 {
|
|
13764
|
+
min-width: 75% !important;
|
|
13765
|
+
}
|
|
13766
|
+
|
|
13276
13767
|
.w-25-fixed {
|
|
13277
13768
|
min-width: 25% !important;
|
|
13278
13769
|
width: 25% !important;
|
|
@@ -13293,6 +13784,11 @@ html.font-size-4xl {
|
|
|
13293
13784
|
width: 100% !important;
|
|
13294
13785
|
}
|
|
13295
13786
|
|
|
13787
|
+
.w-1-2-fixed {
|
|
13788
|
+
min-width: 50% !important;
|
|
13789
|
+
width: 50% !important;
|
|
13790
|
+
}
|
|
13791
|
+
|
|
13296
13792
|
.w-1-3-fixed {
|
|
13297
13793
|
min-width: 33.333333% !important;
|
|
13298
13794
|
width: 33.333333% !important;
|
|
@@ -13303,6 +13799,16 @@ html.font-size-4xl {
|
|
|
13303
13799
|
width: 66.666667% !important;
|
|
13304
13800
|
}
|
|
13305
13801
|
|
|
13802
|
+
.w-1-4-fixed {
|
|
13803
|
+
min-width: 25% !important;
|
|
13804
|
+
width: 25% !important;
|
|
13805
|
+
}
|
|
13806
|
+
|
|
13807
|
+
.w-3-4-fixed {
|
|
13808
|
+
min-width: 75% !important;
|
|
13809
|
+
width: 75% !important;
|
|
13810
|
+
}
|
|
13811
|
+
|
|
13306
13812
|
.h-25 {
|
|
13307
13813
|
height: 25% !important;
|
|
13308
13814
|
}
|
|
@@ -13323,6 +13829,26 @@ html.font-size-4xl {
|
|
|
13323
13829
|
height: auto !important;
|
|
13324
13830
|
}
|
|
13325
13831
|
|
|
13832
|
+
.h-1-2 {
|
|
13833
|
+
height: 50% !important;
|
|
13834
|
+
}
|
|
13835
|
+
|
|
13836
|
+
.h-1-3 {
|
|
13837
|
+
height: 33.333333% !important;
|
|
13838
|
+
}
|
|
13839
|
+
|
|
13840
|
+
.h-2-3 {
|
|
13841
|
+
height: 66.666667% !important;
|
|
13842
|
+
}
|
|
13843
|
+
|
|
13844
|
+
.h-1-4 {
|
|
13845
|
+
height: 25% !important;
|
|
13846
|
+
}
|
|
13847
|
+
|
|
13848
|
+
.h-3-4 {
|
|
13849
|
+
height: 75% !important;
|
|
13850
|
+
}
|
|
13851
|
+
|
|
13326
13852
|
.wr-1 {
|
|
13327
13853
|
width: 1rem !important;
|
|
13328
13854
|
}
|
|
@@ -13375,6 +13901,26 @@ html.font-size-4xl {
|
|
|
13375
13901
|
width: 25rem !important;
|
|
13376
13902
|
}
|
|
13377
13903
|
|
|
13904
|
+
.wr-30 {
|
|
13905
|
+
width: 30rem !important;
|
|
13906
|
+
}
|
|
13907
|
+
|
|
13908
|
+
.wr-35 {
|
|
13909
|
+
width: 35rem !important;
|
|
13910
|
+
}
|
|
13911
|
+
|
|
13912
|
+
.wr-40 {
|
|
13913
|
+
width: 40rem !important;
|
|
13914
|
+
}
|
|
13915
|
+
|
|
13916
|
+
.wr-45 {
|
|
13917
|
+
width: 45rem !important;
|
|
13918
|
+
}
|
|
13919
|
+
|
|
13920
|
+
.wr-50 {
|
|
13921
|
+
width: 50rem !important;
|
|
13922
|
+
}
|
|
13923
|
+
|
|
13378
13924
|
.minwr-1 {
|
|
13379
13925
|
min-width: 1rem !important;
|
|
13380
13926
|
}
|
|
@@ -13427,6 +13973,26 @@ html.font-size-4xl {
|
|
|
13427
13973
|
min-width: 25rem !important;
|
|
13428
13974
|
}
|
|
13429
13975
|
|
|
13976
|
+
.minwr-30 {
|
|
13977
|
+
min-width: 30rem !important;
|
|
13978
|
+
}
|
|
13979
|
+
|
|
13980
|
+
.minwr-35 {
|
|
13981
|
+
min-width: 35rem !important;
|
|
13982
|
+
}
|
|
13983
|
+
|
|
13984
|
+
.minwr-40 {
|
|
13985
|
+
min-width: 40rem !important;
|
|
13986
|
+
}
|
|
13987
|
+
|
|
13988
|
+
.minwr-45 {
|
|
13989
|
+
min-width: 45rem !important;
|
|
13990
|
+
}
|
|
13991
|
+
|
|
13992
|
+
.minwr-50 {
|
|
13993
|
+
min-width: 50rem !important;
|
|
13994
|
+
}
|
|
13995
|
+
|
|
13430
13996
|
.maxwr-1 {
|
|
13431
13997
|
max-width: 1rem !important;
|
|
13432
13998
|
}
|
|
@@ -13479,6 +14045,26 @@ html.font-size-4xl {
|
|
|
13479
14045
|
max-width: 25rem !important;
|
|
13480
14046
|
}
|
|
13481
14047
|
|
|
14048
|
+
.maxwr-30 {
|
|
14049
|
+
max-width: 30rem !important;
|
|
14050
|
+
}
|
|
14051
|
+
|
|
14052
|
+
.maxwr-35 {
|
|
14053
|
+
max-width: 35rem !important;
|
|
14054
|
+
}
|
|
14055
|
+
|
|
14056
|
+
.maxwr-40 {
|
|
14057
|
+
max-width: 40rem !important;
|
|
14058
|
+
}
|
|
14059
|
+
|
|
14060
|
+
.maxwr-45 {
|
|
14061
|
+
max-width: 45rem !important;
|
|
14062
|
+
}
|
|
14063
|
+
|
|
14064
|
+
.maxwr-50 {
|
|
14065
|
+
max-width: 50rem !important;
|
|
14066
|
+
}
|
|
14067
|
+
|
|
13482
14068
|
.hr-1 {
|
|
13483
14069
|
height: 1rem !important;
|
|
13484
14070
|
}
|
|
@@ -13531,6 +14117,26 @@ html.font-size-4xl {
|
|
|
13531
14117
|
height: 25rem !important;
|
|
13532
14118
|
}
|
|
13533
14119
|
|
|
14120
|
+
.hr-30 {
|
|
14121
|
+
height: 30rem !important;
|
|
14122
|
+
}
|
|
14123
|
+
|
|
14124
|
+
.hr-35 {
|
|
14125
|
+
height: 35rem !important;
|
|
14126
|
+
}
|
|
14127
|
+
|
|
14128
|
+
.hr-40 {
|
|
14129
|
+
height: 40rem !important;
|
|
14130
|
+
}
|
|
14131
|
+
|
|
14132
|
+
.hr-45 {
|
|
14133
|
+
height: 45rem !important;
|
|
14134
|
+
}
|
|
14135
|
+
|
|
14136
|
+
.hr-50 {
|
|
14137
|
+
height: 50rem !important;
|
|
14138
|
+
}
|
|
14139
|
+
|
|
13534
14140
|
.minhr-1 {
|
|
13535
14141
|
min-height: 1rem !important;
|
|
13536
14142
|
}
|
|
@@ -13583,6 +14189,26 @@ html.font-size-4xl {
|
|
|
13583
14189
|
min-height: 25rem !important;
|
|
13584
14190
|
}
|
|
13585
14191
|
|
|
14192
|
+
.minhr-30 {
|
|
14193
|
+
min-height: 30rem !important;
|
|
14194
|
+
}
|
|
14195
|
+
|
|
14196
|
+
.minhr-35 {
|
|
14197
|
+
min-height: 35rem !important;
|
|
14198
|
+
}
|
|
14199
|
+
|
|
14200
|
+
.minhr-40 {
|
|
14201
|
+
min-height: 40rem !important;
|
|
14202
|
+
}
|
|
14203
|
+
|
|
14204
|
+
.minhr-45 {
|
|
14205
|
+
min-height: 45rem !important;
|
|
14206
|
+
}
|
|
14207
|
+
|
|
14208
|
+
.minhr-50 {
|
|
14209
|
+
min-height: 50rem !important;
|
|
14210
|
+
}
|
|
14211
|
+
|
|
13586
14212
|
.maxhr-1 {
|
|
13587
14213
|
max-height: 1rem !important;
|
|
13588
14214
|
}
|
|
@@ -13635,6 +14261,26 @@ html.font-size-4xl {
|
|
|
13635
14261
|
max-height: 25rem !important;
|
|
13636
14262
|
}
|
|
13637
14263
|
|
|
14264
|
+
.maxhr-30 {
|
|
14265
|
+
max-height: 30rem !important;
|
|
14266
|
+
}
|
|
14267
|
+
|
|
14268
|
+
.maxhr-35 {
|
|
14269
|
+
max-height: 35rem !important;
|
|
14270
|
+
}
|
|
14271
|
+
|
|
14272
|
+
.maxhr-40 {
|
|
14273
|
+
max-height: 40rem !important;
|
|
14274
|
+
}
|
|
14275
|
+
|
|
14276
|
+
.maxhr-45 {
|
|
14277
|
+
max-height: 45rem !important;
|
|
14278
|
+
}
|
|
14279
|
+
|
|
14280
|
+
.maxhr-50 {
|
|
14281
|
+
max-height: 50rem !important;
|
|
14282
|
+
}
|
|
14283
|
+
|
|
13638
14284
|
.minw-5 {
|
|
13639
14285
|
min-width: 5% !important;
|
|
13640
14286
|
}
|
|
@@ -13803,6 +14449,10 @@ html.font-size-4xl {
|
|
|
13803
14449
|
max-width: 100% !important;
|
|
13804
14450
|
}
|
|
13805
14451
|
|
|
14452
|
+
.maxw-1-2 {
|
|
14453
|
+
max-width: 50% !important;
|
|
14454
|
+
}
|
|
14455
|
+
|
|
13806
14456
|
.maxw-1-3 {
|
|
13807
14457
|
max-width: 33.333333% !important;
|
|
13808
14458
|
}
|
|
@@ -13811,6 +14461,14 @@ html.font-size-4xl {
|
|
|
13811
14461
|
max-width: 66.666667% !important;
|
|
13812
14462
|
}
|
|
13813
14463
|
|
|
14464
|
+
.maxw-1-4 {
|
|
14465
|
+
max-width: 25% !important;
|
|
14466
|
+
}
|
|
14467
|
+
|
|
14468
|
+
.maxw-3-4 {
|
|
14469
|
+
max-width: 75% !important;
|
|
14470
|
+
}
|
|
14471
|
+
|
|
13814
14472
|
.minh-5 {
|
|
13815
14473
|
min-height: 5% !important;
|
|
13816
14474
|
}
|
|
@@ -13891,6 +14549,10 @@ html.font-size-4xl {
|
|
|
13891
14549
|
min-height: 100% !important;
|
|
13892
14550
|
}
|
|
13893
14551
|
|
|
14552
|
+
.minh-1-2 {
|
|
14553
|
+
min-height: 50% !important;
|
|
14554
|
+
}
|
|
14555
|
+
|
|
13894
14556
|
.minh-1-3 {
|
|
13895
14557
|
min-height: 33.333333% !important;
|
|
13896
14558
|
}
|
|
@@ -13899,6 +14561,14 @@ html.font-size-4xl {
|
|
|
13899
14561
|
min-height: 66.666667% !important;
|
|
13900
14562
|
}
|
|
13901
14563
|
|
|
14564
|
+
.minh-1-4 {
|
|
14565
|
+
min-height: 25% !important;
|
|
14566
|
+
}
|
|
14567
|
+
|
|
14568
|
+
.minh-3-4 {
|
|
14569
|
+
min-height: 75% !important;
|
|
14570
|
+
}
|
|
14571
|
+
|
|
13902
14572
|
.maxh-5 {
|
|
13903
14573
|
max-height: 5% !important;
|
|
13904
14574
|
}
|
|
@@ -13979,6 +14649,10 @@ html.font-size-4xl {
|
|
|
13979
14649
|
max-height: 100% !important;
|
|
13980
14650
|
}
|
|
13981
14651
|
|
|
14652
|
+
.maxh-1-2 {
|
|
14653
|
+
max-height: 50% !important;
|
|
14654
|
+
}
|
|
14655
|
+
|
|
13982
14656
|
.maxh-1-3 {
|
|
13983
14657
|
max-height: 33.333333% !important;
|
|
13984
14658
|
}
|
|
@@ -13987,6 +14661,14 @@ html.font-size-4xl {
|
|
|
13987
14661
|
max-height: 66.666667% !important;
|
|
13988
14662
|
}
|
|
13989
14663
|
|
|
14664
|
+
.maxh-1-4 {
|
|
14665
|
+
max-height: 25% !important;
|
|
14666
|
+
}
|
|
14667
|
+
|
|
14668
|
+
.maxh-3-4 {
|
|
14669
|
+
max-height: 75% !important;
|
|
14670
|
+
}
|
|
14671
|
+
|
|
13990
14672
|
.position-static {
|
|
13991
14673
|
position: static !important;
|
|
13992
14674
|
}
|
|
@@ -14460,15 +15142,15 @@ html.font-size-4xl {
|
|
|
14460
15142
|
--pa-multiselect-option-hover-bg: #0a0a0a;
|
|
14461
15143
|
--pa-multiselect-pill-bg: rgba(255, 0, 0, 0.25);
|
|
14462
15144
|
--pa-multiselect-pill-border: #ff0000;
|
|
14463
|
-
--pa-color-1:
|
|
14464
|
-
--pa-color-2:
|
|
14465
|
-
--pa-color-3:
|
|
14466
|
-
--pa-color-4:
|
|
14467
|
-
--pa-color-5:
|
|
14468
|
-
--pa-color-6:
|
|
14469
|
-
--pa-color-7:
|
|
14470
|
-
--pa-color-8:
|
|
14471
|
-
--pa-color-9:
|
|
15145
|
+
--pa-color-1: #bb0a30;
|
|
15146
|
+
--pa-color-2: #ff4444;
|
|
15147
|
+
--pa-color-3: #ff6600;
|
|
15148
|
+
--pa-color-4: #d4af37;
|
|
15149
|
+
--pa-color-5: #00a0a0;
|
|
15150
|
+
--pa-color-6: #0066cc;
|
|
15151
|
+
--pa-color-7: #8c8c8c;
|
|
15152
|
+
--pa-color-8: #404040;
|
|
15153
|
+
--pa-color-9: #6b3fa0;
|
|
14472
15154
|
--drp-dropdown-bg: #1a1a1a;
|
|
14473
15155
|
--drp-border-color: #333333;
|
|
14474
15156
|
--drp-primary-bg: #2a2a2a;
|
|
@@ -14527,6 +15209,10 @@ html.font-size-4xl {
|
|
|
14527
15209
|
--pa-input-bg: #ffffff;
|
|
14528
15210
|
--pa-input-border: #dee2e6;
|
|
14529
15211
|
--pa-input-text: #212529;
|
|
15212
|
+
--pa-input-group-prepend-bg: #e9ecef;
|
|
15213
|
+
--pa-input-group-prepend-text: #495057;
|
|
15214
|
+
--pa-input-group-append-bg: #e9ecef;
|
|
15215
|
+
--pa-input-group-append-text: #495057;
|
|
14530
15216
|
--pa-table-bg: #ffffff;
|
|
14531
15217
|
--pa-table-header-bg: #f1f3f5;
|
|
14532
15218
|
--pa-table-stripe: #f8f9fa;
|
|
@@ -14611,3 +15297,12 @@ html.font-size-4xl {
|
|
|
14611
15297
|
.pa-mode-light .pa-profile-panel__header .pa-profile-panel__email {
|
|
14612
15298
|
color: var(--pa-header-text-secondary);
|
|
14613
15299
|
}
|
|
15300
|
+
.pa-mode-light .pa-layout__footer {
|
|
15301
|
+
color: #cccccc;
|
|
15302
|
+
}
|
|
15303
|
+
.pa-mode-light .pa-layout__footer a {
|
|
15304
|
+
color: #ffffff;
|
|
15305
|
+
}
|
|
15306
|
+
.pa-mode-light .pa-layout__footer a:hover {
|
|
15307
|
+
color: #ff0000;
|
|
15308
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-audi",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Audi theme for Pure Admin - includes dark and light variants",
|
|
5
5
|
"style": "dist/audi.css",
|
|
6
6
|
"exports": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"author": "KeenMate",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
28
|
+
"@keenmate/pure-admin-core": "^1.0.0",
|
|
29
29
|
"sass": "^1.70.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
package/src/scss/audi.scss
CHANGED
|
@@ -91,6 +91,19 @@ $base-info-color-hover: $audi-info-hover;
|
|
|
91
91
|
$base-info-bg-light: rgba($audi-info, 0.25);
|
|
92
92
|
$base-text-on-info: #ffffff;
|
|
93
93
|
|
|
94
|
+
// =============================================================================
|
|
95
|
+
// THEME COLOR SLOTS (1-9) - Audi-inspired palette
|
|
96
|
+
// =============================================================================
|
|
97
|
+
$color-1: #bb0a30; // Audi Red (classic)
|
|
98
|
+
$color-2: #ff4444; // Light Red
|
|
99
|
+
$color-3: #ff6600; // Orange (warning tone)
|
|
100
|
+
$color-4: #d4af37; // Gold (premium)
|
|
101
|
+
$color-5: #00a0a0; // Teal (contrast)
|
|
102
|
+
$color-6: #0066cc; // Blue (professional)
|
|
103
|
+
$color-7: #8c8c8c; // Silver (metallic)
|
|
104
|
+
$color-8: #404040; // Charcoal (neutral)
|
|
105
|
+
$color-9: #6b3fa0; // Purple (luxury)
|
|
106
|
+
|
|
94
107
|
// =============================================================================
|
|
95
108
|
// IMPORT CORE VARIABLES (with base variables already set)
|
|
96
109
|
// =============================================================================
|
|
@@ -402,6 +415,12 @@ $card-border-radius: 0; // Sharp edges
|
|
|
402
415
|
--pa-input-border: #{$light-gray-300};
|
|
403
416
|
--pa-input-text: #{$light-gray-900};
|
|
404
417
|
|
|
418
|
+
// Input group - light gray background for light mode
|
|
419
|
+
--pa-input-group-prepend-bg: #{$light-gray-200};
|
|
420
|
+
--pa-input-group-prepend-text: #{$light-gray-700};
|
|
421
|
+
--pa-input-group-append-bg: #{$light-gray-200};
|
|
422
|
+
--pa-input-group-append-text: #{$light-gray-700};
|
|
423
|
+
|
|
405
424
|
// Tables
|
|
406
425
|
--pa-table-bg: #{$light-white};
|
|
407
426
|
--pa-table-header-bg: #{$light-gray-100};
|
|
@@ -507,4 +526,17 @@ $card-border-radius: 0; // Sharp edges
|
|
|
507
526
|
color: var(--pa-header-text-secondary);
|
|
508
527
|
}
|
|
509
528
|
}
|
|
529
|
+
|
|
530
|
+
// Footer - light text on dark background
|
|
531
|
+
.pa-layout__footer {
|
|
532
|
+
color: #cccccc;
|
|
533
|
+
|
|
534
|
+
a {
|
|
535
|
+
color: #ffffff;
|
|
536
|
+
|
|
537
|
+
&:hover {
|
|
538
|
+
color: $audi-red;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
510
542
|
}
|