@keenmate/pure-admin-theme-corporate 1.0.0-rc02 → 1.0.0-rc05

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/corporate.css +1662 -295
  2. package/package.json +3 -3
@@ -2475,7 +2475,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2475
2475
  }
2476
2476
 
2477
2477
  .pa-card__header {
2478
- padding: 0.8rem 1rem;
2478
+ padding: 0.5rem 1rem;
2479
2479
  min-height: 4rem;
2480
2480
  border-top-left-radius: 8px;
2481
2481
  border-top-right-radius: 8px;
@@ -2515,6 +2515,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2515
2515
  font-size: 1.6rem;
2516
2516
  }
2517
2517
 
2518
+ .pa-card__header .pa-btn {
2519
+ margin-top: -0.25rem;
2520
+ margin-bottom: -0.25rem;
2521
+ }
2522
+
2518
2523
  .pa-card__title {
2519
2524
  display: flex;
2520
2525
  align-items: center;
@@ -2690,6 +2695,35 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2690
2695
  display: block;
2691
2696
  }
2692
2697
 
2698
+ .pa-card__tabs--inline {
2699
+ display: flex;
2700
+ gap: 0.4rem;
2701
+ margin: -0.5rem 0;
2702
+ border-bottom: none;
2703
+ background: none;
2704
+ }
2705
+
2706
+ .pa-card__tabs--inline .pa-card__tab {
2707
+ padding: 0.3rem 0.8rem;
2708
+ border: none;
2709
+ border-radius: 4px;
2710
+ font-size: 1.4rem;
2711
+ background: transparent;
2712
+ color: var(--pa-text-secondary);
2713
+ cursor: pointer;
2714
+ transition: all 0.1s ease-out;
2715
+ }
2716
+
2717
+ .pa-card__tabs--inline .pa-card__tab:hover {
2718
+ background-color: rgba(14, 165, 233, 0.05);
2719
+ color: var(--pa-text-primary);
2720
+ }
2721
+
2722
+ .pa-card__tabs--inline .pa-card__tab--active {
2723
+ background: var(--pa-accent);
2724
+ color: var(--pa-btn-primary-text);
2725
+ }
2726
+
2693
2727
  a.pa-card {
2694
2728
  text-decoration: none;
2695
2729
  display: block;
@@ -2970,8 +3004,23 @@ a.pa-card p {
2970
3004
  justify-content: center;
2971
3005
  }
2972
3006
 
3007
+ .pa-tabs--border-top {
3008
+ border-bottom: none;
3009
+ border-top: 1px solid var(--pa-border-color);
3010
+ }
3011
+
3012
+ .pa-tabs--border-top .pa-tabs__item {
3013
+ border-bottom: none;
3014
+ border-top: 2px solid transparent;
3015
+ }
3016
+
3017
+ .pa-tabs--border-top .pa-tabs__item--active {
3018
+ border-top-color: #0ea5e9;
3019
+ border-bottom-color: transparent;
3020
+ }
3021
+
2973
3022
  .pa-tabs--sm .pa-tabs__item {
2974
- padding: 0.6rem 1rem;
3023
+ padding: 0.8rem 1rem;
2975
3024
  font-size: 1.2rem;
2976
3025
  }
2977
3026
 
@@ -2980,7 +3029,7 @@ a.pa-card p {
2980
3029
  }
2981
3030
 
2982
3031
  .pa-tabs--lg .pa-tabs__item {
2983
- padding: 1rem 1.4rem;
3032
+ padding: 0.8rem 1.4rem;
2984
3033
  font-size: 1.8rem;
2985
3034
  }
2986
3035
 
@@ -3006,109 +3055,145 @@ a.pa-card p {
3006
3055
  padding-top: 1.2rem;
3007
3056
  }
3008
3057
 
3009
- .pa-tabs__vertical-layout {
3010
- display: flex;
3011
- gap: 1.6rem;
3012
- align-items: flex-start;
3013
- }
3014
-
3015
- .pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
3016
- padding-top: 0;
3017
- }
3018
-
3019
- .pa-tabs__vertical-layout--bordered {
3058
+ .pa-tabs__container--card {
3059
+ position: relative;
3020
3060
  border: 1px solid var(--pa-border-color);
3021
3061
  border-radius: 8px;
3022
- padding: 1.6rem 1rem;
3023
3062
  background-color: var(--pa-card-bg);
3063
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
3024
3064
  }
3025
3065
 
3026
- .pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
3027
- border-right: 1px solid var(--pa-border-color);
3028
- }
3029
-
3030
- .pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
3031
- width: 100%;
3032
- }
3033
-
3034
- .pa-tabs .pa-tabs__item--w-1x {
3035
- min-width: 1rem;
3036
- }
3037
-
3038
- .pa-tabs .pa-tabs__item--w-2x {
3039
- min-width: 2rem;
3066
+ .pa-tabs__container--card .pa-tabs {
3067
+ height: 4rem;
3068
+ padding: 0.5rem 1rem;
3069
+ background: var(--pa-card-header-bg);
3070
+ border-bottom: 1px solid var(--pa-border-color);
3071
+ box-sizing: border-box;
3072
+ border-top-left-radius: 8px;
3073
+ border-top-right-radius: 8px;
3074
+ margin-bottom: 0;
3075
+ align-items: center;
3076
+ gap: 0.4rem;
3077
+ flex-wrap: nowrap;
3078
+ overflow: visible;
3040
3079
  }
3041
3080
 
3042
- .pa-tabs .pa-tabs__item--w-3x {
3043
- min-width: 3rem;
3081
+ .pa-tabs__container--card .pa-tabs__content {
3082
+ padding: 1.6rem 1rem;
3044
3083
  }
3045
3084
 
3046
- .pa-tabs .pa-tabs__item--w-4x {
3047
- min-width: 4rem;
3085
+ .pa-tabs__container--card .pa-tabs__panel {
3086
+ padding-top: 0;
3048
3087
  }
3049
3088
 
3050
- .pa-tabs .pa-tabs__item--w-5x {
3051
- min-width: 5rem;
3089
+ .pa-tabs__container--card .pa-tabs__overflow {
3090
+ position: relative;
3091
+ margin-left: auto;
3092
+ flex-shrink: 0;
3052
3093
  }
3053
3094
 
3054
- .pa-tabs .pa-tabs__item--w-6x {
3055
- min-width: 6rem;
3095
+ .pa-tabs__container--card .pa-tabs__overflow-toggle {
3096
+ position: relative;
3097
+ display: flex;
3098
+ align-items: center;
3099
+ justify-content: center;
3100
+ width: 4rem;
3101
+ height: 100%;
3102
+ padding: 0;
3103
+ border: none;
3104
+ background: transparent;
3105
+ color: var(--pa-text-secondary);
3106
+ cursor: pointer;
3107
+ transition: all 0.1s ease-out;
3108
+ border-left: 1px solid var(--pa-border-color);
3109
+ margin: -0.5rem -1rem -0.5rem 0;
3110
+ box-sizing: content-box;
3111
+ height: 4rem;
3056
3112
  }
3057
3113
 
3058
- .pa-tabs .pa-tabs__item--w-7x {
3059
- min-width: 7rem;
3114
+ .pa-tabs__container--card .pa-tabs__overflow-toggle:hover {
3115
+ background-color: rgba(14, 165, 233, 0.05);
3116
+ color: var(--pa-text-primary);
3060
3117
  }
3061
3118
 
3062
- .pa-tabs .pa-tabs__item--w-8x {
3063
- min-width: 8rem;
3119
+ .pa-tabs__container--card .pa-tabs__overflow-toggle--has-active {
3120
+ color: var(--pa-accent);
3064
3121
  }
3065
3122
 
3066
- .pa-tabs .pa-tabs__item--w-9x {
3067
- min-width: 9rem;
3123
+ .pa-tabs__container--card .pa-tabs__overflow-toggle--has-active::after {
3124
+ content: "";
3125
+ position: absolute;
3126
+ bottom: 0;
3127
+ left: 0;
3128
+ right: 0;
3129
+ height: 2px;
3130
+ background: var(--pa-accent);
3068
3131
  }
3069
3132
 
3070
- .pa-tabs .pa-tabs__item--w-10x {
3071
- min-width: 10rem;
3133
+ .pa-tabs__container--card .pa-tabs__overflow-toggle i {
3134
+ font-size: 1.4rem;
3072
3135
  }
3073
3136
 
3074
- .pa-tabs .pa-tabs__item--h-1x {
3075
- min-height: 1rem;
3137
+ .pa-tabs__container--card .pa-tabs__overflow-menu {
3138
+ position: absolute;
3139
+ top: 4rem;
3140
+ right: 0;
3141
+ min-width: 15rem;
3142
+ background: var(--pa-card-bg);
3143
+ border: 1px solid var(--pa-border-color);
3144
+ border-radius: 4px;
3145
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
3146
+ z-index: 1000;
3147
+ display: none;
3148
+ flex-direction: column;
3149
+ padding: 0.4rem 0;
3076
3150
  }
3077
3151
 
3078
- .pa-tabs .pa-tabs__item--h-2x {
3079
- min-height: 2rem;
3152
+ .pa-tabs__container--card .pa-tabs__overflow-menu--open {
3153
+ display: flex;
3080
3154
  }
3081
3155
 
3082
- .pa-tabs .pa-tabs__item--h-3x {
3083
- min-height: 3rem;
3156
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item {
3157
+ padding: 0.8rem 1.6rem;
3158
+ border: none;
3159
+ border-bottom: none;
3160
+ border-radius: 0;
3161
+ text-align: left;
3162
+ white-space: nowrap;
3084
3163
  }
3085
3164
 
3086
- .pa-tabs .pa-tabs__item--h-4x {
3087
- min-height: 4rem;
3165
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item:hover {
3166
+ background-color: rgba(14, 165, 233, 0.05);
3088
3167
  }
3089
3168
 
3090
- .pa-tabs .pa-tabs__item--h-5x {
3091
- min-height: 5rem;
3169
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item--active {
3170
+ background-color: rgba(14, 165, 233, 0.1);
3171
+ border-bottom: none;
3092
3172
  }
3093
3173
 
3094
- .pa-tabs .pa-tabs__item--h-6x {
3095
- min-height: 6rem;
3174
+ .pa-tabs__vertical-layout {
3175
+ display: flex;
3176
+ gap: 1.6rem;
3177
+ align-items: flex-start;
3096
3178
  }
3097
3179
 
3098
- .pa-tabs .pa-tabs__item--h-7x {
3099
- min-height: 7rem;
3180
+ .pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
3181
+ padding-top: 0;
3100
3182
  }
3101
3183
 
3102
- .pa-tabs .pa-tabs__item--h-8x {
3103
- min-height: 8rem;
3184
+ .pa-tabs__vertical-layout--bordered {
3185
+ border: 1px solid var(--pa-border-color);
3186
+ border-radius: 8px;
3187
+ padding: 1.6rem 1rem;
3188
+ background-color: var(--pa-card-bg);
3104
3189
  }
3105
3190
 
3106
- .pa-tabs .pa-tabs__item--h-9x {
3107
- min-height: 9rem;
3191
+ .pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
3192
+ border-right: 1px solid var(--pa-border-color);
3108
3193
  }
3109
3194
 
3110
- .pa-tabs .pa-tabs__item--h-10x {
3111
- min-height: 10rem;
3195
+ .pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
3196
+ width: 100%;
3112
3197
  }
3113
3198
 
3114
3199
  /* ========================================
@@ -3477,8 +3562,8 @@ a.pa-card p {
3477
3562
  }
3478
3563
 
3479
3564
  .pa-list__avatar {
3480
- width: 4rem;
3481
- height: 4rem;
3565
+ width: 3.5rem;
3566
+ height: 3.5rem;
3482
3567
  border-radius: 50%;
3483
3568
  background-color: var(--pa-primary-bg);
3484
3569
  display: flex;
@@ -3615,64 +3700,6 @@ a.pa-card p {
3615
3700
  border-color: var(--pa-btn-dark-bg);
3616
3701
  }
3617
3702
 
3618
- .pa-badge--w-1x {
3619
- min-width: 1.6rem;
3620
- max-width: 1.6rem;
3621
- }
3622
-
3623
- .pa-badge--w-2x {
3624
- min-width: 3.2rem;
3625
- max-width: 3.2rem;
3626
- }
3627
-
3628
- .pa-badge--w-3x {
3629
- min-width: 4.8rem;
3630
- max-width: 4.8rem;
3631
- }
3632
-
3633
- .pa-badge--w-4x {
3634
- min-width: 6.4rem;
3635
- max-width: 6.4rem;
3636
- }
3637
-
3638
- .pa-badge--w-5x {
3639
- min-width: 8rem;
3640
- max-width: 8rem;
3641
- }
3642
-
3643
- .pa-badge--w-6x {
3644
- min-width: 9.6rem;
3645
- max-width: 9.6rem;
3646
- }
3647
-
3648
- .pa-badge--w-7x {
3649
- min-width: 11.2rem;
3650
- max-width: 11.2rem;
3651
- }
3652
-
3653
- .pa-badge--w-8x {
3654
- min-width: 12.8rem;
3655
- max-width: 12.8rem;
3656
- }
3657
-
3658
- .pa-badge--w-9x {
3659
- min-width: 14.4rem;
3660
- max-width: 14.4rem;
3661
- }
3662
-
3663
- .pa-badge--w-10x {
3664
- min-width: 16rem;
3665
- max-width: 16rem;
3666
- }
3667
-
3668
- .pa-badge[class*="--w-"] {
3669
- display: inline-block;
3670
- overflow: hidden;
3671
- text-overflow: ellipsis;
3672
- white-space: nowrap;
3673
- vertical-align: middle;
3674
- }
3675
-
3676
3703
  .pa-badge--ellipsis-left {
3677
3704
  direction: rtl;
3678
3705
  text-align: left;
@@ -4332,6 +4359,7 @@ a.pa-card p {
4332
4359
  ======================================== */
4333
4360
  .pa-btn {
4334
4361
  display: inline-block;
4362
+ height: 3.5rem;
4335
4363
  padding: 0.8rem 1.2rem;
4336
4364
  border: 1px solid transparent;
4337
4365
  border-radius: 4px;
@@ -4372,27 +4400,27 @@ a.pa-card p {
4372
4400
  }
4373
4401
 
4374
4402
  .pa-btn--xs {
4375
- padding: 0.4rem 0.8rem;
4403
+ height: 3.1rem;
4404
+ padding: 0.6rem 0.8rem;
4376
4405
  font-size: 1.2rem;
4377
- min-height: 2.8rem;
4378
4406
  }
4379
4407
 
4380
4408
  .pa-btn--sm {
4381
- padding: 0.6rem 1rem;
4409
+ height: 3.3rem;
4410
+ padding: 0.8rem 1rem;
4382
4411
  font-size: 1.4rem;
4383
- min-height: 3.2rem;
4384
4412
  }
4385
4413
 
4386
4414
  .pa-btn--lg {
4387
- padding: 1rem 1.4rem;
4415
+ height: 3.8rem;
4416
+ padding: 0.8rem 1.4rem;
4388
4417
  font-size: 1.6rem;
4389
- min-height: 4rem;
4390
4418
  }
4391
4419
 
4392
4420
  .pa-btn--xl {
4393
- padding: 1.2rem 1.6rem;
4421
+ height: 4.1rem;
4422
+ padding: 0.8rem 1.6rem;
4394
4423
  font-size: 1.8rem;
4395
- min-height: 4.4rem;
4396
4424
  }
4397
4425
 
4398
4426
  .pa-btn--success {
@@ -4583,32 +4611,33 @@ a.pa-card p {
4583
4611
  }
4584
4612
 
4585
4613
  .pa-btn--icon-only {
4586
- width: 4rem;
4587
- height: 4rem;
4614
+ width: 3.5rem;
4615
+ height: 3.5rem;
4588
4616
  padding: 0;
4589
4617
  display: flex;
4590
4618
  align-items: center;
4591
4619
  justify-content: center;
4620
+ line-height: 1;
4592
4621
  }
4593
4622
 
4594
4623
  .pa-btn--icon-only.pa-btn--xs {
4595
- width: 2.8rem;
4596
- height: 2.8rem;
4624
+ width: 3.1rem;
4625
+ height: 3.1rem;
4597
4626
  }
4598
4627
 
4599
4628
  .pa-btn--icon-only.pa-btn--sm {
4600
- width: 3.2rem;
4601
- height: 3.2rem;
4629
+ width: 3.3rem;
4630
+ height: 3.3rem;
4602
4631
  }
4603
4632
 
4604
4633
  .pa-btn--icon-only.pa-btn--lg {
4605
- width: 4.8rem;
4606
- height: 4.8rem;
4634
+ width: 3.8rem;
4635
+ height: 3.8rem;
4607
4636
  }
4608
4637
 
4609
4638
  .pa-btn--icon-only.pa-btn--xl {
4610
- width: 5.6rem;
4611
- height: 5.6rem;
4639
+ width: 4.1rem;
4640
+ height: 4.1rem;
4612
4641
  }
4613
4642
 
4614
4643
  .pa-btn__icon {
@@ -4641,46 +4670,6 @@ a.pa-card p {
4641
4670
  margin: 0;
4642
4671
  }
4643
4672
 
4644
- .pa-btn--w-1x {
4645
- min-width: 1.6rem;
4646
- }
4647
-
4648
- .pa-btn--w-2x {
4649
- min-width: 3.2rem;
4650
- }
4651
-
4652
- .pa-btn--w-3x {
4653
- min-width: 4.8rem;
4654
- }
4655
-
4656
- .pa-btn--w-4x {
4657
- min-width: 6.4rem;
4658
- }
4659
-
4660
- .pa-btn--w-5x {
4661
- min-width: 8rem;
4662
- }
4663
-
4664
- .pa-btn--w-6x {
4665
- min-width: 9.6rem;
4666
- }
4667
-
4668
- .pa-btn--w-7x {
4669
- min-width: 11.2rem;
4670
- }
4671
-
4672
- .pa-btn--w-8x {
4673
- min-width: 12.8rem;
4674
- }
4675
-
4676
- .pa-btn--w-9x {
4677
- min-width: 14.4rem;
4678
- }
4679
-
4680
- .pa-btn--w-10x {
4681
- min-width: 16rem;
4682
- }
4683
-
4684
4673
  .pa-btn--align-left {
4685
4674
  justify-content: flex-start;
4686
4675
  }
@@ -4715,19 +4704,11 @@ a.pa-card p {
4715
4704
 
4716
4705
  .pa-btn-group {
4717
4706
  display: inline-flex;
4718
- gap: 0.32rem;
4707
+ gap: 0.3rem;
4719
4708
  flex-wrap: wrap;
4720
4709
  align-items: center;
4721
4710
  }
4722
4711
 
4723
- .pa-btn-group--compact {
4724
- gap: 0.16rem;
4725
- }
4726
-
4727
- .pa-btn-group--loose {
4728
- gap: 0.8rem;
4729
- }
4730
-
4731
4712
  .pa-btn-group--vertical {
4732
4713
  flex-direction: column;
4733
4714
  align-items: flex-start;
@@ -5298,34 +5279,241 @@ a.pa-card p {
5298
5279
  border-left-color: var(--pa-btn-danger-bg);
5299
5280
  }
5300
5281
 
5301
- .pa-tooltip--auto-flip-bottom::before {
5302
- bottom: auto !important;
5303
- top: calc(100% + 8px) !important;
5304
- transform: translateX(-50%) translateY(4px) !important;
5282
+ .pa-tooltip--color-1::before {
5283
+ background-color: var(--pa-color-1);
5305
5284
  }
5306
5285
 
5307
- .pa-tooltip--auto-flip-bottom::after {
5308
- bottom: auto !important;
5309
- top: calc(100% + 3px) !important;
5310
- transform: translateX(-50%) translateY(4px) !important;
5311
- border-top-color: transparent !important;
5312
- border-bottom-color: var(--pa-tooltip-bg) !important;
5286
+ .pa-tooltip--color-1::after {
5287
+ border-top-color: var(--pa-color-1);
5313
5288
  }
5314
5289
 
5315
- .pa-tooltip--auto-flip-bottom:hover::before, .pa-tooltip--auto-flip-bottom:hover::after {
5316
- transform: translateX(-50%) translateY(0) !important;
5290
+ .pa-tooltip--color-1.pa-tooltip--right::after {
5291
+ border-top-color: transparent;
5292
+ border-right-color: var(--pa-color-1);
5317
5293
  }
5318
5294
 
5319
- .pa-tooltip--auto-flip-top::before {
5320
- top: auto !important;
5321
- bottom: calc(100% + 8px) !important;
5322
- transform: translateX(-50%) translateY(-4px) !important;
5295
+ .pa-tooltip--color-1.pa-tooltip--bottom::after {
5296
+ border-top-color: transparent;
5297
+ border-bottom-color: var(--pa-color-1);
5323
5298
  }
5324
5299
 
5325
- .pa-tooltip--auto-flip-top::after {
5326
- top: auto !important;
5327
- bottom: calc(100% + 3px) !important;
5328
- transform: translateX(-50%) translateY(-4px) !important;
5300
+ .pa-tooltip--color-1.pa-tooltip--left::after {
5301
+ border-top-color: transparent;
5302
+ border-left-color: var(--pa-color-1);
5303
+ }
5304
+
5305
+ .pa-tooltip--color-2::before {
5306
+ background-color: var(--pa-color-2);
5307
+ }
5308
+
5309
+ .pa-tooltip--color-2::after {
5310
+ border-top-color: var(--pa-color-2);
5311
+ }
5312
+
5313
+ .pa-tooltip--color-2.pa-tooltip--right::after {
5314
+ border-top-color: transparent;
5315
+ border-right-color: var(--pa-color-2);
5316
+ }
5317
+
5318
+ .pa-tooltip--color-2.pa-tooltip--bottom::after {
5319
+ border-top-color: transparent;
5320
+ border-bottom-color: var(--pa-color-2);
5321
+ }
5322
+
5323
+ .pa-tooltip--color-2.pa-tooltip--left::after {
5324
+ border-top-color: transparent;
5325
+ border-left-color: var(--pa-color-2);
5326
+ }
5327
+
5328
+ .pa-tooltip--color-3::before {
5329
+ background-color: var(--pa-color-3);
5330
+ }
5331
+
5332
+ .pa-tooltip--color-3::after {
5333
+ border-top-color: var(--pa-color-3);
5334
+ }
5335
+
5336
+ .pa-tooltip--color-3.pa-tooltip--right::after {
5337
+ border-top-color: transparent;
5338
+ border-right-color: var(--pa-color-3);
5339
+ }
5340
+
5341
+ .pa-tooltip--color-3.pa-tooltip--bottom::after {
5342
+ border-top-color: transparent;
5343
+ border-bottom-color: var(--pa-color-3);
5344
+ }
5345
+
5346
+ .pa-tooltip--color-3.pa-tooltip--left::after {
5347
+ border-top-color: transparent;
5348
+ border-left-color: var(--pa-color-3);
5349
+ }
5350
+
5351
+ .pa-tooltip--color-4::before {
5352
+ background-color: var(--pa-color-4);
5353
+ }
5354
+
5355
+ .pa-tooltip--color-4::after {
5356
+ border-top-color: var(--pa-color-4);
5357
+ }
5358
+
5359
+ .pa-tooltip--color-4.pa-tooltip--right::after {
5360
+ border-top-color: transparent;
5361
+ border-right-color: var(--pa-color-4);
5362
+ }
5363
+
5364
+ .pa-tooltip--color-4.pa-tooltip--bottom::after {
5365
+ border-top-color: transparent;
5366
+ border-bottom-color: var(--pa-color-4);
5367
+ }
5368
+
5369
+ .pa-tooltip--color-4.pa-tooltip--left::after {
5370
+ border-top-color: transparent;
5371
+ border-left-color: var(--pa-color-4);
5372
+ }
5373
+
5374
+ .pa-tooltip--color-5::before {
5375
+ background-color: var(--pa-color-5);
5376
+ }
5377
+
5378
+ .pa-tooltip--color-5::after {
5379
+ border-top-color: var(--pa-color-5);
5380
+ }
5381
+
5382
+ .pa-tooltip--color-5.pa-tooltip--right::after {
5383
+ border-top-color: transparent;
5384
+ border-right-color: var(--pa-color-5);
5385
+ }
5386
+
5387
+ .pa-tooltip--color-5.pa-tooltip--bottom::after {
5388
+ border-top-color: transparent;
5389
+ border-bottom-color: var(--pa-color-5);
5390
+ }
5391
+
5392
+ .pa-tooltip--color-5.pa-tooltip--left::after {
5393
+ border-top-color: transparent;
5394
+ border-left-color: var(--pa-color-5);
5395
+ }
5396
+
5397
+ .pa-tooltip--color-6::before {
5398
+ background-color: var(--pa-color-6);
5399
+ }
5400
+
5401
+ .pa-tooltip--color-6::after {
5402
+ border-top-color: var(--pa-color-6);
5403
+ }
5404
+
5405
+ .pa-tooltip--color-6.pa-tooltip--right::after {
5406
+ border-top-color: transparent;
5407
+ border-right-color: var(--pa-color-6);
5408
+ }
5409
+
5410
+ .pa-tooltip--color-6.pa-tooltip--bottom::after {
5411
+ border-top-color: transparent;
5412
+ border-bottom-color: var(--pa-color-6);
5413
+ }
5414
+
5415
+ .pa-tooltip--color-6.pa-tooltip--left::after {
5416
+ border-top-color: transparent;
5417
+ border-left-color: var(--pa-color-6);
5418
+ }
5419
+
5420
+ .pa-tooltip--color-7::before {
5421
+ background-color: var(--pa-color-7);
5422
+ }
5423
+
5424
+ .pa-tooltip--color-7::after {
5425
+ border-top-color: var(--pa-color-7);
5426
+ }
5427
+
5428
+ .pa-tooltip--color-7.pa-tooltip--right::after {
5429
+ border-top-color: transparent;
5430
+ border-right-color: var(--pa-color-7);
5431
+ }
5432
+
5433
+ .pa-tooltip--color-7.pa-tooltip--bottom::after {
5434
+ border-top-color: transparent;
5435
+ border-bottom-color: var(--pa-color-7);
5436
+ }
5437
+
5438
+ .pa-tooltip--color-7.pa-tooltip--left::after {
5439
+ border-top-color: transparent;
5440
+ border-left-color: var(--pa-color-7);
5441
+ }
5442
+
5443
+ .pa-tooltip--color-8::before {
5444
+ background-color: var(--pa-color-8);
5445
+ }
5446
+
5447
+ .pa-tooltip--color-8::after {
5448
+ border-top-color: var(--pa-color-8);
5449
+ }
5450
+
5451
+ .pa-tooltip--color-8.pa-tooltip--right::after {
5452
+ border-top-color: transparent;
5453
+ border-right-color: var(--pa-color-8);
5454
+ }
5455
+
5456
+ .pa-tooltip--color-8.pa-tooltip--bottom::after {
5457
+ border-top-color: transparent;
5458
+ border-bottom-color: var(--pa-color-8);
5459
+ }
5460
+
5461
+ .pa-tooltip--color-8.pa-tooltip--left::after {
5462
+ border-top-color: transparent;
5463
+ border-left-color: var(--pa-color-8);
5464
+ }
5465
+
5466
+ .pa-tooltip--color-9::before {
5467
+ background-color: var(--pa-color-9);
5468
+ }
5469
+
5470
+ .pa-tooltip--color-9::after {
5471
+ border-top-color: var(--pa-color-9);
5472
+ }
5473
+
5474
+ .pa-tooltip--color-9.pa-tooltip--right::after {
5475
+ border-top-color: transparent;
5476
+ border-right-color: var(--pa-color-9);
5477
+ }
5478
+
5479
+ .pa-tooltip--color-9.pa-tooltip--bottom::after {
5480
+ border-top-color: transparent;
5481
+ border-bottom-color: var(--pa-color-9);
5482
+ }
5483
+
5484
+ .pa-tooltip--color-9.pa-tooltip--left::after {
5485
+ border-top-color: transparent;
5486
+ border-left-color: var(--pa-color-9);
5487
+ }
5488
+
5489
+ .pa-tooltip--auto-flip-bottom::before {
5490
+ bottom: auto !important;
5491
+ top: calc(100% + 8px) !important;
5492
+ transform: translateX(-50%) translateY(4px) !important;
5493
+ }
5494
+
5495
+ .pa-tooltip--auto-flip-bottom::after {
5496
+ bottom: auto !important;
5497
+ top: calc(100% + 3px) !important;
5498
+ transform: translateX(-50%) translateY(4px) !important;
5499
+ border-top-color: transparent !important;
5500
+ border-bottom-color: var(--pa-tooltip-bg) !important;
5501
+ }
5502
+
5503
+ .pa-tooltip--auto-flip-bottom:hover::before, .pa-tooltip--auto-flip-bottom:hover::after {
5504
+ transform: translateX(-50%) translateY(0) !important;
5505
+ }
5506
+
5507
+ .pa-tooltip--auto-flip-top::before {
5508
+ top: auto !important;
5509
+ bottom: calc(100% + 8px) !important;
5510
+ transform: translateX(-50%) translateY(-4px) !important;
5511
+ }
5512
+
5513
+ .pa-tooltip--auto-flip-top::after {
5514
+ top: auto !important;
5515
+ bottom: calc(100% + 3px) !important;
5516
+ transform: translateX(-50%) translateY(-4px) !important;
5329
5517
  border-bottom-color: transparent !important;
5330
5518
  border-top-color: var(--pa-tooltip-bg) !important;
5331
5519
  }
@@ -5435,6 +5623,7 @@ a.pa-card p {
5435
5623
  font-size: 1.4rem;
5436
5624
  line-height: 1.5;
5437
5625
  color: var(--pa-text-primary);
5626
+ text-align: left;
5438
5627
  }
5439
5628
 
5440
5629
  .pa-popover__body p {
@@ -5499,6 +5688,14 @@ a.pa-card p {
5499
5688
  max-width: 44.8rem;
5500
5689
  }
5501
5690
 
5691
+ .pa-popover--center .pa-popover__body {
5692
+ text-align: center;
5693
+ }
5694
+
5695
+ .pa-popover--right .pa-popover__body {
5696
+ text-align: right;
5697
+ }
5698
+
5502
5699
  .pa-tooltip-floating {
5503
5700
  background-color: var(--pa-tooltip-bg);
5504
5701
  color: var(--pa-tooltip-text);
@@ -5539,6 +5736,42 @@ a.pa-card p {
5539
5736
  color: var(--pa-btn-danger-text);
5540
5737
  }
5541
5738
 
5739
+ .pa-tooltip-floating.pa-tooltip--color-1 {
5740
+ background-color: var(--pa-color-1);
5741
+ }
5742
+
5743
+ .pa-tooltip-floating.pa-tooltip--color-2 {
5744
+ background-color: var(--pa-color-2);
5745
+ }
5746
+
5747
+ .pa-tooltip-floating.pa-tooltip--color-3 {
5748
+ background-color: var(--pa-color-3);
5749
+ }
5750
+
5751
+ .pa-tooltip-floating.pa-tooltip--color-4 {
5752
+ background-color: var(--pa-color-4);
5753
+ }
5754
+
5755
+ .pa-tooltip-floating.pa-tooltip--color-5 {
5756
+ background-color: var(--pa-color-5);
5757
+ }
5758
+
5759
+ .pa-tooltip-floating.pa-tooltip--color-6 {
5760
+ background-color: var(--pa-color-6);
5761
+ }
5762
+
5763
+ .pa-tooltip-floating.pa-tooltip--color-7 {
5764
+ background-color: var(--pa-color-7);
5765
+ }
5766
+
5767
+ .pa-tooltip-floating.pa-tooltip--color-8 {
5768
+ background-color: var(--pa-color-8);
5769
+ }
5770
+
5771
+ .pa-tooltip-floating.pa-tooltip--color-9 {
5772
+ background-color: var(--pa-color-9);
5773
+ }
5774
+
5542
5775
  /* ========================================
5543
5776
  Alert Components
5544
5777
  Alerts with variants, sizes, dismissible functionality
@@ -5742,6 +5975,131 @@ a.pa-card p {
5742
5975
  border-top: 1px solid rgba(0, 0, 0, 0.1);
5743
5976
  }
5744
5977
 
5978
+ /* ========================================
5979
+ Callout Components
5980
+ Documentation-style callouts with left border accent
5981
+ For tips, notes, warnings in content areas
5982
+ ======================================== */
5983
+ .pa-callout {
5984
+ position: relative;
5985
+ padding: 1.2rem 1rem;
5986
+ margin-bottom: 1.6rem;
5987
+ border-left: 0.4rem solid var(--pa-border-color);
5988
+ border-radius: 4px;
5989
+ font-size: 1.4rem;
5990
+ background-color: var(--pa-card-bg);
5991
+ }
5992
+
5993
+ .pa-card__body .pa-callout:first-child {
5994
+ margin-top: 0;
5995
+ }
5996
+
5997
+ .pa-card__body .pa-callout:last-child {
5998
+ margin-bottom: 0;
5999
+ }
6000
+
6001
+ .pa-callout--primary {
6002
+ border-left-color: var(--pa-accent);
6003
+ background-color: rgba(14, 165, 233, 0.08);
6004
+ }
6005
+
6006
+ .pa-callout--secondary {
6007
+ border-left-color: var(--pa-text-secondary);
6008
+ background-color: color-mix(in srgb, var(--pa-text-secondary) 5%, transparent);
6009
+ }
6010
+
6011
+ .pa-callout--success {
6012
+ border-left-color: var(--pa-success-bg);
6013
+ background-color: var(--pa-success-bg-subtle);
6014
+ }
6015
+
6016
+ .pa-callout--danger {
6017
+ border-left-color: var(--pa-danger-bg);
6018
+ background-color: var(--pa-danger-bg-subtle);
6019
+ }
6020
+
6021
+ .pa-callout--warning {
6022
+ border-left-color: var(--pa-warning-bg);
6023
+ background-color: var(--pa-warning-bg-subtle);
6024
+ }
6025
+
6026
+ .pa-callout--info {
6027
+ border-left-color: var(--pa-info-bg);
6028
+ background-color: var(--pa-info-bg-subtle);
6029
+ }
6030
+
6031
+ .pa-callout--sm {
6032
+ padding: 0.8rem 1.2rem;
6033
+ font-size: 1.2rem;
6034
+ }
6035
+
6036
+ .pa-callout--lg {
6037
+ padding: 2.4rem 3.2rem;
6038
+ font-size: 1.6rem;
6039
+ }
6040
+
6041
+ .pa-callout__icon {
6042
+ float: left;
6043
+ margin-right: 0.8rem;
6044
+ font-size: 1.8rem;
6045
+ line-height: 1;
6046
+ }
6047
+
6048
+ .pa-callout__heading {
6049
+ margin: 0 0 0.8rem 0;
6050
+ font-size: 1.6rem;
6051
+ font-weight: 600;
6052
+ }
6053
+
6054
+ .pa-callout__content::after {
6055
+ content: "";
6056
+ display: table;
6057
+ clear: both;
6058
+ }
6059
+
6060
+ .pa-callout > *:last-child {
6061
+ margin-bottom: 0;
6062
+ }
6063
+
6064
+ .pa-callout p {
6065
+ margin: 0 0 0.8rem 0;
6066
+ }
6067
+
6068
+ .pa-callout p:last-child {
6069
+ margin-bottom: 0;
6070
+ }
6071
+
6072
+ .pa-callout ul, .pa-callout ol {
6073
+ margin: 0.8rem 0;
6074
+ padding-left: 2.4rem;
6075
+ }
6076
+
6077
+ .pa-callout ul:last-child, .pa-callout ol:last-child {
6078
+ margin-bottom: 0;
6079
+ }
6080
+
6081
+ .pa-callout code {
6082
+ background-color: rgba(0, 0, 0, 0.08);
6083
+ padding: 0.1em 0.3em;
6084
+ border-radius: 2px;
6085
+ font-size: 0.9em;
6086
+ }
6087
+
6088
+ .pa-callout a {
6089
+ color: inherit;
6090
+ text-decoration: underline;
6091
+ font-weight: 500;
6092
+ }
6093
+
6094
+ .pa-callout a:hover {
6095
+ text-decoration: none;
6096
+ }
6097
+
6098
+ .pa-callout h1, .pa-callout h2, .pa-callout h3, .pa-callout h4, .pa-callout h5, .pa-callout h6 {
6099
+ color: inherit;
6100
+ margin-top: 0;
6101
+ }
6102
+
5745
6103
  /* ========================================
5746
6104
  Form Components
5747
6105
  Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
@@ -5810,6 +6168,7 @@ a.pa-card p {
5810
6168
  ======================================== */
5811
6169
  .pa-input {
5812
6170
  width: 100%;
6171
+ height: 3.5rem;
5813
6172
  padding: 0.8rem 0.8rem;
5814
6173
  border: 1px solid var(--pa-border-color);
5815
6174
  border-radius: 4px;
@@ -5827,6 +6186,7 @@ a.pa-card p {
5827
6186
 
5828
6187
  .pa-select {
5829
6188
  width: 100%;
6189
+ height: 3.5rem;
5830
6190
  padding: 0.7rem 0.5rem;
5831
6191
  border: 1px solid var(--pa-border-color);
5832
6192
  border-radius: 4px;
@@ -5867,24 +6227,28 @@ a.pa-card p {
5867
6227
 
5868
6228
  .pa-input--xs,
5869
6229
  .pa-select--xs {
6230
+ height: 3.1rem;
5870
6231
  padding: 0.6rem 0.8rem;
5871
6232
  font-size: 1.2rem;
5872
6233
  }
5873
6234
 
5874
6235
  .pa-input--sm,
5875
6236
  .pa-select--sm {
6237
+ height: 3.3rem;
5876
6238
  padding: 0.8rem 0.8rem;
5877
6239
  font-size: 1.4rem;
5878
6240
  }
5879
6241
 
5880
6242
  .pa-input--lg,
5881
6243
  .pa-select--lg {
6244
+ height: 3.8rem;
5882
6245
  padding: 0.8rem 0.8rem;
5883
6246
  font-size: 1.6rem;
5884
6247
  }
5885
6248
 
5886
6249
  .pa-input--xl,
5887
6250
  .pa-select--xl {
6251
+ height: 4.1rem;
5888
6252
  padding: 0.8rem 0.8rem;
5889
6253
  font-size: 1.8rem;
5890
6254
  }
@@ -6891,7 +7255,7 @@ web-daterangepicker {
6891
7255
  --drp-button-apply-color: #ffffff;
6892
7256
  --drp-button-apply-border: #0ea5e9;
6893
7257
  /* Button sizing */
6894
- --drp-button-padding: 0.6rem 1rem;
7258
+ --drp-button-padding: 0.8rem 1rem;
6895
7259
  --drp-button-font-size: 1.4rem;
6896
7260
  --drp-button-border-radius: 4px;
6897
7261
  --drp-button-gap: 0.8rem;
@@ -7923,7 +8287,7 @@ web-daterangepicker {
7923
8287
 
7924
8288
  .pa-table th,
7925
8289
  .pa-table td {
7926
- padding: 0.5rem 0.8rem;
8290
+ padding: 0.8rem 0.8rem;
7927
8291
  text-align: left;
7928
8292
  border-bottom: 1px solid var(--pa-border-color);
7929
8293
  vertical-align: middle;
@@ -7940,6 +8304,7 @@ web-daterangepicker {
7940
8304
  .pa-table td {
7941
8305
  color: var(--pa-text-primary);
7942
8306
  background-color: var(--pa-table-bg);
8307
+ height: 3.5rem0.8rem;
7943
8308
  }
7944
8309
 
7945
8310
  .pa-table td .pa-btn {
@@ -7955,25 +8320,47 @@ web-daterangepicker {
7955
8320
  background-color: var(--pa-table-stripe);
7956
8321
  }
7957
8322
 
7958
- .pa-table--2x th,
7959
- .pa-table--2x td {
7960
- padding: 1rem 1.6rem;
8323
+ .pa-table--xs th, .pa-table--xs td {
8324
+ padding: 0.6rem 0.8rem;
7961
8325
  }
7962
8326
 
7963
- .pa-table--3x th,
7964
- .pa-table--3x td {
7965
- padding: 1.5rem 2.4rem;
8327
+ .pa-table--xs td {
8328
+ height: 3.1rem0.7rem;
7966
8329
  }
7967
8330
 
7968
- .pa-table tbody tr:hover {
7969
- background-color: var(--pa-table-hover-bg);
8331
+ .pa-table--sm th, .pa-table--sm td {
8332
+ padding: 0.8rem 1rem;
7970
8333
  }
7971
8334
 
7972
- .pa-table tbody tr:hover td {
7973
- background-color: var(--pa-table-hover-bg);
8335
+ .pa-table--sm td {
8336
+ height: 3.3rem0.8rem;
7974
8337
  }
7975
8338
 
7976
- .pa-table td .pa-btn-group {
8339
+ .pa-table--lg th, .pa-table--lg td {
8340
+ padding: 0.8rem 1.4rem;
8341
+ }
8342
+
8343
+ .pa-table--lg td {
8344
+ height: 3.8rem0.8rem;
8345
+ }
8346
+
8347
+ .pa-table--xl th, .pa-table--xl td {
8348
+ padding: 0.8rem 1.6rem;
8349
+ }
8350
+
8351
+ .pa-table--xl td {
8352
+ height: 4.1rem0.8rem;
8353
+ }
8354
+
8355
+ .pa-table tbody tr:hover {
8356
+ background-color: var(--pa-table-hover-bg);
8357
+ }
8358
+
8359
+ .pa-table tbody tr:hover td {
8360
+ background-color: var(--pa-table-hover-bg);
8361
+ }
8362
+
8363
+ .pa-table td .pa-btn-group {
7977
8364
  margin-bottom: 0;
7978
8365
  flex-wrap: nowrap;
7979
8366
  }
@@ -8326,18 +8713,6 @@ web-daterangepicker {
8326
8713
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
8327
8714
  }
8328
8715
  }
8329
- .text-success {
8330
- color: var(--pa-success-bg);
8331
- }
8332
-
8333
- .text-danger {
8334
- color: var(--pa-danger-bg);
8335
- }
8336
-
8337
- .text-warning {
8338
- color: var(--pa-warning-bg);
8339
- }
8340
-
8341
8716
  /* ========================================
8342
8717
  Comparison Table Component
8343
8718
  Two-column and three-column comparison tables for version control, data changes, and merge operations
@@ -8844,6 +9219,10 @@ code {
8844
9219
  position: relative;
8845
9220
  }
8846
9221
 
9222
+ .pa-profile-panel__header--no-avatar .pa-profile-panel__avatar {
9223
+ display: none;
9224
+ }
9225
+
8847
9226
  .pa-profile-panel__avatar {
8848
9227
  width: 6.4rem;
8849
9228
  height: 6.4rem;
@@ -8857,12 +9236,13 @@ code {
8857
9236
 
8858
9237
  .pa-profile-panel__avatar-icon {
8859
9238
  font-size: 3.2rem;
8860
- color: #0ea5e9;
9239
+ color: var(--pa-accent);
8861
9240
  }
8862
9241
 
8863
9242
  .pa-profile-panel__info {
8864
9243
  flex: 1;
8865
9244
  min-width: 0;
9245
+ padding-right: 3.2rem;
8866
9246
  }
8867
9247
 
8868
9248
  .pa-profile-panel__name {
@@ -8870,6 +9250,9 @@ code {
8870
9250
  font-size: 1.8rem;
8871
9251
  font-weight: 600;
8872
9252
  color: var(--pa-text-primary);
9253
+ overflow: hidden;
9254
+ text-overflow: ellipsis;
9255
+ white-space: nowrap;
8873
9256
  }
8874
9257
 
8875
9258
  .pa-profile-panel__email {
@@ -8922,7 +9305,7 @@ code {
8922
9305
 
8923
9306
  .pa-profile-panel__body {
8924
9307
  flex: 1;
8925
- padding: 2.4rem;
9308
+ padding: 2.4rem 0;
8926
9309
  display: flex;
8927
9310
  flex-direction: column;
8928
9311
  gap: 3.2rem;
@@ -8964,7 +9347,10 @@ code {
8964
9347
  .pa-profile-panel__nav-icon {
8965
9348
  font-size: 1.6rem;
8966
9349
  width: 2.4rem;
8967
- text-align: center;
9350
+ height: 2.4rem;
9351
+ display: flex;
9352
+ align-items: center;
9353
+ justify-content: center;
8968
9354
  }
8969
9355
 
8970
9356
  .pa-profile-panel__actions {
@@ -8972,10 +9358,21 @@ code {
8972
9358
  flex-direction: column;
8973
9359
  gap: 1.2rem;
8974
9360
  margin-top: auto;
9361
+ padding: 0 1.6rem;
9362
+ }
9363
+
9364
+ .pa-profile-panel__footer {
9365
+ flex-shrink: 0;
9366
+ padding: 2.4rem;
9367
+ border-top: 1px solid var(--pa-border-color);
9368
+ background-color: var(--pa-card-bg);
9369
+ display: flex;
9370
+ flex-direction: column;
9371
+ gap: 1.2rem;
8975
9372
  }
8976
9373
 
8977
9374
  .pa-profile-panel__tabs {
8978
- padding: 0 2.4rem;
9375
+ padding: 0 1.6rem;
8979
9376
  border-bottom: 1px solid var(--pa-border-color);
8980
9377
  background-color: var(--pa-header-bg);
8981
9378
  }
@@ -8992,7 +9389,7 @@ code {
8992
9389
 
8993
9390
  .pa-profile-panel__tabs .pa-tabs__item:hover {
8994
9391
  color: var(--pa-header-text);
8995
- background-color: rgba(255, 255, 255, 0.1);
9392
+ background-color: var(--pa-accent-light);
8996
9393
  }
8997
9394
 
8998
9395
  .pa-profile-panel__tabs .pa-tabs__item--active {
@@ -9000,12 +9397,6 @@ code {
9000
9397
  border-bottom-color: var(--pa-accent);
9001
9398
  }
9002
9399
 
9003
- .pa-profile-panel__favorites {
9004
- display: flex;
9005
- flex-direction: column;
9006
- gap: 0.8rem;
9007
- }
9008
-
9009
9400
  .pa-profile-panel__favorites ul {
9010
9401
  list-style: none;
9011
9402
  margin: 0;
@@ -9042,7 +9433,10 @@ code {
9042
9433
  .pa-profile-panel__favorite-icon {
9043
9434
  font-size: 1.6rem;
9044
9435
  width: 2.4rem;
9045
- text-align: center;
9436
+ height: 2.4rem;
9437
+ display: flex;
9438
+ align-items: center;
9439
+ justify-content: center;
9046
9440
  }
9047
9441
 
9048
9442
  .pa-profile-panel__favorite-label {
@@ -9054,7 +9448,7 @@ code {
9054
9448
  margin-left: auto;
9055
9449
  background: none;
9056
9450
  border: none;
9057
- padding: 0.8rem;
9451
+ padding: 0.4rem;
9058
9452
  color: var(--pa-text-secondary);
9059
9453
  cursor: pointer;
9060
9454
  border-radius: 4px;
@@ -9074,7 +9468,7 @@ code {
9074
9468
 
9075
9469
  .pa-profile-panel__favorites-add {
9076
9470
  margin-top: auto;
9077
- padding-top: 1.2rem;
9471
+ padding: 1.2rem 1.6rem 0;
9078
9472
  }
9079
9473
 
9080
9474
  @media (max-width: 768px) {
@@ -11602,6 +11996,170 @@ html.font-size-4xl {
11602
11996
  line-height: 1.8;
11603
11997
  }
11604
11998
 
11999
+ .gap-0 {
12000
+ gap: 0;
12001
+ }
12002
+
12003
+ .gap-xs {
12004
+ gap: 0.4rem;
12005
+ }
12006
+
12007
+ .gap-sm {
12008
+ gap: 0.8rem;
12009
+ }
12010
+
12011
+ .gap-md {
12012
+ gap: 1.2rem;
12013
+ }
12014
+
12015
+ .gap-base {
12016
+ gap: 1.6rem;
12017
+ }
12018
+
12019
+ .gap-lg {
12020
+ gap: 2.4rem;
12021
+ }
12022
+
12023
+ .gap-xl {
12024
+ gap: 3.2rem;
12025
+ }
12026
+
12027
+ .gap-2xl {
12028
+ gap: 4.8rem;
12029
+ }
12030
+
12031
+ .gap-1 {
12032
+ gap: 0.1rem;
12033
+ }
12034
+
12035
+ .gap-2 {
12036
+ gap: 0.2rem;
12037
+ }
12038
+
12039
+ .gap-3 {
12040
+ gap: 0.3rem;
12041
+ }
12042
+
12043
+ .gap-4 {
12044
+ gap: 0.4rem;
12045
+ }
12046
+
12047
+ .gap-5 {
12048
+ gap: 0.5rem;
12049
+ }
12050
+
12051
+ .gap-6 {
12052
+ gap: 0.6rem;
12053
+ }
12054
+
12055
+ .gap-8 {
12056
+ gap: 0.8rem;
12057
+ }
12058
+
12059
+ .gap-10 {
12060
+ gap: 1rem;
12061
+ }
12062
+
12063
+ .gap-12 {
12064
+ gap: 1.2rem;
12065
+ }
12066
+
12067
+ .gap-15 {
12068
+ gap: 1.5rem;
12069
+ }
12070
+
12071
+ .gap-20 {
12072
+ gap: 2rem;
12073
+ }
12074
+
12075
+ .row-gap-0 {
12076
+ row-gap: 0;
12077
+ }
12078
+
12079
+ .row-gap-xs {
12080
+ row-gap: 0.4rem;
12081
+ }
12082
+
12083
+ .row-gap-sm {
12084
+ row-gap: 0.8rem;
12085
+ }
12086
+
12087
+ .row-gap-md {
12088
+ row-gap: 1.2rem;
12089
+ }
12090
+
12091
+ .row-gap-base {
12092
+ row-gap: 1.6rem;
12093
+ }
12094
+
12095
+ .row-gap-lg {
12096
+ row-gap: 2.4rem;
12097
+ }
12098
+
12099
+ .column-gap-0 {
12100
+ column-gap: 0;
12101
+ }
12102
+
12103
+ .column-gap-xs {
12104
+ column-gap: 0.4rem;
12105
+ }
12106
+
12107
+ .column-gap-sm {
12108
+ column-gap: 0.8rem;
12109
+ }
12110
+
12111
+ .column-gap-md {
12112
+ column-gap: 1.2rem;
12113
+ }
12114
+
12115
+ .column-gap-base {
12116
+ column-gap: 1.6rem;
12117
+ }
12118
+
12119
+ .column-gap-lg {
12120
+ column-gap: 2.4rem;
12121
+ }
12122
+
12123
+ .text-2xs {
12124
+ font-size: 1rem;
12125
+ }
12126
+
12127
+ .text-xs {
12128
+ font-size: 1.2rem;
12129
+ }
12130
+
12131
+ .text-sm {
12132
+ font-size: 1.4rem;
12133
+ }
12134
+
12135
+ .text-md {
12136
+ font-size: 1.5rem;
12137
+ }
12138
+
12139
+ .text-base {
12140
+ font-size: 1.6rem;
12141
+ }
12142
+
12143
+ .text-lg {
12144
+ font-size: 1.8rem;
12145
+ }
12146
+
12147
+ .text-xl {
12148
+ font-size: 2rem;
12149
+ }
12150
+
12151
+ .text-2xl {
12152
+ font-size: 2.4rem;
12153
+ }
12154
+
12155
+ .text-3xl {
12156
+ font-size: 2.8rem;
12157
+ }
12158
+
12159
+ .text-4xl {
12160
+ font-size: 3.2rem;
12161
+ }
12162
+
11605
12163
  .component-showcase {
11606
12164
  display: flex;
11607
12165
  flex-wrap: wrap;
@@ -12517,26 +13075,82 @@ html.font-size-4xl {
12517
13075
  white-space: nowrap !important;
12518
13076
  }
12519
13077
 
13078
+ .w-5 {
13079
+ width: 5% !important;
13080
+ }
13081
+
13082
+ .w-10 {
13083
+ width: 10% !important;
13084
+ }
13085
+
13086
+ .w-15 {
13087
+ width: 15% !important;
13088
+ }
13089
+
13090
+ .w-20 {
13091
+ width: 20% !important;
13092
+ }
13093
+
12520
13094
  .w-25 {
12521
13095
  width: 25% !important;
12522
13096
  }
12523
13097
 
12524
- .w-33 {
12525
- width: 33.333333% !important;
13098
+ .w-30 {
13099
+ width: 30% !important;
13100
+ }
13101
+
13102
+ .w-35 {
13103
+ width: 35% !important;
13104
+ }
13105
+
13106
+ .w-40 {
13107
+ width: 40% !important;
13108
+ }
13109
+
13110
+ .w-45 {
13111
+ width: 45% !important;
12526
13112
  }
12527
13113
 
12528
13114
  .w-50 {
12529
13115
  width: 50% !important;
12530
13116
  }
12531
13117
 
12532
- .w-66 {
12533
- width: 66.666667% !important;
13118
+ .w-55 {
13119
+ width: 55% !important;
13120
+ }
13121
+
13122
+ .w-60 {
13123
+ width: 60% !important;
13124
+ }
13125
+
13126
+ .w-65 {
13127
+ width: 65% !important;
13128
+ }
13129
+
13130
+ .w-70 {
13131
+ width: 70% !important;
12534
13132
  }
12535
13133
 
12536
13134
  .w-75 {
12537
13135
  width: 75% !important;
12538
13136
  }
12539
13137
 
13138
+ .w-80 {
13139
+ width: 80% !important;
13140
+ }
13141
+
13142
+ .w-85 {
13143
+ width: 85% !important;
13144
+ }
13145
+
13146
+ .w-90 {
13147
+ width: 90% !important;
13148
+ }
13149
+
13150
+ .w-95 {
13151
+ width: 95% !important;
13152
+ }
13153
+
12540
13154
  .w-100 {
12541
13155
  width: 100% !important;
12542
13156
  }
@@ -12545,20 +13159,20 @@ html.font-size-4xl {
12545
13159
  width: auto !important;
12546
13160
  }
12547
13161
 
12548
- .mw-25 {
12549
- min-width: 25% !important;
13162
+ .w-1-3 {
13163
+ width: 33.333333% !important;
12550
13164
  }
12551
13165
 
12552
- .mw-33 {
12553
- min-width: 33.333333% !important;
13166
+ .w-2-3 {
13167
+ width: 66.666667% !important;
12554
13168
  }
12555
13169
 
12556
- .mw-50 {
12557
- min-width: 50% !important;
13170
+ .mw-25 {
13171
+ min-width: 25% !important;
12558
13172
  }
12559
13173
 
12560
- .mw-66 {
12561
- min-width: 66.666667% !important;
13174
+ .mw-50 {
13175
+ min-width: 50% !important;
12562
13176
  }
12563
13177
 
12564
13178
  .mw-75 {
@@ -12573,26 +13187,24 @@ html.font-size-4xl {
12573
13187
  min-width: auto !important;
12574
13188
  }
12575
13189
 
13190
+ .mw-1-3 {
13191
+ min-width: 33.333333% !important;
13192
+ }
13193
+
13194
+ .mw-2-3 {
13195
+ min-width: 66.666667% !important;
13196
+ }
13197
+
12576
13198
  .w-25-fixed {
12577
13199
  min-width: 25% !important;
12578
13200
  width: 25% !important;
12579
13201
  }
12580
13202
 
12581
- .w-33-fixed {
12582
- min-width: 33.333333% !important;
12583
- width: 33.333333% !important;
12584
- }
12585
-
12586
13203
  .w-50-fixed {
12587
13204
  min-width: 50% !important;
12588
13205
  width: 50% !important;
12589
13206
  }
12590
13207
 
12591
- .w-66-fixed {
12592
- min-width: 66.666667% !important;
12593
- width: 66.666667% !important;
12594
- }
12595
-
12596
13208
  .w-75-fixed {
12597
13209
  min-width: 75% !important;
12598
13210
  width: 75% !important;
@@ -12603,6 +13215,16 @@ html.font-size-4xl {
12603
13215
  width: 100% !important;
12604
13216
  }
12605
13217
 
13218
+ .w-1-3-fixed {
13219
+ min-width: 33.333333% !important;
13220
+ width: 33.333333% !important;
13221
+ }
13222
+
13223
+ .w-2-3-fixed {
13224
+ min-width: 66.666667% !important;
13225
+ width: 66.666667% !important;
13226
+ }
13227
+
12606
13228
  .h-25 {
12607
13229
  height: 25% !important;
12608
13230
  }
@@ -12623,44 +13245,708 @@ html.font-size-4xl {
12623
13245
  height: auto !important;
12624
13246
  }
12625
13247
 
12626
- .position-static {
12627
- position: static !important;
13248
+ .wr-1 {
13249
+ width: 1rem !important;
12628
13250
  }
12629
13251
 
12630
- .position-relative {
12631
- position: relative !important;
13252
+ .wr-2 {
13253
+ width: 2rem !important;
12632
13254
  }
12633
13255
 
12634
- .position-absolute {
12635
- position: absolute !important;
13256
+ .wr-3 {
13257
+ width: 3rem !important;
12636
13258
  }
12637
13259
 
12638
- .position-fixed {
12639
- position: fixed !important;
13260
+ .wr-4 {
13261
+ width: 4rem !important;
12640
13262
  }
12641
13263
 
12642
- .position-sticky {
12643
- position: sticky !important;
13264
+ .wr-5 {
13265
+ width: 5rem !important;
12644
13266
  }
12645
13267
 
12646
- .border {
12647
- border: 1px solid var(--border-color) !important;
13268
+ .wr-6 {
13269
+ width: 6rem !important;
12648
13270
  }
12649
13271
 
12650
- .border-top {
12651
- border-top: 1px solid var(--border-color) !important;
13272
+ .wr-7 {
13273
+ width: 7rem !important;
12652
13274
  }
12653
13275
 
12654
- .border-right {
12655
- border-right: 1px solid var(--border-color) !important;
13276
+ .wr-8 {
13277
+ width: 8rem !important;
12656
13278
  }
12657
13279
 
12658
- .border-bottom {
12659
- border-bottom: 1px solid var(--border-color) !important;
13280
+ .wr-9 {
13281
+ width: 9rem !important;
12660
13282
  }
12661
13283
 
12662
- .border-left {
12663
- border-left: 1px solid var(--border-color) !important;
13284
+ .wr-10 {
13285
+ width: 10rem !important;
13286
+ }
13287
+
13288
+ .wr-15 {
13289
+ width: 15rem !important;
13290
+ }
13291
+
13292
+ .wr-20 {
13293
+ width: 20rem !important;
13294
+ }
13295
+
13296
+ .wr-25 {
13297
+ width: 25rem !important;
13298
+ }
13299
+
13300
+ .minwr-1 {
13301
+ min-width: 1rem !important;
13302
+ }
13303
+
13304
+ .minwr-2 {
13305
+ min-width: 2rem !important;
13306
+ }
13307
+
13308
+ .minwr-3 {
13309
+ min-width: 3rem !important;
13310
+ }
13311
+
13312
+ .minwr-4 {
13313
+ min-width: 4rem !important;
13314
+ }
13315
+
13316
+ .minwr-5 {
13317
+ min-width: 5rem !important;
13318
+ }
13319
+
13320
+ .minwr-6 {
13321
+ min-width: 6rem !important;
13322
+ }
13323
+
13324
+ .minwr-7 {
13325
+ min-width: 7rem !important;
13326
+ }
13327
+
13328
+ .minwr-8 {
13329
+ min-width: 8rem !important;
13330
+ }
13331
+
13332
+ .minwr-9 {
13333
+ min-width: 9rem !important;
13334
+ }
13335
+
13336
+ .minwr-10 {
13337
+ min-width: 10rem !important;
13338
+ }
13339
+
13340
+ .minwr-15 {
13341
+ min-width: 15rem !important;
13342
+ }
13343
+
13344
+ .minwr-20 {
13345
+ min-width: 20rem !important;
13346
+ }
13347
+
13348
+ .minwr-25 {
13349
+ min-width: 25rem !important;
13350
+ }
13351
+
13352
+ .maxwr-1 {
13353
+ max-width: 1rem !important;
13354
+ }
13355
+
13356
+ .maxwr-2 {
13357
+ max-width: 2rem !important;
13358
+ }
13359
+
13360
+ .maxwr-3 {
13361
+ max-width: 3rem !important;
13362
+ }
13363
+
13364
+ .maxwr-4 {
13365
+ max-width: 4rem !important;
13366
+ }
13367
+
13368
+ .maxwr-5 {
13369
+ max-width: 5rem !important;
13370
+ }
13371
+
13372
+ .maxwr-6 {
13373
+ max-width: 6rem !important;
13374
+ }
13375
+
13376
+ .maxwr-7 {
13377
+ max-width: 7rem !important;
13378
+ }
13379
+
13380
+ .maxwr-8 {
13381
+ max-width: 8rem !important;
13382
+ }
13383
+
13384
+ .maxwr-9 {
13385
+ max-width: 9rem !important;
13386
+ }
13387
+
13388
+ .maxwr-10 {
13389
+ max-width: 10rem !important;
13390
+ }
13391
+
13392
+ .maxwr-15 {
13393
+ max-width: 15rem !important;
13394
+ }
13395
+
13396
+ .maxwr-20 {
13397
+ max-width: 20rem !important;
13398
+ }
13399
+
13400
+ .maxwr-25 {
13401
+ max-width: 25rem !important;
13402
+ }
13403
+
13404
+ .hr-1 {
13405
+ height: 1rem !important;
13406
+ }
13407
+
13408
+ .hr-2 {
13409
+ height: 2rem !important;
13410
+ }
13411
+
13412
+ .hr-3 {
13413
+ height: 3rem !important;
13414
+ }
13415
+
13416
+ .hr-4 {
13417
+ height: 4rem !important;
13418
+ }
13419
+
13420
+ .hr-5 {
13421
+ height: 5rem !important;
13422
+ }
13423
+
13424
+ .hr-6 {
13425
+ height: 6rem !important;
13426
+ }
13427
+
13428
+ .hr-7 {
13429
+ height: 7rem !important;
13430
+ }
13431
+
13432
+ .hr-8 {
13433
+ height: 8rem !important;
13434
+ }
13435
+
13436
+ .hr-9 {
13437
+ height: 9rem !important;
13438
+ }
13439
+
13440
+ .hr-10 {
13441
+ height: 10rem !important;
13442
+ }
13443
+
13444
+ .hr-15 {
13445
+ height: 15rem !important;
13446
+ }
13447
+
13448
+ .hr-20 {
13449
+ height: 20rem !important;
13450
+ }
13451
+
13452
+ .hr-25 {
13453
+ height: 25rem !important;
13454
+ }
13455
+
13456
+ .minhr-1 {
13457
+ min-height: 1rem !important;
13458
+ }
13459
+
13460
+ .minhr-2 {
13461
+ min-height: 2rem !important;
13462
+ }
13463
+
13464
+ .minhr-3 {
13465
+ min-height: 3rem !important;
13466
+ }
13467
+
13468
+ .minhr-4 {
13469
+ min-height: 4rem !important;
13470
+ }
13471
+
13472
+ .minhr-5 {
13473
+ min-height: 5rem !important;
13474
+ }
13475
+
13476
+ .minhr-6 {
13477
+ min-height: 6rem !important;
13478
+ }
13479
+
13480
+ .minhr-7 {
13481
+ min-height: 7rem !important;
13482
+ }
13483
+
13484
+ .minhr-8 {
13485
+ min-height: 8rem !important;
13486
+ }
13487
+
13488
+ .minhr-9 {
13489
+ min-height: 9rem !important;
13490
+ }
13491
+
13492
+ .minhr-10 {
13493
+ min-height: 10rem !important;
13494
+ }
13495
+
13496
+ .minhr-15 {
13497
+ min-height: 15rem !important;
13498
+ }
13499
+
13500
+ .minhr-20 {
13501
+ min-height: 20rem !important;
13502
+ }
13503
+
13504
+ .minhr-25 {
13505
+ min-height: 25rem !important;
13506
+ }
13507
+
13508
+ .maxhr-1 {
13509
+ max-height: 1rem !important;
13510
+ }
13511
+
13512
+ .maxhr-2 {
13513
+ max-height: 2rem !important;
13514
+ }
13515
+
13516
+ .maxhr-3 {
13517
+ max-height: 3rem !important;
13518
+ }
13519
+
13520
+ .maxhr-4 {
13521
+ max-height: 4rem !important;
13522
+ }
13523
+
13524
+ .maxhr-5 {
13525
+ max-height: 5rem !important;
13526
+ }
13527
+
13528
+ .maxhr-6 {
13529
+ max-height: 6rem !important;
13530
+ }
13531
+
13532
+ .maxhr-7 {
13533
+ max-height: 7rem !important;
13534
+ }
13535
+
13536
+ .maxhr-8 {
13537
+ max-height: 8rem !important;
13538
+ }
13539
+
13540
+ .maxhr-9 {
13541
+ max-height: 9rem !important;
13542
+ }
13543
+
13544
+ .maxhr-10 {
13545
+ max-height: 10rem !important;
13546
+ }
13547
+
13548
+ .maxhr-15 {
13549
+ max-height: 15rem !important;
13550
+ }
13551
+
13552
+ .maxhr-20 {
13553
+ max-height: 20rem !important;
13554
+ }
13555
+
13556
+ .maxhr-25 {
13557
+ max-height: 25rem !important;
13558
+ }
13559
+
13560
+ .minw-5 {
13561
+ min-width: 5% !important;
13562
+ }
13563
+
13564
+ .minw-10 {
13565
+ min-width: 10% !important;
13566
+ }
13567
+
13568
+ .minw-15 {
13569
+ min-width: 15% !important;
13570
+ }
13571
+
13572
+ .minw-20 {
13573
+ min-width: 20% !important;
13574
+ }
13575
+
13576
+ .minw-25 {
13577
+ min-width: 25% !important;
13578
+ }
13579
+
13580
+ .minw-30 {
13581
+ min-width: 30% !important;
13582
+ }
13583
+
13584
+ .minw-35 {
13585
+ min-width: 35% !important;
13586
+ }
13587
+
13588
+ .minw-40 {
13589
+ min-width: 40% !important;
13590
+ }
13591
+
13592
+ .minw-45 {
13593
+ min-width: 45% !important;
13594
+ }
13595
+
13596
+ .minw-50 {
13597
+ min-width: 50% !important;
13598
+ }
13599
+
13600
+ .minw-55 {
13601
+ min-width: 55% !important;
13602
+ }
13603
+
13604
+ .minw-60 {
13605
+ min-width: 60% !important;
13606
+ }
13607
+
13608
+ .minw-65 {
13609
+ min-width: 65% !important;
13610
+ }
13611
+
13612
+ .minw-70 {
13613
+ min-width: 70% !important;
13614
+ }
13615
+
13616
+ .minw-75 {
13617
+ min-width: 75% !important;
13618
+ }
13619
+
13620
+ .minw-80 {
13621
+ min-width: 80% !important;
13622
+ }
13623
+
13624
+ .minw-85 {
13625
+ min-width: 85% !important;
13626
+ }
13627
+
13628
+ .minw-90 {
13629
+ min-width: 90% !important;
13630
+ }
13631
+
13632
+ .minw-95 {
13633
+ min-width: 95% !important;
13634
+ }
13635
+
13636
+ .minw-100 {
13637
+ min-width: 100% !important;
13638
+ }
13639
+
13640
+ .minw-1-3 {
13641
+ min-width: 33.333333% !important;
13642
+ }
13643
+
13644
+ .minw-2-3 {
13645
+ min-width: 66.666667% !important;
13646
+ }
13647
+
13648
+ .maxw-5 {
13649
+ max-width: 5% !important;
13650
+ }
13651
+
13652
+ .maxw-10 {
13653
+ max-width: 10% !important;
13654
+ }
13655
+
13656
+ .maxw-15 {
13657
+ max-width: 15% !important;
13658
+ }
13659
+
13660
+ .maxw-20 {
13661
+ max-width: 20% !important;
13662
+ }
13663
+
13664
+ .maxw-25 {
13665
+ max-width: 25% !important;
13666
+ }
13667
+
13668
+ .maxw-30 {
13669
+ max-width: 30% !important;
13670
+ }
13671
+
13672
+ .maxw-35 {
13673
+ max-width: 35% !important;
13674
+ }
13675
+
13676
+ .maxw-40 {
13677
+ max-width: 40% !important;
13678
+ }
13679
+
13680
+ .maxw-45 {
13681
+ max-width: 45% !important;
13682
+ }
13683
+
13684
+ .maxw-50 {
13685
+ max-width: 50% !important;
13686
+ }
13687
+
13688
+ .maxw-55 {
13689
+ max-width: 55% !important;
13690
+ }
13691
+
13692
+ .maxw-60 {
13693
+ max-width: 60% !important;
13694
+ }
13695
+
13696
+ .maxw-65 {
13697
+ max-width: 65% !important;
13698
+ }
13699
+
13700
+ .maxw-70 {
13701
+ max-width: 70% !important;
13702
+ }
13703
+
13704
+ .maxw-75 {
13705
+ max-width: 75% !important;
13706
+ }
13707
+
13708
+ .maxw-80 {
13709
+ max-width: 80% !important;
13710
+ }
13711
+
13712
+ .maxw-85 {
13713
+ max-width: 85% !important;
13714
+ }
13715
+
13716
+ .maxw-90 {
13717
+ max-width: 90% !important;
13718
+ }
13719
+
13720
+ .maxw-95 {
13721
+ max-width: 95% !important;
13722
+ }
13723
+
13724
+ .maxw-100 {
13725
+ max-width: 100% !important;
13726
+ }
13727
+
13728
+ .maxw-1-3 {
13729
+ max-width: 33.333333% !important;
13730
+ }
13731
+
13732
+ .maxw-2-3 {
13733
+ max-width: 66.666667% !important;
13734
+ }
13735
+
13736
+ .minh-5 {
13737
+ min-height: 5% !important;
13738
+ }
13739
+
13740
+ .minh-10 {
13741
+ min-height: 10% !important;
13742
+ }
13743
+
13744
+ .minh-15 {
13745
+ min-height: 15% !important;
13746
+ }
13747
+
13748
+ .minh-20 {
13749
+ min-height: 20% !important;
13750
+ }
13751
+
13752
+ .minh-25 {
13753
+ min-height: 25% !important;
13754
+ }
13755
+
13756
+ .minh-30 {
13757
+ min-height: 30% !important;
13758
+ }
13759
+
13760
+ .minh-35 {
13761
+ min-height: 35% !important;
13762
+ }
13763
+
13764
+ .minh-40 {
13765
+ min-height: 40% !important;
13766
+ }
13767
+
13768
+ .minh-45 {
13769
+ min-height: 45% !important;
13770
+ }
13771
+
13772
+ .minh-50 {
13773
+ min-height: 50% !important;
13774
+ }
13775
+
13776
+ .minh-55 {
13777
+ min-height: 55% !important;
13778
+ }
13779
+
13780
+ .minh-60 {
13781
+ min-height: 60% !important;
13782
+ }
13783
+
13784
+ .minh-65 {
13785
+ min-height: 65% !important;
13786
+ }
13787
+
13788
+ .minh-70 {
13789
+ min-height: 70% !important;
13790
+ }
13791
+
13792
+ .minh-75 {
13793
+ min-height: 75% !important;
13794
+ }
13795
+
13796
+ .minh-80 {
13797
+ min-height: 80% !important;
13798
+ }
13799
+
13800
+ .minh-85 {
13801
+ min-height: 85% !important;
13802
+ }
13803
+
13804
+ .minh-90 {
13805
+ min-height: 90% !important;
13806
+ }
13807
+
13808
+ .minh-95 {
13809
+ min-height: 95% !important;
13810
+ }
13811
+
13812
+ .minh-100 {
13813
+ min-height: 100% !important;
13814
+ }
13815
+
13816
+ .minh-1-3 {
13817
+ min-height: 33.333333% !important;
13818
+ }
13819
+
13820
+ .minh-2-3 {
13821
+ min-height: 66.666667% !important;
13822
+ }
13823
+
13824
+ .maxh-5 {
13825
+ max-height: 5% !important;
13826
+ }
13827
+
13828
+ .maxh-10 {
13829
+ max-height: 10% !important;
13830
+ }
13831
+
13832
+ .maxh-15 {
13833
+ max-height: 15% !important;
13834
+ }
13835
+
13836
+ .maxh-20 {
13837
+ max-height: 20% !important;
13838
+ }
13839
+
13840
+ .maxh-25 {
13841
+ max-height: 25% !important;
13842
+ }
13843
+
13844
+ .maxh-30 {
13845
+ max-height: 30% !important;
13846
+ }
13847
+
13848
+ .maxh-35 {
13849
+ max-height: 35% !important;
13850
+ }
13851
+
13852
+ .maxh-40 {
13853
+ max-height: 40% !important;
13854
+ }
13855
+
13856
+ .maxh-45 {
13857
+ max-height: 45% !important;
13858
+ }
13859
+
13860
+ .maxh-50 {
13861
+ max-height: 50% !important;
13862
+ }
13863
+
13864
+ .maxh-55 {
13865
+ max-height: 55% !important;
13866
+ }
13867
+
13868
+ .maxh-60 {
13869
+ max-height: 60% !important;
13870
+ }
13871
+
13872
+ .maxh-65 {
13873
+ max-height: 65% !important;
13874
+ }
13875
+
13876
+ .maxh-70 {
13877
+ max-height: 70% !important;
13878
+ }
13879
+
13880
+ .maxh-75 {
13881
+ max-height: 75% !important;
13882
+ }
13883
+
13884
+ .maxh-80 {
13885
+ max-height: 80% !important;
13886
+ }
13887
+
13888
+ .maxh-85 {
13889
+ max-height: 85% !important;
13890
+ }
13891
+
13892
+ .maxh-90 {
13893
+ max-height: 90% !important;
13894
+ }
13895
+
13896
+ .maxh-95 {
13897
+ max-height: 95% !important;
13898
+ }
13899
+
13900
+ .maxh-100 {
13901
+ max-height: 100% !important;
13902
+ }
13903
+
13904
+ .maxh-1-3 {
13905
+ max-height: 33.333333% !important;
13906
+ }
13907
+
13908
+ .maxh-2-3 {
13909
+ max-height: 66.666667% !important;
13910
+ }
13911
+
13912
+ .position-static {
13913
+ position: static !important;
13914
+ }
13915
+
13916
+ .position-relative {
13917
+ position: relative !important;
13918
+ }
13919
+
13920
+ .position-absolute {
13921
+ position: absolute !important;
13922
+ }
13923
+
13924
+ .position-fixed {
13925
+ position: fixed !important;
13926
+ }
13927
+
13928
+ .position-sticky {
13929
+ position: sticky !important;
13930
+ }
13931
+
13932
+ .border {
13933
+ border: 1px solid var(--border-color) !important;
13934
+ }
13935
+
13936
+ .border-top {
13937
+ border-top: 1px solid var(--border-color) !important;
13938
+ }
13939
+
13940
+ .border-right {
13941
+ border-right: 1px solid var(--border-color) !important;
13942
+ }
13943
+
13944
+ .border-bottom {
13945
+ border-bottom: 1px solid var(--border-color) !important;
13946
+ }
13947
+
13948
+ .border-left {
13949
+ border-left: 1px solid var(--border-color) !important;
12664
13950
  }
12665
13951
 
12666
13952
  .border-0 {
@@ -12683,6 +13969,78 @@ html.font-size-4xl {
12683
13969
  border-left: 0 !important;
12684
13970
  }
12685
13971
 
13972
+ .border-solid {
13973
+ border-style: solid !important;
13974
+ }
13975
+
13976
+ .border-dashed {
13977
+ border-style: dashed !important;
13978
+ }
13979
+
13980
+ .border-dotted {
13981
+ border-style: dotted !important;
13982
+ }
13983
+
13984
+ .border-none {
13985
+ border-style: none !important;
13986
+ }
13987
+
13988
+ .text-primary {
13989
+ color: var(--pa-accent) !important;
13990
+ }
13991
+
13992
+ .text-success {
13993
+ color: var(--pa-success-text) !important;
13994
+ }
13995
+
13996
+ .text-danger {
13997
+ color: var(--pa-danger-text) !important;
13998
+ }
13999
+
14000
+ .text-warning {
14001
+ color: var(--pa-warning-text) !important;
14002
+ }
14003
+
14004
+ .text-info {
14005
+ color: var(--pa-info-text) !important;
14006
+ }
14007
+
14008
+ .text-color-1 {
14009
+ color: var(--pa-color-1) !important;
14010
+ }
14011
+
14012
+ .text-color-2 {
14013
+ color: var(--pa-color-2) !important;
14014
+ }
14015
+
14016
+ .text-color-3 {
14017
+ color: var(--pa-color-3) !important;
14018
+ }
14019
+
14020
+ .text-color-4 {
14021
+ color: var(--pa-color-4) !important;
14022
+ }
14023
+
14024
+ .text-color-5 {
14025
+ color: var(--pa-color-5) !important;
14026
+ }
14027
+
14028
+ .text-color-6 {
14029
+ color: var(--pa-color-6) !important;
14030
+ }
14031
+
14032
+ .text-color-7 {
14033
+ color: var(--pa-color-7) !important;
14034
+ }
14035
+
14036
+ .text-color-8 {
14037
+ color: var(--pa-color-8) !important;
14038
+ }
14039
+
14040
+ .text-color-9 {
14041
+ color: var(--pa-color-9) !important;
14042
+ }
14043
+
12686
14044
  .rounded {
12687
14045
  border-radius: var(--border-radius) !important;
12688
14046
  }
@@ -12970,9 +14328,9 @@ html.font-size-4xl {
12970
14328
  --pa-checkbox-bg-indeterminate: #0ea5e9;
12971
14329
  --pa-checkbox-checkmark-color: white;
12972
14330
  --pa-checkbox-focus-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25);
12973
- --pa-input-group-prepend-bg: #f8fafc;
14331
+ --pa-input-group-prepend-bg: #6c757d;
12974
14332
  --pa-input-group-prepend-text: #64748b;
12975
- --pa-input-group-append-bg: #f8fafc;
14333
+ --pa-input-group-append-bg: #6c757d;
12976
14334
  --pa-input-group-append-text: #64748b;
12977
14335
  --pa-table-bg: #ffffff;
12978
14336
  --pa-table-header-bg: #f1f5f9;
@@ -13025,6 +14383,15 @@ html.font-size-4xl {
13025
14383
  --pa-multiselect-option-hover-bg: #f8fafc;
13026
14384
  --pa-multiselect-pill-bg: rgba(14, 165, 233, 0.05);
13027
14385
  --pa-multiselect-pill-border: #0ea5e9;
14386
+ --pa-color-1: transparent;
14387
+ --pa-color-2: transparent;
14388
+ --pa-color-3: transparent;
14389
+ --pa-color-4: transparent;
14390
+ --pa-color-5: transparent;
14391
+ --pa-color-6: transparent;
14392
+ --pa-color-7: transparent;
14393
+ --pa-color-8: transparent;
14394
+ --pa-color-9: transparent;
13028
14395
  --drp-dropdown-bg: #ffffff;
13029
14396
  --drp-border-color: #e2e8f0;
13030
14397
  --drp-primary-bg: #f8fafc;