@keenmate/pure-admin-theme-express 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.
package/dist/express.css CHANGED
@@ -2538,7 +2538,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2538
2538
  }
2539
2539
 
2540
2540
  .pa-card__header {
2541
- padding: 0.8rem 1rem;
2541
+ padding: 0.5rem 1rem;
2542
2542
  min-height: 4rem;
2543
2543
  border-top-left-radius: 8px;
2544
2544
  border-top-right-radius: 8px;
@@ -2578,6 +2578,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2578
2578
  font-size: 1.6rem;
2579
2579
  }
2580
2580
 
2581
+ .pa-card__header .pa-btn {
2582
+ margin-top: -0.25rem;
2583
+ margin-bottom: -0.25rem;
2584
+ }
2585
+
2581
2586
  .pa-card__title {
2582
2587
  display: flex;
2583
2588
  align-items: center;
@@ -2753,6 +2758,35 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2753
2758
  display: block;
2754
2759
  }
2755
2760
 
2761
+ .pa-card__tabs--inline {
2762
+ display: flex;
2763
+ gap: 0.4rem;
2764
+ margin: -0.5rem 0;
2765
+ border-bottom: none;
2766
+ background: none;
2767
+ }
2768
+
2769
+ .pa-card__tabs--inline .pa-card__tab {
2770
+ padding: 0.3rem 0.8rem;
2771
+ border: none;
2772
+ border-radius: 4px;
2773
+ font-size: 1.4rem;
2774
+ background: transparent;
2775
+ color: var(--pa-text-secondary);
2776
+ cursor: pointer;
2777
+ transition: all 0.1s ease-out;
2778
+ }
2779
+
2780
+ .pa-card__tabs--inline .pa-card__tab:hover {
2781
+ background-color: rgba(212, 5, 17, 0.05);
2782
+ color: var(--pa-text-primary);
2783
+ }
2784
+
2785
+ .pa-card__tabs--inline .pa-card__tab--active {
2786
+ background: var(--pa-accent);
2787
+ color: var(--pa-btn-primary-text);
2788
+ }
2789
+
2756
2790
  a.pa-card {
2757
2791
  text-decoration: none;
2758
2792
  display: block;
@@ -3033,8 +3067,23 @@ a.pa-card p {
3033
3067
  justify-content: center;
3034
3068
  }
3035
3069
 
3070
+ .pa-tabs--border-top {
3071
+ border-bottom: none;
3072
+ border-top: 1px solid var(--pa-border-color);
3073
+ }
3074
+
3075
+ .pa-tabs--border-top .pa-tabs__item {
3076
+ border-bottom: none;
3077
+ border-top: 2px solid transparent;
3078
+ }
3079
+
3080
+ .pa-tabs--border-top .pa-tabs__item--active {
3081
+ border-top-color: #D40511;
3082
+ border-bottom-color: transparent;
3083
+ }
3084
+
3036
3085
  .pa-tabs--sm .pa-tabs__item {
3037
- padding: 0.6rem 1rem;
3086
+ padding: 0.8rem 1rem;
3038
3087
  font-size: 1.2rem;
3039
3088
  }
3040
3089
 
@@ -3043,7 +3092,7 @@ a.pa-card p {
3043
3092
  }
3044
3093
 
3045
3094
  .pa-tabs--lg .pa-tabs__item {
3046
- padding: 1rem 1.4rem;
3095
+ padding: 0.8rem 1.4rem;
3047
3096
  font-size: 1.8rem;
3048
3097
  }
3049
3098
 
@@ -3069,109 +3118,145 @@ a.pa-card p {
3069
3118
  padding-top: 1.2rem;
3070
3119
  }
3071
3120
 
3072
- .pa-tabs__vertical-layout {
3073
- display: flex;
3074
- gap: 1.6rem;
3075
- align-items: flex-start;
3076
- }
3077
-
3078
- .pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
3079
- padding-top: 0;
3080
- }
3081
-
3082
- .pa-tabs__vertical-layout--bordered {
3121
+ .pa-tabs__container--card {
3122
+ position: relative;
3083
3123
  border: 1px solid var(--pa-border-color);
3084
3124
  border-radius: 8px;
3085
- padding: 1.6rem 1rem;
3086
3125
  background-color: var(--pa-card-bg);
3126
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
3087
3127
  }
3088
3128
 
3089
- .pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
3090
- border-right: 1px solid var(--pa-border-color);
3091
- }
3092
-
3093
- .pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
3094
- width: 100%;
3095
- }
3096
-
3097
- .pa-tabs .pa-tabs__item--w-1x {
3098
- min-width: 1rem;
3099
- }
3100
-
3101
- .pa-tabs .pa-tabs__item--w-2x {
3102
- min-width: 2rem;
3129
+ .pa-tabs__container--card .pa-tabs {
3130
+ height: 4rem;
3131
+ padding: 0.5rem 1rem;
3132
+ background: var(--pa-card-header-bg);
3133
+ border-bottom: 1px solid var(--pa-border-color);
3134
+ box-sizing: border-box;
3135
+ border-top-left-radius: 8px;
3136
+ border-top-right-radius: 8px;
3137
+ margin-bottom: 0;
3138
+ align-items: center;
3139
+ gap: 0.4rem;
3140
+ flex-wrap: nowrap;
3141
+ overflow: visible;
3103
3142
  }
3104
3143
 
3105
- .pa-tabs .pa-tabs__item--w-3x {
3106
- min-width: 3rem;
3144
+ .pa-tabs__container--card .pa-tabs__content {
3145
+ padding: 1.6rem 1rem;
3107
3146
  }
3108
3147
 
3109
- .pa-tabs .pa-tabs__item--w-4x {
3110
- min-width: 4rem;
3148
+ .pa-tabs__container--card .pa-tabs__panel {
3149
+ padding-top: 0;
3111
3150
  }
3112
3151
 
3113
- .pa-tabs .pa-tabs__item--w-5x {
3114
- min-width: 5rem;
3152
+ .pa-tabs__container--card .pa-tabs__overflow {
3153
+ position: relative;
3154
+ margin-left: auto;
3155
+ flex-shrink: 0;
3115
3156
  }
3116
3157
 
3117
- .pa-tabs .pa-tabs__item--w-6x {
3118
- min-width: 6rem;
3158
+ .pa-tabs__container--card .pa-tabs__overflow-toggle {
3159
+ position: relative;
3160
+ display: flex;
3161
+ align-items: center;
3162
+ justify-content: center;
3163
+ width: 4rem;
3164
+ height: 100%;
3165
+ padding: 0;
3166
+ border: none;
3167
+ background: transparent;
3168
+ color: var(--pa-text-secondary);
3169
+ cursor: pointer;
3170
+ transition: all 0.1s ease-out;
3171
+ border-left: 1px solid var(--pa-border-color);
3172
+ margin: -0.5rem -1rem -0.5rem 0;
3173
+ box-sizing: content-box;
3174
+ height: 4rem;
3119
3175
  }
3120
3176
 
3121
- .pa-tabs .pa-tabs__item--w-7x {
3122
- min-width: 7rem;
3177
+ .pa-tabs__container--card .pa-tabs__overflow-toggle:hover {
3178
+ background-color: rgba(212, 5, 17, 0.05);
3179
+ color: var(--pa-text-primary);
3123
3180
  }
3124
3181
 
3125
- .pa-tabs .pa-tabs__item--w-8x {
3126
- min-width: 8rem;
3182
+ .pa-tabs__container--card .pa-tabs__overflow-toggle--has-active {
3183
+ color: var(--pa-accent);
3127
3184
  }
3128
3185
 
3129
- .pa-tabs .pa-tabs__item--w-9x {
3130
- min-width: 9rem;
3186
+ .pa-tabs__container--card .pa-tabs__overflow-toggle--has-active::after {
3187
+ content: "";
3188
+ position: absolute;
3189
+ bottom: 0;
3190
+ left: 0;
3191
+ right: 0;
3192
+ height: 2px;
3193
+ background: var(--pa-accent);
3131
3194
  }
3132
3195
 
3133
- .pa-tabs .pa-tabs__item--w-10x {
3134
- min-width: 10rem;
3196
+ .pa-tabs__container--card .pa-tabs__overflow-toggle i {
3197
+ font-size: 1.4rem;
3135
3198
  }
3136
3199
 
3137
- .pa-tabs .pa-tabs__item--h-1x {
3138
- min-height: 1rem;
3200
+ .pa-tabs__container--card .pa-tabs__overflow-menu {
3201
+ position: absolute;
3202
+ top: 4rem;
3203
+ right: 0;
3204
+ min-width: 15rem;
3205
+ background: var(--pa-card-bg);
3206
+ border: 1px solid var(--pa-border-color);
3207
+ border-radius: 4px;
3208
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
3209
+ z-index: 1000;
3210
+ display: none;
3211
+ flex-direction: column;
3212
+ padding: 0.4rem 0;
3139
3213
  }
3140
3214
 
3141
- .pa-tabs .pa-tabs__item--h-2x {
3142
- min-height: 2rem;
3215
+ .pa-tabs__container--card .pa-tabs__overflow-menu--open {
3216
+ display: flex;
3143
3217
  }
3144
3218
 
3145
- .pa-tabs .pa-tabs__item--h-3x {
3146
- min-height: 3rem;
3219
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item {
3220
+ padding: 0.8rem 1.6rem;
3221
+ border: none;
3222
+ border-bottom: none;
3223
+ border-radius: 0;
3224
+ text-align: left;
3225
+ white-space: nowrap;
3147
3226
  }
3148
3227
 
3149
- .pa-tabs .pa-tabs__item--h-4x {
3150
- min-height: 4rem;
3228
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item:hover {
3229
+ background-color: rgba(212, 5, 17, 0.05);
3151
3230
  }
3152
3231
 
3153
- .pa-tabs .pa-tabs__item--h-5x {
3154
- min-height: 5rem;
3232
+ .pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item--active {
3233
+ background-color: rgba(212, 5, 17, 0.1);
3234
+ border-bottom: none;
3155
3235
  }
3156
3236
 
3157
- .pa-tabs .pa-tabs__item--h-6x {
3158
- min-height: 6rem;
3237
+ .pa-tabs__vertical-layout {
3238
+ display: flex;
3239
+ gap: 1.6rem;
3240
+ align-items: flex-start;
3159
3241
  }
3160
3242
 
3161
- .pa-tabs .pa-tabs__item--h-7x {
3162
- min-height: 7rem;
3243
+ .pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
3244
+ padding-top: 0;
3163
3245
  }
3164
3246
 
3165
- .pa-tabs .pa-tabs__item--h-8x {
3166
- min-height: 8rem;
3247
+ .pa-tabs__vertical-layout--bordered {
3248
+ border: 1px solid var(--pa-border-color);
3249
+ border-radius: 8px;
3250
+ padding: 1.6rem 1rem;
3251
+ background-color: var(--pa-card-bg);
3167
3252
  }
3168
3253
 
3169
- .pa-tabs .pa-tabs__item--h-9x {
3170
- min-height: 9rem;
3254
+ .pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
3255
+ border-right: 1px solid var(--pa-border-color);
3171
3256
  }
3172
3257
 
3173
- .pa-tabs .pa-tabs__item--h-10x {
3174
- min-height: 10rem;
3258
+ .pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
3259
+ width: 100%;
3175
3260
  }
3176
3261
 
3177
3262
  /* ========================================
@@ -3540,8 +3625,8 @@ a.pa-card p {
3540
3625
  }
3541
3626
 
3542
3627
  .pa-list__avatar {
3543
- width: 4rem;
3544
- height: 4rem;
3628
+ width: 3.5rem;
3629
+ height: 3.5rem;
3545
3630
  border-radius: 50%;
3546
3631
  background-color: var(--pa-primary-bg);
3547
3632
  display: flex;
@@ -3678,64 +3763,6 @@ a.pa-card p {
3678
3763
  border-color: var(--pa-btn-dark-bg);
3679
3764
  }
3680
3765
 
3681
- .pa-badge--w-1x {
3682
- min-width: 1.6rem;
3683
- max-width: 1.6rem;
3684
- }
3685
-
3686
- .pa-badge--w-2x {
3687
- min-width: 3.2rem;
3688
- max-width: 3.2rem;
3689
- }
3690
-
3691
- .pa-badge--w-3x {
3692
- min-width: 4.8rem;
3693
- max-width: 4.8rem;
3694
- }
3695
-
3696
- .pa-badge--w-4x {
3697
- min-width: 6.4rem;
3698
- max-width: 6.4rem;
3699
- }
3700
-
3701
- .pa-badge--w-5x {
3702
- min-width: 8rem;
3703
- max-width: 8rem;
3704
- }
3705
-
3706
- .pa-badge--w-6x {
3707
- min-width: 9.6rem;
3708
- max-width: 9.6rem;
3709
- }
3710
-
3711
- .pa-badge--w-7x {
3712
- min-width: 11.2rem;
3713
- max-width: 11.2rem;
3714
- }
3715
-
3716
- .pa-badge--w-8x {
3717
- min-width: 12.8rem;
3718
- max-width: 12.8rem;
3719
- }
3720
-
3721
- .pa-badge--w-9x {
3722
- min-width: 14.4rem;
3723
- max-width: 14.4rem;
3724
- }
3725
-
3726
- .pa-badge--w-10x {
3727
- min-width: 16rem;
3728
- max-width: 16rem;
3729
- }
3730
-
3731
- .pa-badge[class*="--w-"] {
3732
- display: inline-block;
3733
- overflow: hidden;
3734
- text-overflow: ellipsis;
3735
- white-space: nowrap;
3736
- vertical-align: middle;
3737
- }
3738
-
3739
3766
  .pa-badge--ellipsis-left {
3740
3767
  direction: rtl;
3741
3768
  text-align: left;
@@ -4395,6 +4422,7 @@ a.pa-card p {
4395
4422
  ======================================== */
4396
4423
  .pa-btn {
4397
4424
  display: inline-block;
4425
+ height: 3.5rem;
4398
4426
  padding: 0.8rem 1.2rem;
4399
4427
  border: 1px solid transparent;
4400
4428
  border-radius: 4px;
@@ -4435,27 +4463,27 @@ a.pa-card p {
4435
4463
  }
4436
4464
 
4437
4465
  .pa-btn--xs {
4438
- padding: 0.4rem 0.8rem;
4466
+ height: 3.1rem;
4467
+ padding: 0.6rem 0.8rem;
4439
4468
  font-size: 1.2rem;
4440
- min-height: 2.8rem;
4441
4469
  }
4442
4470
 
4443
4471
  .pa-btn--sm {
4444
- padding: 0.6rem 1rem;
4472
+ height: 3.3rem;
4473
+ padding: 0.8rem 1rem;
4445
4474
  font-size: 1.4rem;
4446
- min-height: 3.2rem;
4447
4475
  }
4448
4476
 
4449
4477
  .pa-btn--lg {
4450
- padding: 1rem 1.4rem;
4478
+ height: 3.8rem;
4479
+ padding: 0.8rem 1.4rem;
4451
4480
  font-size: 1.6rem;
4452
- min-height: 4rem;
4453
4481
  }
4454
4482
 
4455
4483
  .pa-btn--xl {
4456
- padding: 1.2rem 1.6rem;
4484
+ height: 4.1rem;
4485
+ padding: 0.8rem 1.6rem;
4457
4486
  font-size: 1.8rem;
4458
- min-height: 4.4rem;
4459
4487
  }
4460
4488
 
4461
4489
  .pa-btn--success {
@@ -4646,32 +4674,33 @@ a.pa-card p {
4646
4674
  }
4647
4675
 
4648
4676
  .pa-btn--icon-only {
4649
- width: 4rem;
4650
- height: 4rem;
4677
+ width: 3.5rem;
4678
+ height: 3.5rem;
4651
4679
  padding: 0;
4652
4680
  display: flex;
4653
4681
  align-items: center;
4654
4682
  justify-content: center;
4683
+ line-height: 1;
4655
4684
  }
4656
4685
 
4657
4686
  .pa-btn--icon-only.pa-btn--xs {
4658
- width: 2.8rem;
4659
- height: 2.8rem;
4687
+ width: 3.1rem;
4688
+ height: 3.1rem;
4660
4689
  }
4661
4690
 
4662
4691
  .pa-btn--icon-only.pa-btn--sm {
4663
- width: 3.2rem;
4664
- height: 3.2rem;
4692
+ width: 3.3rem;
4693
+ height: 3.3rem;
4665
4694
  }
4666
4695
 
4667
4696
  .pa-btn--icon-only.pa-btn--lg {
4668
- width: 4.8rem;
4669
- height: 4.8rem;
4697
+ width: 3.8rem;
4698
+ height: 3.8rem;
4670
4699
  }
4671
4700
 
4672
4701
  .pa-btn--icon-only.pa-btn--xl {
4673
- width: 5.6rem;
4674
- height: 5.6rem;
4702
+ width: 4.1rem;
4703
+ height: 4.1rem;
4675
4704
  }
4676
4705
 
4677
4706
  .pa-btn__icon {
@@ -4704,46 +4733,6 @@ a.pa-card p {
4704
4733
  margin: 0;
4705
4734
  }
4706
4735
 
4707
- .pa-btn--w-1x {
4708
- min-width: 1.6rem;
4709
- }
4710
-
4711
- .pa-btn--w-2x {
4712
- min-width: 3.2rem;
4713
- }
4714
-
4715
- .pa-btn--w-3x {
4716
- min-width: 4.8rem;
4717
- }
4718
-
4719
- .pa-btn--w-4x {
4720
- min-width: 6.4rem;
4721
- }
4722
-
4723
- .pa-btn--w-5x {
4724
- min-width: 8rem;
4725
- }
4726
-
4727
- .pa-btn--w-6x {
4728
- min-width: 9.6rem;
4729
- }
4730
-
4731
- .pa-btn--w-7x {
4732
- min-width: 11.2rem;
4733
- }
4734
-
4735
- .pa-btn--w-8x {
4736
- min-width: 12.8rem;
4737
- }
4738
-
4739
- .pa-btn--w-9x {
4740
- min-width: 14.4rem;
4741
- }
4742
-
4743
- .pa-btn--w-10x {
4744
- min-width: 16rem;
4745
- }
4746
-
4747
4736
  .pa-btn--align-left {
4748
4737
  justify-content: flex-start;
4749
4738
  }
@@ -4778,19 +4767,11 @@ a.pa-card p {
4778
4767
 
4779
4768
  .pa-btn-group {
4780
4769
  display: inline-flex;
4781
- gap: 0.32rem;
4770
+ gap: 0.3rem;
4782
4771
  flex-wrap: wrap;
4783
4772
  align-items: center;
4784
4773
  }
4785
4774
 
4786
- .pa-btn-group--compact {
4787
- gap: 0.16rem;
4788
- }
4789
-
4790
- .pa-btn-group--loose {
4791
- gap: 0.8rem;
4792
- }
4793
-
4794
4775
  .pa-btn-group--vertical {
4795
4776
  flex-direction: column;
4796
4777
  align-items: flex-start;
@@ -5361,34 +5342,241 @@ a.pa-card p {
5361
5342
  border-left-color: var(--pa-btn-danger-bg);
5362
5343
  }
5363
5344
 
5364
- .pa-tooltip--auto-flip-bottom::before {
5365
- bottom: auto !important;
5366
- top: calc(100% + 8px) !important;
5367
- transform: translateX(-50%) translateY(4px) !important;
5345
+ .pa-tooltip--color-1::before {
5346
+ background-color: var(--pa-color-1);
5368
5347
  }
5369
5348
 
5370
- .pa-tooltip--auto-flip-bottom::after {
5371
- bottom: auto !important;
5372
- top: calc(100% + 3px) !important;
5373
- transform: translateX(-50%) translateY(4px) !important;
5374
- border-top-color: transparent !important;
5375
- border-bottom-color: var(--pa-tooltip-bg) !important;
5349
+ .pa-tooltip--color-1::after {
5350
+ border-top-color: var(--pa-color-1);
5376
5351
  }
5377
5352
 
5378
- .pa-tooltip--auto-flip-bottom:hover::before, .pa-tooltip--auto-flip-bottom:hover::after {
5379
- transform: translateX(-50%) translateY(0) !important;
5353
+ .pa-tooltip--color-1.pa-tooltip--right::after {
5354
+ border-top-color: transparent;
5355
+ border-right-color: var(--pa-color-1);
5380
5356
  }
5381
5357
 
5382
- .pa-tooltip--auto-flip-top::before {
5383
- top: auto !important;
5384
- bottom: calc(100% + 8px) !important;
5385
- transform: translateX(-50%) translateY(-4px) !important;
5358
+ .pa-tooltip--color-1.pa-tooltip--bottom::after {
5359
+ border-top-color: transparent;
5360
+ border-bottom-color: var(--pa-color-1);
5386
5361
  }
5387
5362
 
5388
- .pa-tooltip--auto-flip-top::after {
5389
- top: auto !important;
5390
- bottom: calc(100% + 3px) !important;
5391
- transform: translateX(-50%) translateY(-4px) !important;
5363
+ .pa-tooltip--color-1.pa-tooltip--left::after {
5364
+ border-top-color: transparent;
5365
+ border-left-color: var(--pa-color-1);
5366
+ }
5367
+
5368
+ .pa-tooltip--color-2::before {
5369
+ background-color: var(--pa-color-2);
5370
+ }
5371
+
5372
+ .pa-tooltip--color-2::after {
5373
+ border-top-color: var(--pa-color-2);
5374
+ }
5375
+
5376
+ .pa-tooltip--color-2.pa-tooltip--right::after {
5377
+ border-top-color: transparent;
5378
+ border-right-color: var(--pa-color-2);
5379
+ }
5380
+
5381
+ .pa-tooltip--color-2.pa-tooltip--bottom::after {
5382
+ border-top-color: transparent;
5383
+ border-bottom-color: var(--pa-color-2);
5384
+ }
5385
+
5386
+ .pa-tooltip--color-2.pa-tooltip--left::after {
5387
+ border-top-color: transparent;
5388
+ border-left-color: var(--pa-color-2);
5389
+ }
5390
+
5391
+ .pa-tooltip--color-3::before {
5392
+ background-color: var(--pa-color-3);
5393
+ }
5394
+
5395
+ .pa-tooltip--color-3::after {
5396
+ border-top-color: var(--pa-color-3);
5397
+ }
5398
+
5399
+ .pa-tooltip--color-3.pa-tooltip--right::after {
5400
+ border-top-color: transparent;
5401
+ border-right-color: var(--pa-color-3);
5402
+ }
5403
+
5404
+ .pa-tooltip--color-3.pa-tooltip--bottom::after {
5405
+ border-top-color: transparent;
5406
+ border-bottom-color: var(--pa-color-3);
5407
+ }
5408
+
5409
+ .pa-tooltip--color-3.pa-tooltip--left::after {
5410
+ border-top-color: transparent;
5411
+ border-left-color: var(--pa-color-3);
5412
+ }
5413
+
5414
+ .pa-tooltip--color-4::before {
5415
+ background-color: var(--pa-color-4);
5416
+ }
5417
+
5418
+ .pa-tooltip--color-4::after {
5419
+ border-top-color: var(--pa-color-4);
5420
+ }
5421
+
5422
+ .pa-tooltip--color-4.pa-tooltip--right::after {
5423
+ border-top-color: transparent;
5424
+ border-right-color: var(--pa-color-4);
5425
+ }
5426
+
5427
+ .pa-tooltip--color-4.pa-tooltip--bottom::after {
5428
+ border-top-color: transparent;
5429
+ border-bottom-color: var(--pa-color-4);
5430
+ }
5431
+
5432
+ .pa-tooltip--color-4.pa-tooltip--left::after {
5433
+ border-top-color: transparent;
5434
+ border-left-color: var(--pa-color-4);
5435
+ }
5436
+
5437
+ .pa-tooltip--color-5::before {
5438
+ background-color: var(--pa-color-5);
5439
+ }
5440
+
5441
+ .pa-tooltip--color-5::after {
5442
+ border-top-color: var(--pa-color-5);
5443
+ }
5444
+
5445
+ .pa-tooltip--color-5.pa-tooltip--right::after {
5446
+ border-top-color: transparent;
5447
+ border-right-color: var(--pa-color-5);
5448
+ }
5449
+
5450
+ .pa-tooltip--color-5.pa-tooltip--bottom::after {
5451
+ border-top-color: transparent;
5452
+ border-bottom-color: var(--pa-color-5);
5453
+ }
5454
+
5455
+ .pa-tooltip--color-5.pa-tooltip--left::after {
5456
+ border-top-color: transparent;
5457
+ border-left-color: var(--pa-color-5);
5458
+ }
5459
+
5460
+ .pa-tooltip--color-6::before {
5461
+ background-color: var(--pa-color-6);
5462
+ }
5463
+
5464
+ .pa-tooltip--color-6::after {
5465
+ border-top-color: var(--pa-color-6);
5466
+ }
5467
+
5468
+ .pa-tooltip--color-6.pa-tooltip--right::after {
5469
+ border-top-color: transparent;
5470
+ border-right-color: var(--pa-color-6);
5471
+ }
5472
+
5473
+ .pa-tooltip--color-6.pa-tooltip--bottom::after {
5474
+ border-top-color: transparent;
5475
+ border-bottom-color: var(--pa-color-6);
5476
+ }
5477
+
5478
+ .pa-tooltip--color-6.pa-tooltip--left::after {
5479
+ border-top-color: transparent;
5480
+ border-left-color: var(--pa-color-6);
5481
+ }
5482
+
5483
+ .pa-tooltip--color-7::before {
5484
+ background-color: var(--pa-color-7);
5485
+ }
5486
+
5487
+ .pa-tooltip--color-7::after {
5488
+ border-top-color: var(--pa-color-7);
5489
+ }
5490
+
5491
+ .pa-tooltip--color-7.pa-tooltip--right::after {
5492
+ border-top-color: transparent;
5493
+ border-right-color: var(--pa-color-7);
5494
+ }
5495
+
5496
+ .pa-tooltip--color-7.pa-tooltip--bottom::after {
5497
+ border-top-color: transparent;
5498
+ border-bottom-color: var(--pa-color-7);
5499
+ }
5500
+
5501
+ .pa-tooltip--color-7.pa-tooltip--left::after {
5502
+ border-top-color: transparent;
5503
+ border-left-color: var(--pa-color-7);
5504
+ }
5505
+
5506
+ .pa-tooltip--color-8::before {
5507
+ background-color: var(--pa-color-8);
5508
+ }
5509
+
5510
+ .pa-tooltip--color-8::after {
5511
+ border-top-color: var(--pa-color-8);
5512
+ }
5513
+
5514
+ .pa-tooltip--color-8.pa-tooltip--right::after {
5515
+ border-top-color: transparent;
5516
+ border-right-color: var(--pa-color-8);
5517
+ }
5518
+
5519
+ .pa-tooltip--color-8.pa-tooltip--bottom::after {
5520
+ border-top-color: transparent;
5521
+ border-bottom-color: var(--pa-color-8);
5522
+ }
5523
+
5524
+ .pa-tooltip--color-8.pa-tooltip--left::after {
5525
+ border-top-color: transparent;
5526
+ border-left-color: var(--pa-color-8);
5527
+ }
5528
+
5529
+ .pa-tooltip--color-9::before {
5530
+ background-color: var(--pa-color-9);
5531
+ }
5532
+
5533
+ .pa-tooltip--color-9::after {
5534
+ border-top-color: var(--pa-color-9);
5535
+ }
5536
+
5537
+ .pa-tooltip--color-9.pa-tooltip--right::after {
5538
+ border-top-color: transparent;
5539
+ border-right-color: var(--pa-color-9);
5540
+ }
5541
+
5542
+ .pa-tooltip--color-9.pa-tooltip--bottom::after {
5543
+ border-top-color: transparent;
5544
+ border-bottom-color: var(--pa-color-9);
5545
+ }
5546
+
5547
+ .pa-tooltip--color-9.pa-tooltip--left::after {
5548
+ border-top-color: transparent;
5549
+ border-left-color: var(--pa-color-9);
5550
+ }
5551
+
5552
+ .pa-tooltip--auto-flip-bottom::before {
5553
+ bottom: auto !important;
5554
+ top: calc(100% + 8px) !important;
5555
+ transform: translateX(-50%) translateY(4px) !important;
5556
+ }
5557
+
5558
+ .pa-tooltip--auto-flip-bottom::after {
5559
+ bottom: auto !important;
5560
+ top: calc(100% + 3px) !important;
5561
+ transform: translateX(-50%) translateY(4px) !important;
5562
+ border-top-color: transparent !important;
5563
+ border-bottom-color: var(--pa-tooltip-bg) !important;
5564
+ }
5565
+
5566
+ .pa-tooltip--auto-flip-bottom:hover::before, .pa-tooltip--auto-flip-bottom:hover::after {
5567
+ transform: translateX(-50%) translateY(0) !important;
5568
+ }
5569
+
5570
+ .pa-tooltip--auto-flip-top::before {
5571
+ top: auto !important;
5572
+ bottom: calc(100% + 8px) !important;
5573
+ transform: translateX(-50%) translateY(-4px) !important;
5574
+ }
5575
+
5576
+ .pa-tooltip--auto-flip-top::after {
5577
+ top: auto !important;
5578
+ bottom: calc(100% + 3px) !important;
5579
+ transform: translateX(-50%) translateY(-4px) !important;
5392
5580
  border-bottom-color: transparent !important;
5393
5581
  border-top-color: var(--pa-tooltip-bg) !important;
5394
5582
  }
@@ -5498,6 +5686,7 @@ a.pa-card p {
5498
5686
  font-size: 1.4rem;
5499
5687
  line-height: 1.5;
5500
5688
  color: var(--pa-text-primary);
5689
+ text-align: left;
5501
5690
  }
5502
5691
 
5503
5692
  .pa-popover__body p {
@@ -5562,6 +5751,14 @@ a.pa-card p {
5562
5751
  max-width: 44.8rem;
5563
5752
  }
5564
5753
 
5754
+ .pa-popover--center .pa-popover__body {
5755
+ text-align: center;
5756
+ }
5757
+
5758
+ .pa-popover--right .pa-popover__body {
5759
+ text-align: right;
5760
+ }
5761
+
5565
5762
  .pa-tooltip-floating {
5566
5763
  background-color: var(--pa-tooltip-bg);
5567
5764
  color: var(--pa-tooltip-text);
@@ -5602,6 +5799,42 @@ a.pa-card p {
5602
5799
  color: var(--pa-btn-danger-text);
5603
5800
  }
5604
5801
 
5802
+ .pa-tooltip-floating.pa-tooltip--color-1 {
5803
+ background-color: var(--pa-color-1);
5804
+ }
5805
+
5806
+ .pa-tooltip-floating.pa-tooltip--color-2 {
5807
+ background-color: var(--pa-color-2);
5808
+ }
5809
+
5810
+ .pa-tooltip-floating.pa-tooltip--color-3 {
5811
+ background-color: var(--pa-color-3);
5812
+ }
5813
+
5814
+ .pa-tooltip-floating.pa-tooltip--color-4 {
5815
+ background-color: var(--pa-color-4);
5816
+ }
5817
+
5818
+ .pa-tooltip-floating.pa-tooltip--color-5 {
5819
+ background-color: var(--pa-color-5);
5820
+ }
5821
+
5822
+ .pa-tooltip-floating.pa-tooltip--color-6 {
5823
+ background-color: var(--pa-color-6);
5824
+ }
5825
+
5826
+ .pa-tooltip-floating.pa-tooltip--color-7 {
5827
+ background-color: var(--pa-color-7);
5828
+ }
5829
+
5830
+ .pa-tooltip-floating.pa-tooltip--color-8 {
5831
+ background-color: var(--pa-color-8);
5832
+ }
5833
+
5834
+ .pa-tooltip-floating.pa-tooltip--color-9 {
5835
+ background-color: var(--pa-color-9);
5836
+ }
5837
+
5605
5838
  /* ========================================
5606
5839
  Alert Components
5607
5840
  Alerts with variants, sizes, dismissible functionality
@@ -5805,6 +6038,131 @@ a.pa-card p {
5805
6038
  border-top: 1px solid rgba(0, 0, 0, 0.1);
5806
6039
  }
5807
6040
 
6041
+ /* ========================================
6042
+ Callout Components
6043
+ Documentation-style callouts with left border accent
6044
+ For tips, notes, warnings in content areas
6045
+ ======================================== */
6046
+ .pa-callout {
6047
+ position: relative;
6048
+ padding: 1.2rem 1rem;
6049
+ margin-bottom: 1.6rem;
6050
+ border-left: 0.4rem solid var(--pa-border-color);
6051
+ border-radius: 4px;
6052
+ font-size: 1.4rem;
6053
+ background-color: var(--pa-card-bg);
6054
+ }
6055
+
6056
+ .pa-card__body .pa-callout:first-child {
6057
+ margin-top: 0;
6058
+ }
6059
+
6060
+ .pa-card__body .pa-callout:last-child {
6061
+ margin-bottom: 0;
6062
+ }
6063
+
6064
+ .pa-callout--primary {
6065
+ border-left-color: var(--pa-accent);
6066
+ background-color: rgba(212, 5, 17, 0.08);
6067
+ }
6068
+
6069
+ .pa-callout--secondary {
6070
+ border-left-color: var(--pa-text-secondary);
6071
+ background-color: color-mix(in srgb, var(--pa-text-secondary) 5%, transparent);
6072
+ }
6073
+
6074
+ .pa-callout--success {
6075
+ border-left-color: var(--pa-success-bg);
6076
+ background-color: var(--pa-success-bg-subtle);
6077
+ }
6078
+
6079
+ .pa-callout--danger {
6080
+ border-left-color: var(--pa-danger-bg);
6081
+ background-color: var(--pa-danger-bg-subtle);
6082
+ }
6083
+
6084
+ .pa-callout--warning {
6085
+ border-left-color: var(--pa-warning-bg);
6086
+ background-color: var(--pa-warning-bg-subtle);
6087
+ }
6088
+
6089
+ .pa-callout--info {
6090
+ border-left-color: var(--pa-info-bg);
6091
+ background-color: var(--pa-info-bg-subtle);
6092
+ }
6093
+
6094
+ .pa-callout--sm {
6095
+ padding: 0.8rem 1.2rem;
6096
+ font-size: 1.2rem;
6097
+ }
6098
+
6099
+ .pa-callout--lg {
6100
+ padding: 2.4rem 3.2rem;
6101
+ font-size: 1.6rem;
6102
+ }
6103
+
6104
+ .pa-callout__icon {
6105
+ float: left;
6106
+ margin-right: 0.8rem;
6107
+ font-size: 1.8rem;
6108
+ line-height: 1;
6109
+ }
6110
+
6111
+ .pa-callout__heading {
6112
+ margin: 0 0 0.8rem 0;
6113
+ font-size: 1.6rem;
6114
+ font-weight: 600;
6115
+ }
6116
+
6117
+ .pa-callout__content::after {
6118
+ content: "";
6119
+ display: table;
6120
+ clear: both;
6121
+ }
6122
+
6123
+ .pa-callout > *:last-child {
6124
+ margin-bottom: 0;
6125
+ }
6126
+
6127
+ .pa-callout p {
6128
+ margin: 0 0 0.8rem 0;
6129
+ }
6130
+
6131
+ .pa-callout p:last-child {
6132
+ margin-bottom: 0;
6133
+ }
6134
+
6135
+ .pa-callout ul, .pa-callout ol {
6136
+ margin: 0.8rem 0;
6137
+ padding-left: 2.4rem;
6138
+ }
6139
+
6140
+ .pa-callout ul:last-child, .pa-callout ol:last-child {
6141
+ margin-bottom: 0;
6142
+ }
6143
+
6144
+ .pa-callout code {
6145
+ background-color: rgba(0, 0, 0, 0.08);
6146
+ padding: 0.1em 0.3em;
6147
+ border-radius: 2px;
6148
+ font-size: 0.9em;
6149
+ }
6150
+
6151
+ .pa-callout a {
6152
+ color: inherit;
6153
+ text-decoration: underline;
6154
+ font-weight: 500;
6155
+ }
6156
+
6157
+ .pa-callout a:hover {
6158
+ text-decoration: none;
6159
+ }
6160
+
6161
+ .pa-callout h1, .pa-callout h2, .pa-callout h3, .pa-callout h4, .pa-callout h5, .pa-callout h6 {
6162
+ color: inherit;
6163
+ margin-top: 0;
6164
+ }
6165
+
5808
6166
  /* ========================================
5809
6167
  Form Components
5810
6168
  Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
@@ -5873,6 +6231,7 @@ a.pa-card p {
5873
6231
  ======================================== */
5874
6232
  .pa-input {
5875
6233
  width: 100%;
6234
+ height: 3.5rem;
5876
6235
  padding: 0.8rem 0.8rem;
5877
6236
  border: 1px solid var(--pa-border-color);
5878
6237
  border-radius: 4px;
@@ -5890,6 +6249,7 @@ a.pa-card p {
5890
6249
 
5891
6250
  .pa-select {
5892
6251
  width: 100%;
6252
+ height: 3.5rem;
5893
6253
  padding: 0.7rem 0.5rem;
5894
6254
  border: 1px solid var(--pa-border-color);
5895
6255
  border-radius: 4px;
@@ -5930,24 +6290,28 @@ a.pa-card p {
5930
6290
 
5931
6291
  .pa-input--xs,
5932
6292
  .pa-select--xs {
6293
+ height: 3.1rem;
5933
6294
  padding: 0.6rem 0.8rem;
5934
6295
  font-size: 1.2rem;
5935
6296
  }
5936
6297
 
5937
6298
  .pa-input--sm,
5938
6299
  .pa-select--sm {
6300
+ height: 3.3rem;
5939
6301
  padding: 0.8rem 0.8rem;
5940
6302
  font-size: 1.4rem;
5941
6303
  }
5942
6304
 
5943
6305
  .pa-input--lg,
5944
6306
  .pa-select--lg {
6307
+ height: 3.8rem;
5945
6308
  padding: 0.8rem 0.8rem;
5946
6309
  font-size: 1.6rem;
5947
6310
  }
5948
6311
 
5949
6312
  .pa-input--xl,
5950
6313
  .pa-select--xl {
6314
+ height: 4.1rem;
5951
6315
  padding: 0.8rem 0.8rem;
5952
6316
  font-size: 1.8rem;
5953
6317
  }
@@ -6954,7 +7318,7 @@ web-daterangepicker {
6954
7318
  --drp-button-apply-color: #ffffff;
6955
7319
  --drp-button-apply-border: #D40511;
6956
7320
  /* Button sizing */
6957
- --drp-button-padding: 0.6rem 1rem;
7321
+ --drp-button-padding: 0.8rem 1rem;
6958
7322
  --drp-button-font-size: 1.4rem;
6959
7323
  --drp-button-border-radius: 4px;
6960
7324
  --drp-button-gap: 0.8rem;
@@ -7986,7 +8350,7 @@ web-daterangepicker {
7986
8350
 
7987
8351
  .pa-table th,
7988
8352
  .pa-table td {
7989
- padding: 0.5rem 0.8rem;
8353
+ padding: 0.8rem 0.8rem;
7990
8354
  text-align: left;
7991
8355
  border-bottom: 1px solid var(--pa-border-color);
7992
8356
  vertical-align: middle;
@@ -8003,6 +8367,7 @@ web-daterangepicker {
8003
8367
  .pa-table td {
8004
8368
  color: var(--pa-text-primary);
8005
8369
  background-color: var(--pa-table-bg);
8370
+ height: 3.5rem0.8rem;
8006
8371
  }
8007
8372
 
8008
8373
  .pa-table td .pa-btn {
@@ -8018,25 +8383,47 @@ web-daterangepicker {
8018
8383
  background-color: var(--pa-table-stripe);
8019
8384
  }
8020
8385
 
8021
- .pa-table--2x th,
8022
- .pa-table--2x td {
8023
- padding: 1rem 1.6rem;
8386
+ .pa-table--xs th, .pa-table--xs td {
8387
+ padding: 0.6rem 0.8rem;
8024
8388
  }
8025
8389
 
8026
- .pa-table--3x th,
8027
- .pa-table--3x td {
8028
- padding: 1.5rem 2.4rem;
8390
+ .pa-table--xs td {
8391
+ height: 3.1rem0.7rem;
8029
8392
  }
8030
8393
 
8031
- .pa-table tbody tr:hover {
8032
- background-color: var(--pa-table-hover-bg);
8394
+ .pa-table--sm th, .pa-table--sm td {
8395
+ padding: 0.8rem 1rem;
8033
8396
  }
8034
8397
 
8035
- .pa-table tbody tr:hover td {
8036
- background-color: var(--pa-table-hover-bg);
8398
+ .pa-table--sm td {
8399
+ height: 3.3rem0.8rem;
8037
8400
  }
8038
8401
 
8039
- .pa-table td .pa-btn-group {
8402
+ .pa-table--lg th, .pa-table--lg td {
8403
+ padding: 0.8rem 1.4rem;
8404
+ }
8405
+
8406
+ .pa-table--lg td {
8407
+ height: 3.8rem0.8rem;
8408
+ }
8409
+
8410
+ .pa-table--xl th, .pa-table--xl td {
8411
+ padding: 0.8rem 1.6rem;
8412
+ }
8413
+
8414
+ .pa-table--xl td {
8415
+ height: 4.1rem0.8rem;
8416
+ }
8417
+
8418
+ .pa-table tbody tr:hover {
8419
+ background-color: var(--pa-table-hover-bg);
8420
+ }
8421
+
8422
+ .pa-table tbody tr:hover td {
8423
+ background-color: var(--pa-table-hover-bg);
8424
+ }
8425
+
8426
+ .pa-table td .pa-btn-group {
8040
8427
  margin-bottom: 0;
8041
8428
  flex-wrap: nowrap;
8042
8429
  }
@@ -8389,18 +8776,6 @@ web-daterangepicker {
8389
8776
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
8390
8777
  }
8391
8778
  }
8392
- .text-success {
8393
- color: var(--pa-success-bg);
8394
- }
8395
-
8396
- .text-danger {
8397
- color: var(--pa-danger-bg);
8398
- }
8399
-
8400
- .text-warning {
8401
- color: var(--pa-warning-bg);
8402
- }
8403
-
8404
8779
  /* ========================================
8405
8780
  Comparison Table Component
8406
8781
  Two-column and three-column comparison tables for version control, data changes, and merge operations
@@ -8907,6 +9282,10 @@ code {
8907
9282
  position: relative;
8908
9283
  }
8909
9284
 
9285
+ .pa-profile-panel__header--no-avatar .pa-profile-panel__avatar {
9286
+ display: none;
9287
+ }
9288
+
8910
9289
  .pa-profile-panel__avatar {
8911
9290
  width: 6.4rem;
8912
9291
  height: 6.4rem;
@@ -8920,12 +9299,13 @@ code {
8920
9299
 
8921
9300
  .pa-profile-panel__avatar-icon {
8922
9301
  font-size: 3.2rem;
8923
- color: #D40511;
9302
+ color: var(--pa-accent);
8924
9303
  }
8925
9304
 
8926
9305
  .pa-profile-panel__info {
8927
9306
  flex: 1;
8928
9307
  min-width: 0;
9308
+ padding-right: 3.2rem;
8929
9309
  }
8930
9310
 
8931
9311
  .pa-profile-panel__name {
@@ -8933,6 +9313,9 @@ code {
8933
9313
  font-size: 1.8rem;
8934
9314
  font-weight: 600;
8935
9315
  color: var(--pa-text-primary);
9316
+ overflow: hidden;
9317
+ text-overflow: ellipsis;
9318
+ white-space: nowrap;
8936
9319
  }
8937
9320
 
8938
9321
  .pa-profile-panel__email {
@@ -8985,7 +9368,7 @@ code {
8985
9368
 
8986
9369
  .pa-profile-panel__body {
8987
9370
  flex: 1;
8988
- padding: 2.4rem;
9371
+ padding: 2.4rem 0;
8989
9372
  display: flex;
8990
9373
  flex-direction: column;
8991
9374
  gap: 3.2rem;
@@ -9027,7 +9410,10 @@ code {
9027
9410
  .pa-profile-panel__nav-icon {
9028
9411
  font-size: 1.6rem;
9029
9412
  width: 2.4rem;
9030
- text-align: center;
9413
+ height: 2.4rem;
9414
+ display: flex;
9415
+ align-items: center;
9416
+ justify-content: center;
9031
9417
  }
9032
9418
 
9033
9419
  .pa-profile-panel__actions {
@@ -9035,10 +9421,21 @@ code {
9035
9421
  flex-direction: column;
9036
9422
  gap: 1.2rem;
9037
9423
  margin-top: auto;
9424
+ padding: 0 1.6rem;
9425
+ }
9426
+
9427
+ .pa-profile-panel__footer {
9428
+ flex-shrink: 0;
9429
+ padding: 2.4rem;
9430
+ border-top: 1px solid var(--pa-border-color);
9431
+ background-color: var(--pa-card-bg);
9432
+ display: flex;
9433
+ flex-direction: column;
9434
+ gap: 1.2rem;
9038
9435
  }
9039
9436
 
9040
9437
  .pa-profile-panel__tabs {
9041
- padding: 0 2.4rem;
9438
+ padding: 0 1.6rem;
9042
9439
  border-bottom: 1px solid var(--pa-border-color);
9043
9440
  background-color: var(--pa-header-bg);
9044
9441
  }
@@ -9055,7 +9452,7 @@ code {
9055
9452
 
9056
9453
  .pa-profile-panel__tabs .pa-tabs__item:hover {
9057
9454
  color: var(--pa-header-text);
9058
- background-color: rgba(255, 255, 255, 0.1);
9455
+ background-color: var(--pa-accent-light);
9059
9456
  }
9060
9457
 
9061
9458
  .pa-profile-panel__tabs .pa-tabs__item--active {
@@ -9063,12 +9460,6 @@ code {
9063
9460
  border-bottom-color: var(--pa-accent);
9064
9461
  }
9065
9462
 
9066
- .pa-profile-panel__favorites {
9067
- display: flex;
9068
- flex-direction: column;
9069
- gap: 0.8rem;
9070
- }
9071
-
9072
9463
  .pa-profile-panel__favorites ul {
9073
9464
  list-style: none;
9074
9465
  margin: 0;
@@ -9105,7 +9496,10 @@ code {
9105
9496
  .pa-profile-panel__favorite-icon {
9106
9497
  font-size: 1.6rem;
9107
9498
  width: 2.4rem;
9108
- text-align: center;
9499
+ height: 2.4rem;
9500
+ display: flex;
9501
+ align-items: center;
9502
+ justify-content: center;
9109
9503
  }
9110
9504
 
9111
9505
  .pa-profile-panel__favorite-label {
@@ -9117,7 +9511,7 @@ code {
9117
9511
  margin-left: auto;
9118
9512
  background: none;
9119
9513
  border: none;
9120
- padding: 0.8rem;
9514
+ padding: 0.4rem;
9121
9515
  color: var(--pa-text-secondary);
9122
9516
  cursor: pointer;
9123
9517
  border-radius: 4px;
@@ -9137,7 +9531,7 @@ code {
9137
9531
 
9138
9532
  .pa-profile-panel__favorites-add {
9139
9533
  margin-top: auto;
9140
- padding-top: 1.2rem;
9534
+ padding: 1.2rem 1.6rem 0;
9141
9535
  }
9142
9536
 
9143
9537
  @media (max-width: 768px) {
@@ -11665,6 +12059,170 @@ html.font-size-4xl {
11665
12059
  line-height: 1.8;
11666
12060
  }
11667
12061
 
12062
+ .gap-0 {
12063
+ gap: 0;
12064
+ }
12065
+
12066
+ .gap-xs {
12067
+ gap: 0.4rem;
12068
+ }
12069
+
12070
+ .gap-sm {
12071
+ gap: 0.8rem;
12072
+ }
12073
+
12074
+ .gap-md {
12075
+ gap: 1.2rem;
12076
+ }
12077
+
12078
+ .gap-base {
12079
+ gap: 1.6rem;
12080
+ }
12081
+
12082
+ .gap-lg {
12083
+ gap: 2.4rem;
12084
+ }
12085
+
12086
+ .gap-xl {
12087
+ gap: 3.2rem;
12088
+ }
12089
+
12090
+ .gap-2xl {
12091
+ gap: 4.8rem;
12092
+ }
12093
+
12094
+ .gap-1 {
12095
+ gap: 0.1rem;
12096
+ }
12097
+
12098
+ .gap-2 {
12099
+ gap: 0.2rem;
12100
+ }
12101
+
12102
+ .gap-3 {
12103
+ gap: 0.3rem;
12104
+ }
12105
+
12106
+ .gap-4 {
12107
+ gap: 0.4rem;
12108
+ }
12109
+
12110
+ .gap-5 {
12111
+ gap: 0.5rem;
12112
+ }
12113
+
12114
+ .gap-6 {
12115
+ gap: 0.6rem;
12116
+ }
12117
+
12118
+ .gap-8 {
12119
+ gap: 0.8rem;
12120
+ }
12121
+
12122
+ .gap-10 {
12123
+ gap: 1rem;
12124
+ }
12125
+
12126
+ .gap-12 {
12127
+ gap: 1.2rem;
12128
+ }
12129
+
12130
+ .gap-15 {
12131
+ gap: 1.5rem;
12132
+ }
12133
+
12134
+ .gap-20 {
12135
+ gap: 2rem;
12136
+ }
12137
+
12138
+ .row-gap-0 {
12139
+ row-gap: 0;
12140
+ }
12141
+
12142
+ .row-gap-xs {
12143
+ row-gap: 0.4rem;
12144
+ }
12145
+
12146
+ .row-gap-sm {
12147
+ row-gap: 0.8rem;
12148
+ }
12149
+
12150
+ .row-gap-md {
12151
+ row-gap: 1.2rem;
12152
+ }
12153
+
12154
+ .row-gap-base {
12155
+ row-gap: 1.6rem;
12156
+ }
12157
+
12158
+ .row-gap-lg {
12159
+ row-gap: 2.4rem;
12160
+ }
12161
+
12162
+ .column-gap-0 {
12163
+ column-gap: 0;
12164
+ }
12165
+
12166
+ .column-gap-xs {
12167
+ column-gap: 0.4rem;
12168
+ }
12169
+
12170
+ .column-gap-sm {
12171
+ column-gap: 0.8rem;
12172
+ }
12173
+
12174
+ .column-gap-md {
12175
+ column-gap: 1.2rem;
12176
+ }
12177
+
12178
+ .column-gap-base {
12179
+ column-gap: 1.6rem;
12180
+ }
12181
+
12182
+ .column-gap-lg {
12183
+ column-gap: 2.4rem;
12184
+ }
12185
+
12186
+ .text-2xs {
12187
+ font-size: 1rem;
12188
+ }
12189
+
12190
+ .text-xs {
12191
+ font-size: 1.2rem;
12192
+ }
12193
+
12194
+ .text-sm {
12195
+ font-size: 1.4rem;
12196
+ }
12197
+
12198
+ .text-md {
12199
+ font-size: 1.5rem;
12200
+ }
12201
+
12202
+ .text-base {
12203
+ font-size: 1.6rem;
12204
+ }
12205
+
12206
+ .text-lg {
12207
+ font-size: 1.8rem;
12208
+ }
12209
+
12210
+ .text-xl {
12211
+ font-size: 2rem;
12212
+ }
12213
+
12214
+ .text-2xl {
12215
+ font-size: 2.4rem;
12216
+ }
12217
+
12218
+ .text-3xl {
12219
+ font-size: 2.8rem;
12220
+ }
12221
+
12222
+ .text-4xl {
12223
+ font-size: 3.2rem;
12224
+ }
12225
+
11668
12226
  .component-showcase {
11669
12227
  display: flex;
11670
12228
  flex-wrap: wrap;
@@ -12580,26 +13138,82 @@ html.font-size-4xl {
12580
13138
  white-space: nowrap !important;
12581
13139
  }
12582
13140
 
13141
+ .w-5 {
13142
+ width: 5% !important;
13143
+ }
13144
+
13145
+ .w-10 {
13146
+ width: 10% !important;
13147
+ }
13148
+
13149
+ .w-15 {
13150
+ width: 15% !important;
13151
+ }
13152
+
13153
+ .w-20 {
13154
+ width: 20% !important;
13155
+ }
13156
+
12583
13157
  .w-25 {
12584
13158
  width: 25% !important;
12585
13159
  }
12586
13160
 
12587
- .w-33 {
12588
- width: 33.333333% !important;
13161
+ .w-30 {
13162
+ width: 30% !important;
13163
+ }
13164
+
13165
+ .w-35 {
13166
+ width: 35% !important;
13167
+ }
13168
+
13169
+ .w-40 {
13170
+ width: 40% !important;
13171
+ }
13172
+
13173
+ .w-45 {
13174
+ width: 45% !important;
12589
13175
  }
12590
13176
 
12591
13177
  .w-50 {
12592
13178
  width: 50% !important;
12593
13179
  }
12594
13180
 
12595
- .w-66 {
12596
- width: 66.666667% !important;
13181
+ .w-55 {
13182
+ width: 55% !important;
13183
+ }
13184
+
13185
+ .w-60 {
13186
+ width: 60% !important;
13187
+ }
13188
+
13189
+ .w-65 {
13190
+ width: 65% !important;
13191
+ }
13192
+
13193
+ .w-70 {
13194
+ width: 70% !important;
12597
13195
  }
12598
13196
 
12599
13197
  .w-75 {
12600
13198
  width: 75% !important;
12601
13199
  }
12602
13200
 
13201
+ .w-80 {
13202
+ width: 80% !important;
13203
+ }
13204
+
13205
+ .w-85 {
13206
+ width: 85% !important;
13207
+ }
13208
+
13209
+ .w-90 {
13210
+ width: 90% !important;
13211
+ }
13212
+
13213
+ .w-95 {
13214
+ width: 95% !important;
13215
+ }
13216
+
12603
13217
  .w-100 {
12604
13218
  width: 100% !important;
12605
13219
  }
@@ -12608,20 +13222,20 @@ html.font-size-4xl {
12608
13222
  width: auto !important;
12609
13223
  }
12610
13224
 
12611
- .mw-25 {
12612
- min-width: 25% !important;
13225
+ .w-1-3 {
13226
+ width: 33.333333% !important;
12613
13227
  }
12614
13228
 
12615
- .mw-33 {
12616
- min-width: 33.333333% !important;
13229
+ .w-2-3 {
13230
+ width: 66.666667% !important;
12617
13231
  }
12618
13232
 
12619
- .mw-50 {
12620
- min-width: 50% !important;
13233
+ .mw-25 {
13234
+ min-width: 25% !important;
12621
13235
  }
12622
13236
 
12623
- .mw-66 {
12624
- min-width: 66.666667% !important;
13237
+ .mw-50 {
13238
+ min-width: 50% !important;
12625
13239
  }
12626
13240
 
12627
13241
  .mw-75 {
@@ -12636,26 +13250,24 @@ html.font-size-4xl {
12636
13250
  min-width: auto !important;
12637
13251
  }
12638
13252
 
13253
+ .mw-1-3 {
13254
+ min-width: 33.333333% !important;
13255
+ }
13256
+
13257
+ .mw-2-3 {
13258
+ min-width: 66.666667% !important;
13259
+ }
13260
+
12639
13261
  .w-25-fixed {
12640
13262
  min-width: 25% !important;
12641
13263
  width: 25% !important;
12642
13264
  }
12643
13265
 
12644
- .w-33-fixed {
12645
- min-width: 33.333333% !important;
12646
- width: 33.333333% !important;
12647
- }
12648
-
12649
13266
  .w-50-fixed {
12650
13267
  min-width: 50% !important;
12651
13268
  width: 50% !important;
12652
13269
  }
12653
13270
 
12654
- .w-66-fixed {
12655
- min-width: 66.666667% !important;
12656
- width: 66.666667% !important;
12657
- }
12658
-
12659
13271
  .w-75-fixed {
12660
13272
  min-width: 75% !important;
12661
13273
  width: 75% !important;
@@ -12666,6 +13278,16 @@ html.font-size-4xl {
12666
13278
  width: 100% !important;
12667
13279
  }
12668
13280
 
13281
+ .w-1-3-fixed {
13282
+ min-width: 33.333333% !important;
13283
+ width: 33.333333% !important;
13284
+ }
13285
+
13286
+ .w-2-3-fixed {
13287
+ min-width: 66.666667% !important;
13288
+ width: 66.666667% !important;
13289
+ }
13290
+
12669
13291
  .h-25 {
12670
13292
  height: 25% !important;
12671
13293
  }
@@ -12686,44 +13308,708 @@ html.font-size-4xl {
12686
13308
  height: auto !important;
12687
13309
  }
12688
13310
 
12689
- .position-static {
12690
- position: static !important;
13311
+ .wr-1 {
13312
+ width: 1rem !important;
12691
13313
  }
12692
13314
 
12693
- .position-relative {
12694
- position: relative !important;
13315
+ .wr-2 {
13316
+ width: 2rem !important;
12695
13317
  }
12696
13318
 
12697
- .position-absolute {
12698
- position: absolute !important;
13319
+ .wr-3 {
13320
+ width: 3rem !important;
12699
13321
  }
12700
13322
 
12701
- .position-fixed {
12702
- position: fixed !important;
13323
+ .wr-4 {
13324
+ width: 4rem !important;
12703
13325
  }
12704
13326
 
12705
- .position-sticky {
12706
- position: sticky !important;
13327
+ .wr-5 {
13328
+ width: 5rem !important;
12707
13329
  }
12708
13330
 
12709
- .border {
12710
- border: 1px solid var(--border-color) !important;
13331
+ .wr-6 {
13332
+ width: 6rem !important;
12711
13333
  }
12712
13334
 
12713
- .border-top {
12714
- border-top: 1px solid var(--border-color) !important;
13335
+ .wr-7 {
13336
+ width: 7rem !important;
12715
13337
  }
12716
13338
 
12717
- .border-right {
12718
- border-right: 1px solid var(--border-color) !important;
13339
+ .wr-8 {
13340
+ width: 8rem !important;
12719
13341
  }
12720
13342
 
12721
- .border-bottom {
12722
- border-bottom: 1px solid var(--border-color) !important;
13343
+ .wr-9 {
13344
+ width: 9rem !important;
12723
13345
  }
12724
13346
 
12725
- .border-left {
12726
- border-left: 1px solid var(--border-color) !important;
13347
+ .wr-10 {
13348
+ width: 10rem !important;
13349
+ }
13350
+
13351
+ .wr-15 {
13352
+ width: 15rem !important;
13353
+ }
13354
+
13355
+ .wr-20 {
13356
+ width: 20rem !important;
13357
+ }
13358
+
13359
+ .wr-25 {
13360
+ width: 25rem !important;
13361
+ }
13362
+
13363
+ .minwr-1 {
13364
+ min-width: 1rem !important;
13365
+ }
13366
+
13367
+ .minwr-2 {
13368
+ min-width: 2rem !important;
13369
+ }
13370
+
13371
+ .minwr-3 {
13372
+ min-width: 3rem !important;
13373
+ }
13374
+
13375
+ .minwr-4 {
13376
+ min-width: 4rem !important;
13377
+ }
13378
+
13379
+ .minwr-5 {
13380
+ min-width: 5rem !important;
13381
+ }
13382
+
13383
+ .minwr-6 {
13384
+ min-width: 6rem !important;
13385
+ }
13386
+
13387
+ .minwr-7 {
13388
+ min-width: 7rem !important;
13389
+ }
13390
+
13391
+ .minwr-8 {
13392
+ min-width: 8rem !important;
13393
+ }
13394
+
13395
+ .minwr-9 {
13396
+ min-width: 9rem !important;
13397
+ }
13398
+
13399
+ .minwr-10 {
13400
+ min-width: 10rem !important;
13401
+ }
13402
+
13403
+ .minwr-15 {
13404
+ min-width: 15rem !important;
13405
+ }
13406
+
13407
+ .minwr-20 {
13408
+ min-width: 20rem !important;
13409
+ }
13410
+
13411
+ .minwr-25 {
13412
+ min-width: 25rem !important;
13413
+ }
13414
+
13415
+ .maxwr-1 {
13416
+ max-width: 1rem !important;
13417
+ }
13418
+
13419
+ .maxwr-2 {
13420
+ max-width: 2rem !important;
13421
+ }
13422
+
13423
+ .maxwr-3 {
13424
+ max-width: 3rem !important;
13425
+ }
13426
+
13427
+ .maxwr-4 {
13428
+ max-width: 4rem !important;
13429
+ }
13430
+
13431
+ .maxwr-5 {
13432
+ max-width: 5rem !important;
13433
+ }
13434
+
13435
+ .maxwr-6 {
13436
+ max-width: 6rem !important;
13437
+ }
13438
+
13439
+ .maxwr-7 {
13440
+ max-width: 7rem !important;
13441
+ }
13442
+
13443
+ .maxwr-8 {
13444
+ max-width: 8rem !important;
13445
+ }
13446
+
13447
+ .maxwr-9 {
13448
+ max-width: 9rem !important;
13449
+ }
13450
+
13451
+ .maxwr-10 {
13452
+ max-width: 10rem !important;
13453
+ }
13454
+
13455
+ .maxwr-15 {
13456
+ max-width: 15rem !important;
13457
+ }
13458
+
13459
+ .maxwr-20 {
13460
+ max-width: 20rem !important;
13461
+ }
13462
+
13463
+ .maxwr-25 {
13464
+ max-width: 25rem !important;
13465
+ }
13466
+
13467
+ .hr-1 {
13468
+ height: 1rem !important;
13469
+ }
13470
+
13471
+ .hr-2 {
13472
+ height: 2rem !important;
13473
+ }
13474
+
13475
+ .hr-3 {
13476
+ height: 3rem !important;
13477
+ }
13478
+
13479
+ .hr-4 {
13480
+ height: 4rem !important;
13481
+ }
13482
+
13483
+ .hr-5 {
13484
+ height: 5rem !important;
13485
+ }
13486
+
13487
+ .hr-6 {
13488
+ height: 6rem !important;
13489
+ }
13490
+
13491
+ .hr-7 {
13492
+ height: 7rem !important;
13493
+ }
13494
+
13495
+ .hr-8 {
13496
+ height: 8rem !important;
13497
+ }
13498
+
13499
+ .hr-9 {
13500
+ height: 9rem !important;
13501
+ }
13502
+
13503
+ .hr-10 {
13504
+ height: 10rem !important;
13505
+ }
13506
+
13507
+ .hr-15 {
13508
+ height: 15rem !important;
13509
+ }
13510
+
13511
+ .hr-20 {
13512
+ height: 20rem !important;
13513
+ }
13514
+
13515
+ .hr-25 {
13516
+ height: 25rem !important;
13517
+ }
13518
+
13519
+ .minhr-1 {
13520
+ min-height: 1rem !important;
13521
+ }
13522
+
13523
+ .minhr-2 {
13524
+ min-height: 2rem !important;
13525
+ }
13526
+
13527
+ .minhr-3 {
13528
+ min-height: 3rem !important;
13529
+ }
13530
+
13531
+ .minhr-4 {
13532
+ min-height: 4rem !important;
13533
+ }
13534
+
13535
+ .minhr-5 {
13536
+ min-height: 5rem !important;
13537
+ }
13538
+
13539
+ .minhr-6 {
13540
+ min-height: 6rem !important;
13541
+ }
13542
+
13543
+ .minhr-7 {
13544
+ min-height: 7rem !important;
13545
+ }
13546
+
13547
+ .minhr-8 {
13548
+ min-height: 8rem !important;
13549
+ }
13550
+
13551
+ .minhr-9 {
13552
+ min-height: 9rem !important;
13553
+ }
13554
+
13555
+ .minhr-10 {
13556
+ min-height: 10rem !important;
13557
+ }
13558
+
13559
+ .minhr-15 {
13560
+ min-height: 15rem !important;
13561
+ }
13562
+
13563
+ .minhr-20 {
13564
+ min-height: 20rem !important;
13565
+ }
13566
+
13567
+ .minhr-25 {
13568
+ min-height: 25rem !important;
13569
+ }
13570
+
13571
+ .maxhr-1 {
13572
+ max-height: 1rem !important;
13573
+ }
13574
+
13575
+ .maxhr-2 {
13576
+ max-height: 2rem !important;
13577
+ }
13578
+
13579
+ .maxhr-3 {
13580
+ max-height: 3rem !important;
13581
+ }
13582
+
13583
+ .maxhr-4 {
13584
+ max-height: 4rem !important;
13585
+ }
13586
+
13587
+ .maxhr-5 {
13588
+ max-height: 5rem !important;
13589
+ }
13590
+
13591
+ .maxhr-6 {
13592
+ max-height: 6rem !important;
13593
+ }
13594
+
13595
+ .maxhr-7 {
13596
+ max-height: 7rem !important;
13597
+ }
13598
+
13599
+ .maxhr-8 {
13600
+ max-height: 8rem !important;
13601
+ }
13602
+
13603
+ .maxhr-9 {
13604
+ max-height: 9rem !important;
13605
+ }
13606
+
13607
+ .maxhr-10 {
13608
+ max-height: 10rem !important;
13609
+ }
13610
+
13611
+ .maxhr-15 {
13612
+ max-height: 15rem !important;
13613
+ }
13614
+
13615
+ .maxhr-20 {
13616
+ max-height: 20rem !important;
13617
+ }
13618
+
13619
+ .maxhr-25 {
13620
+ max-height: 25rem !important;
13621
+ }
13622
+
13623
+ .minw-5 {
13624
+ min-width: 5% !important;
13625
+ }
13626
+
13627
+ .minw-10 {
13628
+ min-width: 10% !important;
13629
+ }
13630
+
13631
+ .minw-15 {
13632
+ min-width: 15% !important;
13633
+ }
13634
+
13635
+ .minw-20 {
13636
+ min-width: 20% !important;
13637
+ }
13638
+
13639
+ .minw-25 {
13640
+ min-width: 25% !important;
13641
+ }
13642
+
13643
+ .minw-30 {
13644
+ min-width: 30% !important;
13645
+ }
13646
+
13647
+ .minw-35 {
13648
+ min-width: 35% !important;
13649
+ }
13650
+
13651
+ .minw-40 {
13652
+ min-width: 40% !important;
13653
+ }
13654
+
13655
+ .minw-45 {
13656
+ min-width: 45% !important;
13657
+ }
13658
+
13659
+ .minw-50 {
13660
+ min-width: 50% !important;
13661
+ }
13662
+
13663
+ .minw-55 {
13664
+ min-width: 55% !important;
13665
+ }
13666
+
13667
+ .minw-60 {
13668
+ min-width: 60% !important;
13669
+ }
13670
+
13671
+ .minw-65 {
13672
+ min-width: 65% !important;
13673
+ }
13674
+
13675
+ .minw-70 {
13676
+ min-width: 70% !important;
13677
+ }
13678
+
13679
+ .minw-75 {
13680
+ min-width: 75% !important;
13681
+ }
13682
+
13683
+ .minw-80 {
13684
+ min-width: 80% !important;
13685
+ }
13686
+
13687
+ .minw-85 {
13688
+ min-width: 85% !important;
13689
+ }
13690
+
13691
+ .minw-90 {
13692
+ min-width: 90% !important;
13693
+ }
13694
+
13695
+ .minw-95 {
13696
+ min-width: 95% !important;
13697
+ }
13698
+
13699
+ .minw-100 {
13700
+ min-width: 100% !important;
13701
+ }
13702
+
13703
+ .minw-1-3 {
13704
+ min-width: 33.333333% !important;
13705
+ }
13706
+
13707
+ .minw-2-3 {
13708
+ min-width: 66.666667% !important;
13709
+ }
13710
+
13711
+ .maxw-5 {
13712
+ max-width: 5% !important;
13713
+ }
13714
+
13715
+ .maxw-10 {
13716
+ max-width: 10% !important;
13717
+ }
13718
+
13719
+ .maxw-15 {
13720
+ max-width: 15% !important;
13721
+ }
13722
+
13723
+ .maxw-20 {
13724
+ max-width: 20% !important;
13725
+ }
13726
+
13727
+ .maxw-25 {
13728
+ max-width: 25% !important;
13729
+ }
13730
+
13731
+ .maxw-30 {
13732
+ max-width: 30% !important;
13733
+ }
13734
+
13735
+ .maxw-35 {
13736
+ max-width: 35% !important;
13737
+ }
13738
+
13739
+ .maxw-40 {
13740
+ max-width: 40% !important;
13741
+ }
13742
+
13743
+ .maxw-45 {
13744
+ max-width: 45% !important;
13745
+ }
13746
+
13747
+ .maxw-50 {
13748
+ max-width: 50% !important;
13749
+ }
13750
+
13751
+ .maxw-55 {
13752
+ max-width: 55% !important;
13753
+ }
13754
+
13755
+ .maxw-60 {
13756
+ max-width: 60% !important;
13757
+ }
13758
+
13759
+ .maxw-65 {
13760
+ max-width: 65% !important;
13761
+ }
13762
+
13763
+ .maxw-70 {
13764
+ max-width: 70% !important;
13765
+ }
13766
+
13767
+ .maxw-75 {
13768
+ max-width: 75% !important;
13769
+ }
13770
+
13771
+ .maxw-80 {
13772
+ max-width: 80% !important;
13773
+ }
13774
+
13775
+ .maxw-85 {
13776
+ max-width: 85% !important;
13777
+ }
13778
+
13779
+ .maxw-90 {
13780
+ max-width: 90% !important;
13781
+ }
13782
+
13783
+ .maxw-95 {
13784
+ max-width: 95% !important;
13785
+ }
13786
+
13787
+ .maxw-100 {
13788
+ max-width: 100% !important;
13789
+ }
13790
+
13791
+ .maxw-1-3 {
13792
+ max-width: 33.333333% !important;
13793
+ }
13794
+
13795
+ .maxw-2-3 {
13796
+ max-width: 66.666667% !important;
13797
+ }
13798
+
13799
+ .minh-5 {
13800
+ min-height: 5% !important;
13801
+ }
13802
+
13803
+ .minh-10 {
13804
+ min-height: 10% !important;
13805
+ }
13806
+
13807
+ .minh-15 {
13808
+ min-height: 15% !important;
13809
+ }
13810
+
13811
+ .minh-20 {
13812
+ min-height: 20% !important;
13813
+ }
13814
+
13815
+ .minh-25 {
13816
+ min-height: 25% !important;
13817
+ }
13818
+
13819
+ .minh-30 {
13820
+ min-height: 30% !important;
13821
+ }
13822
+
13823
+ .minh-35 {
13824
+ min-height: 35% !important;
13825
+ }
13826
+
13827
+ .minh-40 {
13828
+ min-height: 40% !important;
13829
+ }
13830
+
13831
+ .minh-45 {
13832
+ min-height: 45% !important;
13833
+ }
13834
+
13835
+ .minh-50 {
13836
+ min-height: 50% !important;
13837
+ }
13838
+
13839
+ .minh-55 {
13840
+ min-height: 55% !important;
13841
+ }
13842
+
13843
+ .minh-60 {
13844
+ min-height: 60% !important;
13845
+ }
13846
+
13847
+ .minh-65 {
13848
+ min-height: 65% !important;
13849
+ }
13850
+
13851
+ .minh-70 {
13852
+ min-height: 70% !important;
13853
+ }
13854
+
13855
+ .minh-75 {
13856
+ min-height: 75% !important;
13857
+ }
13858
+
13859
+ .minh-80 {
13860
+ min-height: 80% !important;
13861
+ }
13862
+
13863
+ .minh-85 {
13864
+ min-height: 85% !important;
13865
+ }
13866
+
13867
+ .minh-90 {
13868
+ min-height: 90% !important;
13869
+ }
13870
+
13871
+ .minh-95 {
13872
+ min-height: 95% !important;
13873
+ }
13874
+
13875
+ .minh-100 {
13876
+ min-height: 100% !important;
13877
+ }
13878
+
13879
+ .minh-1-3 {
13880
+ min-height: 33.333333% !important;
13881
+ }
13882
+
13883
+ .minh-2-3 {
13884
+ min-height: 66.666667% !important;
13885
+ }
13886
+
13887
+ .maxh-5 {
13888
+ max-height: 5% !important;
13889
+ }
13890
+
13891
+ .maxh-10 {
13892
+ max-height: 10% !important;
13893
+ }
13894
+
13895
+ .maxh-15 {
13896
+ max-height: 15% !important;
13897
+ }
13898
+
13899
+ .maxh-20 {
13900
+ max-height: 20% !important;
13901
+ }
13902
+
13903
+ .maxh-25 {
13904
+ max-height: 25% !important;
13905
+ }
13906
+
13907
+ .maxh-30 {
13908
+ max-height: 30% !important;
13909
+ }
13910
+
13911
+ .maxh-35 {
13912
+ max-height: 35% !important;
13913
+ }
13914
+
13915
+ .maxh-40 {
13916
+ max-height: 40% !important;
13917
+ }
13918
+
13919
+ .maxh-45 {
13920
+ max-height: 45% !important;
13921
+ }
13922
+
13923
+ .maxh-50 {
13924
+ max-height: 50% !important;
13925
+ }
13926
+
13927
+ .maxh-55 {
13928
+ max-height: 55% !important;
13929
+ }
13930
+
13931
+ .maxh-60 {
13932
+ max-height: 60% !important;
13933
+ }
13934
+
13935
+ .maxh-65 {
13936
+ max-height: 65% !important;
13937
+ }
13938
+
13939
+ .maxh-70 {
13940
+ max-height: 70% !important;
13941
+ }
13942
+
13943
+ .maxh-75 {
13944
+ max-height: 75% !important;
13945
+ }
13946
+
13947
+ .maxh-80 {
13948
+ max-height: 80% !important;
13949
+ }
13950
+
13951
+ .maxh-85 {
13952
+ max-height: 85% !important;
13953
+ }
13954
+
13955
+ .maxh-90 {
13956
+ max-height: 90% !important;
13957
+ }
13958
+
13959
+ .maxh-95 {
13960
+ max-height: 95% !important;
13961
+ }
13962
+
13963
+ .maxh-100 {
13964
+ max-height: 100% !important;
13965
+ }
13966
+
13967
+ .maxh-1-3 {
13968
+ max-height: 33.333333% !important;
13969
+ }
13970
+
13971
+ .maxh-2-3 {
13972
+ max-height: 66.666667% !important;
13973
+ }
13974
+
13975
+ .position-static {
13976
+ position: static !important;
13977
+ }
13978
+
13979
+ .position-relative {
13980
+ position: relative !important;
13981
+ }
13982
+
13983
+ .position-absolute {
13984
+ position: absolute !important;
13985
+ }
13986
+
13987
+ .position-fixed {
13988
+ position: fixed !important;
13989
+ }
13990
+
13991
+ .position-sticky {
13992
+ position: sticky !important;
13993
+ }
13994
+
13995
+ .border {
13996
+ border: 1px solid var(--border-color) !important;
13997
+ }
13998
+
13999
+ .border-top {
14000
+ border-top: 1px solid var(--border-color) !important;
14001
+ }
14002
+
14003
+ .border-right {
14004
+ border-right: 1px solid var(--border-color) !important;
14005
+ }
14006
+
14007
+ .border-bottom {
14008
+ border-bottom: 1px solid var(--border-color) !important;
14009
+ }
14010
+
14011
+ .border-left {
14012
+ border-left: 1px solid var(--border-color) !important;
12727
14013
  }
12728
14014
 
12729
14015
  .border-0 {
@@ -12746,6 +14032,78 @@ html.font-size-4xl {
12746
14032
  border-left: 0 !important;
12747
14033
  }
12748
14034
 
14035
+ .border-solid {
14036
+ border-style: solid !important;
14037
+ }
14038
+
14039
+ .border-dashed {
14040
+ border-style: dashed !important;
14041
+ }
14042
+
14043
+ .border-dotted {
14044
+ border-style: dotted !important;
14045
+ }
14046
+
14047
+ .border-none {
14048
+ border-style: none !important;
14049
+ }
14050
+
14051
+ .text-primary {
14052
+ color: var(--pa-accent) !important;
14053
+ }
14054
+
14055
+ .text-success {
14056
+ color: var(--pa-success-text) !important;
14057
+ }
14058
+
14059
+ .text-danger {
14060
+ color: var(--pa-danger-text) !important;
14061
+ }
14062
+
14063
+ .text-warning {
14064
+ color: var(--pa-warning-text) !important;
14065
+ }
14066
+
14067
+ .text-info {
14068
+ color: var(--pa-info-text) !important;
14069
+ }
14070
+
14071
+ .text-color-1 {
14072
+ color: var(--pa-color-1) !important;
14073
+ }
14074
+
14075
+ .text-color-2 {
14076
+ color: var(--pa-color-2) !important;
14077
+ }
14078
+
14079
+ .text-color-3 {
14080
+ color: var(--pa-color-3) !important;
14081
+ }
14082
+
14083
+ .text-color-4 {
14084
+ color: var(--pa-color-4) !important;
14085
+ }
14086
+
14087
+ .text-color-5 {
14088
+ color: var(--pa-color-5) !important;
14089
+ }
14090
+
14091
+ .text-color-6 {
14092
+ color: var(--pa-color-6) !important;
14093
+ }
14094
+
14095
+ .text-color-7 {
14096
+ color: var(--pa-color-7) !important;
14097
+ }
14098
+
14099
+ .text-color-8 {
14100
+ color: var(--pa-color-8) !important;
14101
+ }
14102
+
14103
+ .text-color-9 {
14104
+ color: var(--pa-color-9) !important;
14105
+ }
14106
+
12749
14107
  .rounded {
12750
14108
  border-radius: var(--border-radius) !important;
12751
14109
  }
@@ -12892,6 +14250,18 @@ html.font-size-4xl {
12892
14250
  box-shadow: 0 2px 8px rgba(212, 5, 17, 0.3) !important;
12893
14251
  }
12894
14252
 
14253
+ .pa-profile-panel__tabs .pa-tabs__item {
14254
+ color: #333333 !important;
14255
+ }
14256
+ .pa-profile-panel__tabs .pa-tabs__item:hover {
14257
+ color: #D40511 !important;
14258
+ background-color: rgba(212, 5, 17, 0.08) !important;
14259
+ }
14260
+ .pa-profile-panel__tabs .pa-tabs__item--active {
14261
+ color: #D40511 !important;
14262
+ border-bottom-color: #D40511 !important;
14263
+ }
14264
+
12895
14265
  :root, .pa-mode-light {
12896
14266
  --page-loader-bg: rgba(255, 255, 255, 0.95);
12897
14267
  --page-loader-spinner-border: #ccc;
@@ -13081,9 +14451,9 @@ html.font-size-4xl {
13081
14451
  --pa-checkbox-bg-indeterminate: #D40511;
13082
14452
  --pa-checkbox-checkmark-color: white;
13083
14453
  --pa-checkbox-focus-shadow: 0 0 0 2px rgba(212, 5, 17, 0.25);
13084
- --pa-input-group-prepend-bg: #F2F2F2;
14454
+ --pa-input-group-prepend-bg: #6c757d;
13085
14455
  --pa-input-group-prepend-text: #8C8C8C;
13086
- --pa-input-group-append-bg: #F2F2F2;
14456
+ --pa-input-group-append-bg: #6c757d;
13087
14457
  --pa-input-group-append-text: #8C8C8C;
13088
14458
  --pa-table-bg: #ffffff;
13089
14459
  --pa-table-header-bg: #EBEBEB;
@@ -13136,6 +14506,15 @@ html.font-size-4xl {
13136
14506
  --pa-multiselect-option-hover-bg: #F2F2F2;
13137
14507
  --pa-multiselect-pill-bg: rgba(212, 5, 17, 0.06);
13138
14508
  --pa-multiselect-pill-border: #D40511;
14509
+ --pa-color-1: transparent;
14510
+ --pa-color-2: transparent;
14511
+ --pa-color-3: transparent;
14512
+ --pa-color-4: transparent;
14513
+ --pa-color-5: transparent;
14514
+ --pa-color-6: transparent;
14515
+ --pa-color-7: transparent;
14516
+ --pa-color-8: transparent;
14517
+ --pa-color-9: transparent;
13139
14518
  --drp-dropdown-bg: #ffffff;
13140
14519
  --drp-border-color: #E5E5E5;
13141
14520
  --drp-primary-bg: #F2F2F2;