@keenmate/pure-admin-theme-express 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/express.css CHANGED
@@ -182,18 +182,17 @@ label {
182
182
  }
183
183
 
184
184
  *::-webkit-scrollbar-thumb {
185
- background: #E5E5E5;
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: #D40511;
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: rgba(212, 5, 17, 0.12);
195
+ background: var(--pa-accent-hover);
197
196
  }
198
197
 
199
198
  *::-webkit-scrollbar-corner {
@@ -424,19 +423,90 @@ body.pa-layout--sticky .pa-layout__inner {
424
423
  gap: 0.4rem;
425
424
  }
426
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
+ }
427
451
  /* ========================================
428
452
  Sidebar Component
429
453
  Sidebar navigation with nested submenus
430
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
+
431
465
  .pa-layout__sidebar {
432
- width: 29rem;
433
466
  background-color: var(--pa-sidebar-bg);
434
467
  border-right: 1px solid var(--pa-border-color);
435
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;
436
505
  }
437
506
 
438
507
  body.pa-layout--sticky .pa-layout__sidebar {
439
508
  overflow-y: auto;
509
+ overflow-y: overlay;
440
510
  overflow-x: visible;
441
511
  }
442
512
 
@@ -2561,6 +2631,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2561
2631
  padding-bottom: 0;
2562
2632
  }
2563
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
+ }
2564
2772
  /* ========================================
2565
2773
  Card Components
2566
2774
  Cards with headers, bodies, footers, variants, and card sections
@@ -6490,10 +6698,11 @@ a.pa-card p {
6490
6698
  .pa-input-group__prepend, .pa-input-group__append {
6491
6699
  display: flex;
6492
6700
  align-items: center;
6493
- padding: 0.8rem 0.8rem;
6701
+ height: 3.5rem;
6702
+ line-height: 3.5rem;
6703
+ padding: 0 0.8rem;
6494
6704
  border: 1px solid var(--pa-border-color);
6495
6705
  font-size: 1.4rem;
6496
- line-height: 1;
6497
6706
  white-space: nowrap;
6498
6707
  border-radius: 0;
6499
6708
  }
@@ -6528,32 +6737,29 @@ a.pa-card p {
6528
6737
  border-left: 1px solid var(--pa-border-color);
6529
6738
  }
6530
6739
 
6531
- .pa-input-group:focus-within .pa-input-group__prepend {
6740
+ .pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
6532
6741
  border-right: 1px solid var(--pa-input-focus-border-color);
6533
6742
  }
6534
6743
 
6535
- .pa-input-group:focus-within .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
6744
+ .pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
6536
6745
  border-right: none;
6537
6746
  }
6538
6747
 
6539
- .pa-input-group:focus-within .pa-input-group__append {
6748
+ .pa-input-group:has(.pa-input:focus) .pa-input-group__append {
6540
6749
  border-left: 1px solid var(--pa-input-focus-border-color);
6541
6750
  }
6542
6751
 
6543
- .pa-input-group:focus-within .pa-input-group__append + .pa-input-group__append {
6752
+ .pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
6544
6753
  border-left: 1px solid var(--pa-border-color);
6545
6754
  }
6546
6755
 
6547
6756
  .pa-input-group__button {
6548
6757
  border-radius: 0;
6549
- border-color: var(--pa-border-color);
6550
- border-left: none;
6551
6758
  }
6552
6759
 
6553
6760
  .pa-input-group__button:first-child {
6554
6761
  border-top-left-radius: 4px;
6555
6762
  border-bottom-left-radius: 4px;
6556
- border-left: 1px solid var(--pa-border-color);
6557
6763
  }
6558
6764
 
6559
6765
  .pa-input-group__button:last-child {
@@ -6563,25 +6769,29 @@ a.pa-card p {
6563
6769
 
6564
6770
  .pa-input-group--xs .pa-input-group__prepend,
6565
6771
  .pa-input-group--xs .pa-input-group__append {
6566
- padding: 0.6rem 0.8rem;
6772
+ height: 3.1rem;
6773
+ line-height: 3.1rem;
6567
6774
  font-size: 1.2rem;
6568
6775
  }
6569
6776
 
6570
6777
  .pa-input-group--sm .pa-input-group__prepend,
6571
6778
  .pa-input-group--sm .pa-input-group__append {
6572
- padding: 0.8rem 0.8rem;
6779
+ height: 3.3rem;
6780
+ line-height: 3.3rem;
6573
6781
  font-size: 1.4rem;
6574
6782
  }
6575
6783
 
6576
6784
  .pa-input-group--lg .pa-input-group__prepend,
6577
6785
  .pa-input-group--lg .pa-input-group__append {
6578
- padding: 0.8rem 0.8rem;
6786
+ height: 3.8rem;
6787
+ line-height: 3.8rem;
6579
6788
  font-size: 1.6rem;
6580
6789
  }
6581
6790
 
6582
6791
  .pa-input-group--xl .pa-input-group__prepend,
6583
6792
  .pa-input-group--xl .pa-input-group__append {
6584
- padding: 0.8rem 0.8rem;
6793
+ height: 4.1rem;
6794
+ line-height: 4.1rem;
6585
6795
  font-size: 1.8rem;
6586
6796
  }
6587
6797
 
@@ -9243,6 +9453,16 @@ code {
9243
9453
  Profile Panel Components
9244
9454
  Profile panel and header button
9245
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
+
9246
9466
  .pa-header__profile-btn {
9247
9467
  display: flex;
9248
9468
  align-items: center;
@@ -9306,8 +9526,6 @@ code {
9306
9526
  position: absolute;
9307
9527
  top: 0;
9308
9528
  right: 0;
9309
- width: 20vw;
9310
- max-width: 48rem;
9311
9529
  height: 100vh;
9312
9530
  background-color: var(--pa-card-bg);
9313
9531
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
@@ -11518,6 +11736,60 @@ code {
11518
11736
  right: -1.6rem;
11519
11737
  }
11520
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
+ }
11521
11793
  /* ========================================
11522
11794
  Popconfirm Component
11523
11795
  Small confirmation dialog anchored to trigger button
@@ -12009,6 +12281,21 @@ html.font-size-4xl {
12009
12281
  overflow: visible;
12010
12282
  }
12011
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
+
12012
12299
  .cursor-pointer {
12013
12300
  cursor: pointer;
12014
12301
  }
@@ -12289,6 +12576,12 @@ html.font-size-4xl {
12289
12576
  font-size: 3.2rem;
12290
12577
  }
12291
12578
 
12579
+ .text-truncate {
12580
+ overflow: hidden;
12581
+ text-overflow: ellipsis;
12582
+ white-space: nowrap;
12583
+ }
12584
+
12292
12585
  .component-showcase {
12293
12586
  display: flex;
12294
12587
  flex-wrap: wrap;
@@ -13396,6 +13689,10 @@ html.font-size-4xl {
13396
13689
  width: auto !important;
13397
13690
  }
13398
13691
 
13692
+ .w-1-2 {
13693
+ width: 50% !important;
13694
+ }
13695
+
13399
13696
  .w-1-3 {
13400
13697
  width: 33.333333% !important;
13401
13698
  }
@@ -13404,6 +13701,14 @@ html.font-size-4xl {
13404
13701
  width: 66.666667% !important;
13405
13702
  }
13406
13703
 
13704
+ .w-1-4 {
13705
+ width: 25% !important;
13706
+ }
13707
+
13708
+ .w-3-4 {
13709
+ width: 75% !important;
13710
+ }
13711
+
13407
13712
  .mw-25 {
13408
13713
  min-width: 25% !important;
13409
13714
  }
@@ -13424,6 +13729,10 @@ html.font-size-4xl {
13424
13729
  min-width: auto !important;
13425
13730
  }
13426
13731
 
13732
+ .mw-1-2 {
13733
+ min-width: 50% !important;
13734
+ }
13735
+
13427
13736
  .mw-1-3 {
13428
13737
  min-width: 33.333333% !important;
13429
13738
  }
@@ -13432,6 +13741,14 @@ html.font-size-4xl {
13432
13741
  min-width: 66.666667% !important;
13433
13742
  }
13434
13743
 
13744
+ .mw-1-4 {
13745
+ min-width: 25% !important;
13746
+ }
13747
+
13748
+ .mw-3-4 {
13749
+ min-width: 75% !important;
13750
+ }
13751
+
13435
13752
  .w-25-fixed {
13436
13753
  min-width: 25% !important;
13437
13754
  width: 25% !important;
@@ -13452,6 +13769,11 @@ html.font-size-4xl {
13452
13769
  width: 100% !important;
13453
13770
  }
13454
13771
 
13772
+ .w-1-2-fixed {
13773
+ min-width: 50% !important;
13774
+ width: 50% !important;
13775
+ }
13776
+
13455
13777
  .w-1-3-fixed {
13456
13778
  min-width: 33.333333% !important;
13457
13779
  width: 33.333333% !important;
@@ -13462,6 +13784,16 @@ html.font-size-4xl {
13462
13784
  width: 66.666667% !important;
13463
13785
  }
13464
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
+
13465
13797
  .h-25 {
13466
13798
  height: 25% !important;
13467
13799
  }
@@ -13482,6 +13814,26 @@ html.font-size-4xl {
13482
13814
  height: auto !important;
13483
13815
  }
13484
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
+
13485
13837
  .wr-1 {
13486
13838
  width: 1rem !important;
13487
13839
  }
@@ -13534,6 +13886,26 @@ html.font-size-4xl {
13534
13886
  width: 25rem !important;
13535
13887
  }
13536
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
+
13537
13909
  .minwr-1 {
13538
13910
  min-width: 1rem !important;
13539
13911
  }
@@ -13586,6 +13958,26 @@ html.font-size-4xl {
13586
13958
  min-width: 25rem !important;
13587
13959
  }
13588
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
+
13589
13981
  .maxwr-1 {
13590
13982
  max-width: 1rem !important;
13591
13983
  }
@@ -13638,6 +14030,26 @@ html.font-size-4xl {
13638
14030
  max-width: 25rem !important;
13639
14031
  }
13640
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
+
13641
14053
  .hr-1 {
13642
14054
  height: 1rem !important;
13643
14055
  }
@@ -13690,6 +14102,26 @@ html.font-size-4xl {
13690
14102
  height: 25rem !important;
13691
14103
  }
13692
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
+
13693
14125
  .minhr-1 {
13694
14126
  min-height: 1rem !important;
13695
14127
  }
@@ -13742,6 +14174,26 @@ html.font-size-4xl {
13742
14174
  min-height: 25rem !important;
13743
14175
  }
13744
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
+
13745
14197
  .maxhr-1 {
13746
14198
  max-height: 1rem !important;
13747
14199
  }
@@ -13794,6 +14246,26 @@ html.font-size-4xl {
13794
14246
  max-height: 25rem !important;
13795
14247
  }
13796
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
+
13797
14269
  .minw-5 {
13798
14270
  min-width: 5% !important;
13799
14271
  }
@@ -13962,6 +14434,10 @@ html.font-size-4xl {
13962
14434
  max-width: 100% !important;
13963
14435
  }
13964
14436
 
14437
+ .maxw-1-2 {
14438
+ max-width: 50% !important;
14439
+ }
14440
+
13965
14441
  .maxw-1-3 {
13966
14442
  max-width: 33.333333% !important;
13967
14443
  }
@@ -13970,6 +14446,14 @@ html.font-size-4xl {
13970
14446
  max-width: 66.666667% !important;
13971
14447
  }
13972
14448
 
14449
+ .maxw-1-4 {
14450
+ max-width: 25% !important;
14451
+ }
14452
+
14453
+ .maxw-3-4 {
14454
+ max-width: 75% !important;
14455
+ }
14456
+
13973
14457
  .minh-5 {
13974
14458
  min-height: 5% !important;
13975
14459
  }
@@ -14050,6 +14534,10 @@ html.font-size-4xl {
14050
14534
  min-height: 100% !important;
14051
14535
  }
14052
14536
 
14537
+ .minh-1-2 {
14538
+ min-height: 50% !important;
14539
+ }
14540
+
14053
14541
  .minh-1-3 {
14054
14542
  min-height: 33.333333% !important;
14055
14543
  }
@@ -14058,6 +14546,14 @@ html.font-size-4xl {
14058
14546
  min-height: 66.666667% !important;
14059
14547
  }
14060
14548
 
14549
+ .minh-1-4 {
14550
+ min-height: 25% !important;
14551
+ }
14552
+
14553
+ .minh-3-4 {
14554
+ min-height: 75% !important;
14555
+ }
14556
+
14061
14557
  .maxh-5 {
14062
14558
  max-height: 5% !important;
14063
14559
  }
@@ -14138,6 +14634,10 @@ html.font-size-4xl {
14138
14634
  max-height: 100% !important;
14139
14635
  }
14140
14636
 
14637
+ .maxh-1-2 {
14638
+ max-height: 50% !important;
14639
+ }
14640
+
14141
14641
  .maxh-1-3 {
14142
14642
  max-height: 33.333333% !important;
14143
14643
  }
@@ -14146,6 +14646,14 @@ html.font-size-4xl {
14146
14646
  max-height: 66.666667% !important;
14147
14647
  }
14148
14648
 
14649
+ .maxh-1-4 {
14650
+ max-height: 25% !important;
14651
+ }
14652
+
14653
+ .maxh-3-4 {
14654
+ max-height: 75% !important;
14655
+ }
14656
+
14149
14657
  .position-static {
14150
14658
  position: static !important;
14151
14659
  }
@@ -14689,6 +15197,10 @@ html.font-size-4xl {
14689
15197
  --pa-color-7: #8C8C8C;
14690
15198
  --pa-color-8: #333333;
14691
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;
14692
15204
  --drp-dropdown-bg: #ffffff;
14693
15205
  --drp-border-color: #E5E5E5;
14694
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-rc06",
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-rc06"
22
+ "@keenmate/pure-admin-core": "^1.0.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@keenmate/pure-admin-core": "^1.0.0-rc06",
25
+ "@keenmate/pure-admin-core": "^1.0.0",
26
26
  "sass": "^1.70.0"
27
27
  },
28
28
  "publishConfig": {
@@ -443,6 +443,12 @@ $alert-info-border: $base-info-color;
443
443
  // Pure Admin theme CSS variables
444
444
  @include output-pa-css-variables;
445
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
+
446
452
  // Web component overrides (light mode)
447
453
  --drp-dropdown-bg: #ffffff;
448
454
  --drp-border-color: #{$express-gray-lighter};