@keenmate/pure-admin-theme-audi 1.0.0-rc06 → 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 +532 -20
- package/package.json +3 -3
- package/src/scss/audi.scss +6 -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 {
|
|
@@ -425,19 +424,90 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
425
424
|
gap: 0.4rem;
|
|
426
425
|
}
|
|
427
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
|
+
}
|
|
428
452
|
/* ========================================
|
|
429
453
|
Sidebar Component
|
|
430
454
|
Sidebar navigation with nested submenus
|
|
431
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
|
+
|
|
432
466
|
.pa-layout__sidebar {
|
|
433
|
-
width: 29rem;
|
|
434
467
|
background-color: var(--pa-sidebar-bg);
|
|
435
468
|
border-right: 1px solid var(--pa-border-color);
|
|
436
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;
|
|
437
506
|
}
|
|
438
507
|
|
|
439
508
|
body.pa-layout--sticky .pa-layout__sidebar {
|
|
440
509
|
overflow-y: auto;
|
|
510
|
+
overflow-y: overlay;
|
|
441
511
|
overflow-x: visible;
|
|
442
512
|
}
|
|
443
513
|
|
|
@@ -2562,6 +2632,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2562
2632
|
padding-bottom: 0;
|
|
2563
2633
|
}
|
|
2564
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
|
+
}
|
|
2565
2773
|
/* ========================================
|
|
2566
2774
|
Card Components
|
|
2567
2775
|
Cards with headers, bodies, footers, variants, and card sections
|
|
@@ -6491,10 +6699,11 @@ a.pa-card p {
|
|
|
6491
6699
|
.pa-input-group__prepend, .pa-input-group__append {
|
|
6492
6700
|
display: flex;
|
|
6493
6701
|
align-items: center;
|
|
6494
|
-
|
|
6702
|
+
height: 3.5rem;
|
|
6703
|
+
line-height: 3.5rem;
|
|
6704
|
+
padding: 0 0.8rem;
|
|
6495
6705
|
border: 1px solid var(--pa-border-color);
|
|
6496
6706
|
font-size: 1.4rem;
|
|
6497
|
-
line-height: 1;
|
|
6498
6707
|
white-space: nowrap;
|
|
6499
6708
|
border-radius: 0;
|
|
6500
6709
|
}
|
|
@@ -6529,32 +6738,29 @@ a.pa-card p {
|
|
|
6529
6738
|
border-left: 1px solid var(--pa-border-color);
|
|
6530
6739
|
}
|
|
6531
6740
|
|
|
6532
|
-
.pa-input-group:focus
|
|
6741
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
|
|
6533
6742
|
border-right: 1px solid var(--pa-input-focus-border-color);
|
|
6534
6743
|
}
|
|
6535
6744
|
|
|
6536
|
-
.pa-input-group:focus
|
|
6745
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
|
|
6537
6746
|
border-right: none;
|
|
6538
6747
|
}
|
|
6539
6748
|
|
|
6540
|
-
.pa-input-group:focus
|
|
6749
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append {
|
|
6541
6750
|
border-left: 1px solid var(--pa-input-focus-border-color);
|
|
6542
6751
|
}
|
|
6543
6752
|
|
|
6544
|
-
.pa-input-group:focus
|
|
6753
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
|
|
6545
6754
|
border-left: 1px solid var(--pa-border-color);
|
|
6546
6755
|
}
|
|
6547
6756
|
|
|
6548
6757
|
.pa-input-group__button {
|
|
6549
6758
|
border-radius: 0;
|
|
6550
|
-
border-color: var(--pa-border-color);
|
|
6551
|
-
border-left: none;
|
|
6552
6759
|
}
|
|
6553
6760
|
|
|
6554
6761
|
.pa-input-group__button:first-child {
|
|
6555
6762
|
border-top-left-radius: 1px;
|
|
6556
6763
|
border-bottom-left-radius: 1px;
|
|
6557
|
-
border-left: 1px solid var(--pa-border-color);
|
|
6558
6764
|
}
|
|
6559
6765
|
|
|
6560
6766
|
.pa-input-group__button:last-child {
|
|
@@ -6564,25 +6770,29 @@ a.pa-card p {
|
|
|
6564
6770
|
|
|
6565
6771
|
.pa-input-group--xs .pa-input-group__prepend,
|
|
6566
6772
|
.pa-input-group--xs .pa-input-group__append {
|
|
6567
|
-
|
|
6773
|
+
height: 3.1rem;
|
|
6774
|
+
line-height: 3.1rem;
|
|
6568
6775
|
font-size: 1.2rem;
|
|
6569
6776
|
}
|
|
6570
6777
|
|
|
6571
6778
|
.pa-input-group--sm .pa-input-group__prepend,
|
|
6572
6779
|
.pa-input-group--sm .pa-input-group__append {
|
|
6573
|
-
|
|
6780
|
+
height: 3.3rem;
|
|
6781
|
+
line-height: 3.3rem;
|
|
6574
6782
|
font-size: 1.4rem;
|
|
6575
6783
|
}
|
|
6576
6784
|
|
|
6577
6785
|
.pa-input-group--lg .pa-input-group__prepend,
|
|
6578
6786
|
.pa-input-group--lg .pa-input-group__append {
|
|
6579
|
-
|
|
6787
|
+
height: 3.8rem;
|
|
6788
|
+
line-height: 3.8rem;
|
|
6580
6789
|
font-size: 1.6rem;
|
|
6581
6790
|
}
|
|
6582
6791
|
|
|
6583
6792
|
.pa-input-group--xl .pa-input-group__prepend,
|
|
6584
6793
|
.pa-input-group--xl .pa-input-group__append {
|
|
6585
|
-
|
|
6794
|
+
height: 4.1rem;
|
|
6795
|
+
line-height: 4.1rem;
|
|
6586
6796
|
font-size: 1.8rem;
|
|
6587
6797
|
}
|
|
6588
6798
|
|
|
@@ -9258,6 +9468,16 @@ code {
|
|
|
9258
9468
|
Profile Panel Components
|
|
9259
9469
|
Profile panel and header button
|
|
9260
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
|
+
|
|
9261
9481
|
.pa-header__profile-btn {
|
|
9262
9482
|
display: flex;
|
|
9263
9483
|
align-items: center;
|
|
@@ -9321,8 +9541,6 @@ code {
|
|
|
9321
9541
|
position: absolute;
|
|
9322
9542
|
top: 0;
|
|
9323
9543
|
right: 0;
|
|
9324
|
-
width: 20vw;
|
|
9325
|
-
max-width: 48rem;
|
|
9326
9544
|
height: 100vh;
|
|
9327
9545
|
background-color: var(--pa-card-bg);
|
|
9328
9546
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
|
|
@@ -11533,6 +11751,60 @@ code {
|
|
|
11533
11751
|
right: -1.6rem;
|
|
11534
11752
|
}
|
|
11535
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
|
+
}
|
|
11536
11808
|
/* ========================================
|
|
11537
11809
|
Popconfirm Component
|
|
11538
11810
|
Small confirmation dialog anchored to trigger button
|
|
@@ -12024,6 +12296,21 @@ html.font-size-4xl {
|
|
|
12024
12296
|
overflow: visible;
|
|
12025
12297
|
}
|
|
12026
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
|
+
|
|
12027
12314
|
.cursor-pointer {
|
|
12028
12315
|
cursor: pointer;
|
|
12029
12316
|
}
|
|
@@ -12304,6 +12591,12 @@ html.font-size-4xl {
|
|
|
12304
12591
|
font-size: 3.2rem;
|
|
12305
12592
|
}
|
|
12306
12593
|
|
|
12594
|
+
.text-truncate {
|
|
12595
|
+
overflow: hidden;
|
|
12596
|
+
text-overflow: ellipsis;
|
|
12597
|
+
white-space: nowrap;
|
|
12598
|
+
}
|
|
12599
|
+
|
|
12307
12600
|
.component-showcase {
|
|
12308
12601
|
display: flex;
|
|
12309
12602
|
flex-wrap: wrap;
|
|
@@ -13411,6 +13704,10 @@ html.font-size-4xl {
|
|
|
13411
13704
|
width: auto !important;
|
|
13412
13705
|
}
|
|
13413
13706
|
|
|
13707
|
+
.w-1-2 {
|
|
13708
|
+
width: 50% !important;
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13414
13711
|
.w-1-3 {
|
|
13415
13712
|
width: 33.333333% !important;
|
|
13416
13713
|
}
|
|
@@ -13419,6 +13716,14 @@ html.font-size-4xl {
|
|
|
13419
13716
|
width: 66.666667% !important;
|
|
13420
13717
|
}
|
|
13421
13718
|
|
|
13719
|
+
.w-1-4 {
|
|
13720
|
+
width: 25% !important;
|
|
13721
|
+
}
|
|
13722
|
+
|
|
13723
|
+
.w-3-4 {
|
|
13724
|
+
width: 75% !important;
|
|
13725
|
+
}
|
|
13726
|
+
|
|
13422
13727
|
.mw-25 {
|
|
13423
13728
|
min-width: 25% !important;
|
|
13424
13729
|
}
|
|
@@ -13439,6 +13744,10 @@ html.font-size-4xl {
|
|
|
13439
13744
|
min-width: auto !important;
|
|
13440
13745
|
}
|
|
13441
13746
|
|
|
13747
|
+
.mw-1-2 {
|
|
13748
|
+
min-width: 50% !important;
|
|
13749
|
+
}
|
|
13750
|
+
|
|
13442
13751
|
.mw-1-3 {
|
|
13443
13752
|
min-width: 33.333333% !important;
|
|
13444
13753
|
}
|
|
@@ -13447,6 +13756,14 @@ html.font-size-4xl {
|
|
|
13447
13756
|
min-width: 66.666667% !important;
|
|
13448
13757
|
}
|
|
13449
13758
|
|
|
13759
|
+
.mw-1-4 {
|
|
13760
|
+
min-width: 25% !important;
|
|
13761
|
+
}
|
|
13762
|
+
|
|
13763
|
+
.mw-3-4 {
|
|
13764
|
+
min-width: 75% !important;
|
|
13765
|
+
}
|
|
13766
|
+
|
|
13450
13767
|
.w-25-fixed {
|
|
13451
13768
|
min-width: 25% !important;
|
|
13452
13769
|
width: 25% !important;
|
|
@@ -13467,6 +13784,11 @@ html.font-size-4xl {
|
|
|
13467
13784
|
width: 100% !important;
|
|
13468
13785
|
}
|
|
13469
13786
|
|
|
13787
|
+
.w-1-2-fixed {
|
|
13788
|
+
min-width: 50% !important;
|
|
13789
|
+
width: 50% !important;
|
|
13790
|
+
}
|
|
13791
|
+
|
|
13470
13792
|
.w-1-3-fixed {
|
|
13471
13793
|
min-width: 33.333333% !important;
|
|
13472
13794
|
width: 33.333333% !important;
|
|
@@ -13477,6 +13799,16 @@ html.font-size-4xl {
|
|
|
13477
13799
|
width: 66.666667% !important;
|
|
13478
13800
|
}
|
|
13479
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
|
+
|
|
13480
13812
|
.h-25 {
|
|
13481
13813
|
height: 25% !important;
|
|
13482
13814
|
}
|
|
@@ -13497,6 +13829,26 @@ html.font-size-4xl {
|
|
|
13497
13829
|
height: auto !important;
|
|
13498
13830
|
}
|
|
13499
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
|
+
|
|
13500
13852
|
.wr-1 {
|
|
13501
13853
|
width: 1rem !important;
|
|
13502
13854
|
}
|
|
@@ -13549,6 +13901,26 @@ html.font-size-4xl {
|
|
|
13549
13901
|
width: 25rem !important;
|
|
13550
13902
|
}
|
|
13551
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
|
+
|
|
13552
13924
|
.minwr-1 {
|
|
13553
13925
|
min-width: 1rem !important;
|
|
13554
13926
|
}
|
|
@@ -13601,6 +13973,26 @@ html.font-size-4xl {
|
|
|
13601
13973
|
min-width: 25rem !important;
|
|
13602
13974
|
}
|
|
13603
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
|
+
|
|
13604
13996
|
.maxwr-1 {
|
|
13605
13997
|
max-width: 1rem !important;
|
|
13606
13998
|
}
|
|
@@ -13653,6 +14045,26 @@ html.font-size-4xl {
|
|
|
13653
14045
|
max-width: 25rem !important;
|
|
13654
14046
|
}
|
|
13655
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
|
+
|
|
13656
14068
|
.hr-1 {
|
|
13657
14069
|
height: 1rem !important;
|
|
13658
14070
|
}
|
|
@@ -13705,6 +14117,26 @@ html.font-size-4xl {
|
|
|
13705
14117
|
height: 25rem !important;
|
|
13706
14118
|
}
|
|
13707
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
|
+
|
|
13708
14140
|
.minhr-1 {
|
|
13709
14141
|
min-height: 1rem !important;
|
|
13710
14142
|
}
|
|
@@ -13757,6 +14189,26 @@ html.font-size-4xl {
|
|
|
13757
14189
|
min-height: 25rem !important;
|
|
13758
14190
|
}
|
|
13759
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
|
+
|
|
13760
14212
|
.maxhr-1 {
|
|
13761
14213
|
max-height: 1rem !important;
|
|
13762
14214
|
}
|
|
@@ -13809,6 +14261,26 @@ html.font-size-4xl {
|
|
|
13809
14261
|
max-height: 25rem !important;
|
|
13810
14262
|
}
|
|
13811
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
|
+
|
|
13812
14284
|
.minw-5 {
|
|
13813
14285
|
min-width: 5% !important;
|
|
13814
14286
|
}
|
|
@@ -13977,6 +14449,10 @@ html.font-size-4xl {
|
|
|
13977
14449
|
max-width: 100% !important;
|
|
13978
14450
|
}
|
|
13979
14451
|
|
|
14452
|
+
.maxw-1-2 {
|
|
14453
|
+
max-width: 50% !important;
|
|
14454
|
+
}
|
|
14455
|
+
|
|
13980
14456
|
.maxw-1-3 {
|
|
13981
14457
|
max-width: 33.333333% !important;
|
|
13982
14458
|
}
|
|
@@ -13985,6 +14461,14 @@ html.font-size-4xl {
|
|
|
13985
14461
|
max-width: 66.666667% !important;
|
|
13986
14462
|
}
|
|
13987
14463
|
|
|
14464
|
+
.maxw-1-4 {
|
|
14465
|
+
max-width: 25% !important;
|
|
14466
|
+
}
|
|
14467
|
+
|
|
14468
|
+
.maxw-3-4 {
|
|
14469
|
+
max-width: 75% !important;
|
|
14470
|
+
}
|
|
14471
|
+
|
|
13988
14472
|
.minh-5 {
|
|
13989
14473
|
min-height: 5% !important;
|
|
13990
14474
|
}
|
|
@@ -14065,6 +14549,10 @@ html.font-size-4xl {
|
|
|
14065
14549
|
min-height: 100% !important;
|
|
14066
14550
|
}
|
|
14067
14551
|
|
|
14552
|
+
.minh-1-2 {
|
|
14553
|
+
min-height: 50% !important;
|
|
14554
|
+
}
|
|
14555
|
+
|
|
14068
14556
|
.minh-1-3 {
|
|
14069
14557
|
min-height: 33.333333% !important;
|
|
14070
14558
|
}
|
|
@@ -14073,6 +14561,14 @@ html.font-size-4xl {
|
|
|
14073
14561
|
min-height: 66.666667% !important;
|
|
14074
14562
|
}
|
|
14075
14563
|
|
|
14564
|
+
.minh-1-4 {
|
|
14565
|
+
min-height: 25% !important;
|
|
14566
|
+
}
|
|
14567
|
+
|
|
14568
|
+
.minh-3-4 {
|
|
14569
|
+
min-height: 75% !important;
|
|
14570
|
+
}
|
|
14571
|
+
|
|
14076
14572
|
.maxh-5 {
|
|
14077
14573
|
max-height: 5% !important;
|
|
14078
14574
|
}
|
|
@@ -14153,6 +14649,10 @@ html.font-size-4xl {
|
|
|
14153
14649
|
max-height: 100% !important;
|
|
14154
14650
|
}
|
|
14155
14651
|
|
|
14652
|
+
.maxh-1-2 {
|
|
14653
|
+
max-height: 50% !important;
|
|
14654
|
+
}
|
|
14655
|
+
|
|
14156
14656
|
.maxh-1-3 {
|
|
14157
14657
|
max-height: 33.333333% !important;
|
|
14158
14658
|
}
|
|
@@ -14161,6 +14661,14 @@ html.font-size-4xl {
|
|
|
14161
14661
|
max-height: 66.666667% !important;
|
|
14162
14662
|
}
|
|
14163
14663
|
|
|
14664
|
+
.maxh-1-4 {
|
|
14665
|
+
max-height: 25% !important;
|
|
14666
|
+
}
|
|
14667
|
+
|
|
14668
|
+
.maxh-3-4 {
|
|
14669
|
+
max-height: 75% !important;
|
|
14670
|
+
}
|
|
14671
|
+
|
|
14164
14672
|
.position-static {
|
|
14165
14673
|
position: static !important;
|
|
14166
14674
|
}
|
|
@@ -14701,6 +15209,10 @@ html.font-size-4xl {
|
|
|
14701
15209
|
--pa-input-bg: #ffffff;
|
|
14702
15210
|
--pa-input-border: #dee2e6;
|
|
14703
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;
|
|
14704
15216
|
--pa-table-bg: #ffffff;
|
|
14705
15217
|
--pa-table-header-bg: #f1f3f5;
|
|
14706
15218
|
--pa-table-stripe: #f8f9fa;
|
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
|
@@ -415,6 +415,12 @@ $card-border-radius: 0; // Sharp edges
|
|
|
415
415
|
--pa-input-border: #{$light-gray-300};
|
|
416
416
|
--pa-input-text: #{$light-gray-900};
|
|
417
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
|
+
|
|
418
424
|
// Tables
|
|
419
425
|
--pa-table-bg: #{$light-white};
|
|
420
426
|
--pa-table-header-bg: #{$light-gray-100};
|