@keenmate/pure-admin-theme-audi 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/audi.css +1666 -297
- package/package.json +3 -3
- package/src/scss/audi.scss +6 -3
package/dist/audi.css
CHANGED
|
@@ -2525,8 +2525,8 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2525
2525
|
======================================== */
|
|
2526
2526
|
.pa-card {
|
|
2527
2527
|
background: var(--pa-card-bg);
|
|
2528
|
-
border:
|
|
2529
|
-
border-radius:
|
|
2528
|
+
border: 2px solid var(--pa-border-color);
|
|
2529
|
+
border-radius: 0;
|
|
2530
2530
|
margin-bottom: 1.6rem;
|
|
2531
2531
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
2532
2532
|
transition: box-shadow 0.1s ease-out;
|
|
@@ -2539,10 +2539,10 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2539
2539
|
}
|
|
2540
2540
|
|
|
2541
2541
|
.pa-card__header {
|
|
2542
|
-
padding: 0.
|
|
2542
|
+
padding: 0.5rem 1rem;
|
|
2543
2543
|
min-height: 4rem;
|
|
2544
|
-
border-top-left-radius:
|
|
2545
|
-
border-top-right-radius:
|
|
2544
|
+
border-top-left-radius: 0;
|
|
2545
|
+
border-top-right-radius: 0;
|
|
2546
2546
|
border-bottom: 1px solid var(--pa-border-color);
|
|
2547
2547
|
background: var(--pa-card-header-bg);
|
|
2548
2548
|
display: flex;
|
|
@@ -2579,6 +2579,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2579
2579
|
font-size: 1.6rem;
|
|
2580
2580
|
}
|
|
2581
2581
|
|
|
2582
|
+
.pa-card__header .pa-btn {
|
|
2583
|
+
margin-top: -0.25rem;
|
|
2584
|
+
margin-bottom: -0.25rem;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2582
2587
|
.pa-card__title {
|
|
2583
2588
|
display: flex;
|
|
2584
2589
|
align-items: center;
|
|
@@ -2754,6 +2759,35 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2754
2759
|
display: block;
|
|
2755
2760
|
}
|
|
2756
2761
|
|
|
2762
|
+
.pa-card__tabs--inline {
|
|
2763
|
+
display: flex;
|
|
2764
|
+
gap: 0.4rem;
|
|
2765
|
+
margin: -0.5rem 0;
|
|
2766
|
+
border-bottom: none;
|
|
2767
|
+
background: none;
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
.pa-card__tabs--inline .pa-card__tab {
|
|
2771
|
+
padding: 0.3rem 0.8rem;
|
|
2772
|
+
border: none;
|
|
2773
|
+
border-radius: 1px;
|
|
2774
|
+
font-size: 1.4rem;
|
|
2775
|
+
background: transparent;
|
|
2776
|
+
color: var(--pa-text-secondary);
|
|
2777
|
+
cursor: pointer;
|
|
2778
|
+
transition: all 0.1s ease-out;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.pa-card__tabs--inline .pa-card__tab:hover {
|
|
2782
|
+
background-color: rgba(255, 0, 0, 0.05);
|
|
2783
|
+
color: var(--pa-text-primary);
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
.pa-card__tabs--inline .pa-card__tab--active {
|
|
2787
|
+
background: var(--pa-accent);
|
|
2788
|
+
color: var(--pa-btn-primary-text);
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2757
2791
|
a.pa-card {
|
|
2758
2792
|
text-decoration: none;
|
|
2759
2793
|
display: block;
|
|
@@ -3034,8 +3068,23 @@ a.pa-card p {
|
|
|
3034
3068
|
justify-content: center;
|
|
3035
3069
|
}
|
|
3036
3070
|
|
|
3071
|
+
.pa-tabs--border-top {
|
|
3072
|
+
border-bottom: none;
|
|
3073
|
+
border-top: 1px solid var(--pa-border-color);
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
.pa-tabs--border-top .pa-tabs__item {
|
|
3077
|
+
border-bottom: none;
|
|
3078
|
+
border-top: 2px solid transparent;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
.pa-tabs--border-top .pa-tabs__item--active {
|
|
3082
|
+
border-top-color: #ff0000;
|
|
3083
|
+
border-bottom-color: transparent;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3037
3086
|
.pa-tabs--sm .pa-tabs__item {
|
|
3038
|
-
padding: 0.
|
|
3087
|
+
padding: 0.8rem 1rem;
|
|
3039
3088
|
font-size: 1.2rem;
|
|
3040
3089
|
}
|
|
3041
3090
|
|
|
@@ -3044,7 +3093,7 @@ a.pa-card p {
|
|
|
3044
3093
|
}
|
|
3045
3094
|
|
|
3046
3095
|
.pa-tabs--lg .pa-tabs__item {
|
|
3047
|
-
padding:
|
|
3096
|
+
padding: 0.8rem 1.4rem;
|
|
3048
3097
|
font-size: 1.8rem;
|
|
3049
3098
|
}
|
|
3050
3099
|
|
|
@@ -3070,109 +3119,145 @@ a.pa-card p {
|
|
|
3070
3119
|
padding-top: 1.2rem;
|
|
3071
3120
|
}
|
|
3072
3121
|
|
|
3073
|
-
.pa-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
}
|
|
3078
|
-
|
|
3079
|
-
.pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
|
|
3080
|
-
padding-top: 0;
|
|
3081
|
-
}
|
|
3082
|
-
|
|
3083
|
-
.pa-tabs__vertical-layout--bordered {
|
|
3084
|
-
border: 1px solid var(--pa-border-color);
|
|
3085
|
-
border-radius: 2px;
|
|
3086
|
-
padding: 1.6rem 1rem;
|
|
3122
|
+
.pa-tabs__container--card {
|
|
3123
|
+
position: relative;
|
|
3124
|
+
border: 2px solid var(--pa-border-color);
|
|
3125
|
+
border-radius: 0;
|
|
3087
3126
|
background-color: var(--pa-card-bg);
|
|
3127
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
3088
3128
|
}
|
|
3089
3129
|
|
|
3090
|
-
.pa-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
min-width: 2rem;
|
|
3130
|
+
.pa-tabs__container--card .pa-tabs {
|
|
3131
|
+
height: 4rem;
|
|
3132
|
+
padding: 0.5rem 1rem;
|
|
3133
|
+
background: var(--pa-card-header-bg);
|
|
3134
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
3135
|
+
box-sizing: border-box;
|
|
3136
|
+
border-top-left-radius: 0;
|
|
3137
|
+
border-top-right-radius: 0;
|
|
3138
|
+
margin-bottom: 0;
|
|
3139
|
+
align-items: center;
|
|
3140
|
+
gap: 0.4rem;
|
|
3141
|
+
flex-wrap: nowrap;
|
|
3142
|
+
overflow: visible;
|
|
3104
3143
|
}
|
|
3105
3144
|
|
|
3106
|
-
.pa-
|
|
3107
|
-
|
|
3145
|
+
.pa-tabs__container--card .pa-tabs__content {
|
|
3146
|
+
padding: 1.6rem 1rem;
|
|
3108
3147
|
}
|
|
3109
3148
|
|
|
3110
|
-
.pa-
|
|
3111
|
-
|
|
3149
|
+
.pa-tabs__container--card .pa-tabs__panel {
|
|
3150
|
+
padding-top: 0;
|
|
3112
3151
|
}
|
|
3113
3152
|
|
|
3114
|
-
.pa-
|
|
3115
|
-
|
|
3153
|
+
.pa-tabs__container--card .pa-tabs__overflow {
|
|
3154
|
+
position: relative;
|
|
3155
|
+
margin-left: auto;
|
|
3156
|
+
flex-shrink: 0;
|
|
3116
3157
|
}
|
|
3117
3158
|
|
|
3118
|
-
.pa-
|
|
3119
|
-
|
|
3159
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle {
|
|
3160
|
+
position: relative;
|
|
3161
|
+
display: flex;
|
|
3162
|
+
align-items: center;
|
|
3163
|
+
justify-content: center;
|
|
3164
|
+
width: 4rem;
|
|
3165
|
+
height: 100%;
|
|
3166
|
+
padding: 0;
|
|
3167
|
+
border: none;
|
|
3168
|
+
background: transparent;
|
|
3169
|
+
color: var(--pa-text-secondary);
|
|
3170
|
+
cursor: pointer;
|
|
3171
|
+
transition: all 0.1s ease-out;
|
|
3172
|
+
border-left: 1px solid var(--pa-border-color);
|
|
3173
|
+
margin: -0.5rem -1rem -0.5rem 0;
|
|
3174
|
+
box-sizing: content-box;
|
|
3175
|
+
height: 4rem;
|
|
3120
3176
|
}
|
|
3121
3177
|
|
|
3122
|
-
.pa-
|
|
3123
|
-
|
|
3178
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle:hover {
|
|
3179
|
+
background-color: rgba(255, 0, 0, 0.05);
|
|
3180
|
+
color: var(--pa-text-primary);
|
|
3124
3181
|
}
|
|
3125
3182
|
|
|
3126
|
-
.pa-
|
|
3127
|
-
|
|
3183
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle--has-active {
|
|
3184
|
+
color: var(--pa-accent);
|
|
3128
3185
|
}
|
|
3129
3186
|
|
|
3130
|
-
.pa-
|
|
3131
|
-
|
|
3187
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle--has-active::after {
|
|
3188
|
+
content: "";
|
|
3189
|
+
position: absolute;
|
|
3190
|
+
bottom: 0;
|
|
3191
|
+
left: 0;
|
|
3192
|
+
right: 0;
|
|
3193
|
+
height: 2px;
|
|
3194
|
+
background: var(--pa-accent);
|
|
3132
3195
|
}
|
|
3133
3196
|
|
|
3134
|
-
.pa-
|
|
3135
|
-
|
|
3197
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle i {
|
|
3198
|
+
font-size: 1.4rem;
|
|
3136
3199
|
}
|
|
3137
3200
|
|
|
3138
|
-
.pa-
|
|
3139
|
-
|
|
3201
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu {
|
|
3202
|
+
position: absolute;
|
|
3203
|
+
top: 4rem;
|
|
3204
|
+
right: 0;
|
|
3205
|
+
min-width: 15rem;
|
|
3206
|
+
background: var(--pa-card-bg);
|
|
3207
|
+
border: 2px solid var(--pa-border-color);
|
|
3208
|
+
border-radius: 1px;
|
|
3209
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
3210
|
+
z-index: 1000;
|
|
3211
|
+
display: none;
|
|
3212
|
+
flex-direction: column;
|
|
3213
|
+
padding: 0.4rem 0;
|
|
3140
3214
|
}
|
|
3141
3215
|
|
|
3142
|
-
.pa-
|
|
3143
|
-
|
|
3216
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu--open {
|
|
3217
|
+
display: flex;
|
|
3144
3218
|
}
|
|
3145
3219
|
|
|
3146
|
-
.pa-
|
|
3147
|
-
|
|
3220
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item {
|
|
3221
|
+
padding: 0.8rem 1.6rem;
|
|
3222
|
+
border: none;
|
|
3223
|
+
border-bottom: none;
|
|
3224
|
+
border-radius: 0;
|
|
3225
|
+
text-align: left;
|
|
3226
|
+
white-space: nowrap;
|
|
3148
3227
|
}
|
|
3149
3228
|
|
|
3150
|
-
.pa-
|
|
3151
|
-
|
|
3229
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item:hover {
|
|
3230
|
+
background-color: rgba(255, 0, 0, 0.05);
|
|
3152
3231
|
}
|
|
3153
3232
|
|
|
3154
|
-
.pa-
|
|
3155
|
-
|
|
3233
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item--active {
|
|
3234
|
+
background-color: rgba(255, 0, 0, 0.1);
|
|
3235
|
+
border-bottom: none;
|
|
3156
3236
|
}
|
|
3157
3237
|
|
|
3158
|
-
.pa-
|
|
3159
|
-
|
|
3238
|
+
.pa-tabs__vertical-layout {
|
|
3239
|
+
display: flex;
|
|
3240
|
+
gap: 1.6rem;
|
|
3241
|
+
align-items: flex-start;
|
|
3160
3242
|
}
|
|
3161
3243
|
|
|
3162
|
-
.pa-
|
|
3163
|
-
|
|
3244
|
+
.pa-tabs__vertical-layout .pa-tabs__content .pa-tabs__panel {
|
|
3245
|
+
padding-top: 0;
|
|
3164
3246
|
}
|
|
3165
3247
|
|
|
3166
|
-
.pa-
|
|
3167
|
-
|
|
3248
|
+
.pa-tabs__vertical-layout--bordered {
|
|
3249
|
+
border: 1px solid var(--pa-border-color);
|
|
3250
|
+
border-radius: 2px;
|
|
3251
|
+
padding: 1.6rem 1rem;
|
|
3252
|
+
background-color: var(--pa-card-bg);
|
|
3168
3253
|
}
|
|
3169
3254
|
|
|
3170
|
-
.pa-
|
|
3171
|
-
|
|
3255
|
+
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
|
|
3256
|
+
border-right: 1px solid var(--pa-border-color);
|
|
3172
3257
|
}
|
|
3173
3258
|
|
|
3174
|
-
.pa-tabs .pa-tabs__item
|
|
3175
|
-
|
|
3259
|
+
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
|
|
3260
|
+
width: 100%;
|
|
3176
3261
|
}
|
|
3177
3262
|
|
|
3178
3263
|
/* ========================================
|
|
@@ -3541,8 +3626,8 @@ a.pa-card p {
|
|
|
3541
3626
|
}
|
|
3542
3627
|
|
|
3543
3628
|
.pa-list__avatar {
|
|
3544
|
-
width:
|
|
3545
|
-
height:
|
|
3629
|
+
width: 3.5rem;
|
|
3630
|
+
height: 3.5rem;
|
|
3546
3631
|
border-radius: 50%;
|
|
3547
3632
|
background-color: var(--pa-primary-bg);
|
|
3548
3633
|
display: flex;
|
|
@@ -3679,64 +3764,6 @@ a.pa-card p {
|
|
|
3679
3764
|
border-color: var(--pa-btn-dark-bg);
|
|
3680
3765
|
}
|
|
3681
3766
|
|
|
3682
|
-
.pa-badge--w-1x {
|
|
3683
|
-
min-width: 1.6rem;
|
|
3684
|
-
max-width: 1.6rem;
|
|
3685
|
-
}
|
|
3686
|
-
|
|
3687
|
-
.pa-badge--w-2x {
|
|
3688
|
-
min-width: 3.2rem;
|
|
3689
|
-
max-width: 3.2rem;
|
|
3690
|
-
}
|
|
3691
|
-
|
|
3692
|
-
.pa-badge--w-3x {
|
|
3693
|
-
min-width: 4.8rem;
|
|
3694
|
-
max-width: 4.8rem;
|
|
3695
|
-
}
|
|
3696
|
-
|
|
3697
|
-
.pa-badge--w-4x {
|
|
3698
|
-
min-width: 6.4rem;
|
|
3699
|
-
max-width: 6.4rem;
|
|
3700
|
-
}
|
|
3701
|
-
|
|
3702
|
-
.pa-badge--w-5x {
|
|
3703
|
-
min-width: 8rem;
|
|
3704
|
-
max-width: 8rem;
|
|
3705
|
-
}
|
|
3706
|
-
|
|
3707
|
-
.pa-badge--w-6x {
|
|
3708
|
-
min-width: 9.6rem;
|
|
3709
|
-
max-width: 9.6rem;
|
|
3710
|
-
}
|
|
3711
|
-
|
|
3712
|
-
.pa-badge--w-7x {
|
|
3713
|
-
min-width: 11.2rem;
|
|
3714
|
-
max-width: 11.2rem;
|
|
3715
|
-
}
|
|
3716
|
-
|
|
3717
|
-
.pa-badge--w-8x {
|
|
3718
|
-
min-width: 12.8rem;
|
|
3719
|
-
max-width: 12.8rem;
|
|
3720
|
-
}
|
|
3721
|
-
|
|
3722
|
-
.pa-badge--w-9x {
|
|
3723
|
-
min-width: 14.4rem;
|
|
3724
|
-
max-width: 14.4rem;
|
|
3725
|
-
}
|
|
3726
|
-
|
|
3727
|
-
.pa-badge--w-10x {
|
|
3728
|
-
min-width: 16rem;
|
|
3729
|
-
max-width: 16rem;
|
|
3730
|
-
}
|
|
3731
|
-
|
|
3732
|
-
.pa-badge[class*="--w-"] {
|
|
3733
|
-
display: inline-block;
|
|
3734
|
-
overflow: hidden;
|
|
3735
|
-
text-overflow: ellipsis;
|
|
3736
|
-
white-space: nowrap;
|
|
3737
|
-
vertical-align: middle;
|
|
3738
|
-
}
|
|
3739
|
-
|
|
3740
3767
|
.pa-badge--ellipsis-left {
|
|
3741
3768
|
direction: rtl;
|
|
3742
3769
|
text-align: left;
|
|
@@ -4396,6 +4423,7 @@ a.pa-card p {
|
|
|
4396
4423
|
======================================== */
|
|
4397
4424
|
.pa-btn {
|
|
4398
4425
|
display: inline-block;
|
|
4426
|
+
height: 3.5rem;
|
|
4399
4427
|
padding: 0.8rem 1.2rem;
|
|
4400
4428
|
border: 1px solid transparent;
|
|
4401
4429
|
border-radius: 1px;
|
|
@@ -4436,27 +4464,27 @@ a.pa-card p {
|
|
|
4436
4464
|
}
|
|
4437
4465
|
|
|
4438
4466
|
.pa-btn--xs {
|
|
4439
|
-
|
|
4467
|
+
height: 3.1rem;
|
|
4468
|
+
padding: 0.6rem 0.8rem;
|
|
4440
4469
|
font-size: 1.2rem;
|
|
4441
|
-
min-height: 2.8rem;
|
|
4442
4470
|
}
|
|
4443
4471
|
|
|
4444
4472
|
.pa-btn--sm {
|
|
4445
|
-
|
|
4473
|
+
height: 3.3rem;
|
|
4474
|
+
padding: 0.8rem 1rem;
|
|
4446
4475
|
font-size: 1.4rem;
|
|
4447
|
-
min-height: 3.2rem;
|
|
4448
4476
|
}
|
|
4449
4477
|
|
|
4450
4478
|
.pa-btn--lg {
|
|
4451
|
-
|
|
4479
|
+
height: 3.8rem;
|
|
4480
|
+
padding: 0.8rem 1.4rem;
|
|
4452
4481
|
font-size: 1.6rem;
|
|
4453
|
-
min-height: 4rem;
|
|
4454
4482
|
}
|
|
4455
4483
|
|
|
4456
4484
|
.pa-btn--xl {
|
|
4457
|
-
|
|
4485
|
+
height: 4.1rem;
|
|
4486
|
+
padding: 0.8rem 1.6rem;
|
|
4458
4487
|
font-size: 1.8rem;
|
|
4459
|
-
min-height: 4.4rem;
|
|
4460
4488
|
}
|
|
4461
4489
|
|
|
4462
4490
|
.pa-btn--success {
|
|
@@ -4647,32 +4675,33 @@ a.pa-card p {
|
|
|
4647
4675
|
}
|
|
4648
4676
|
|
|
4649
4677
|
.pa-btn--icon-only {
|
|
4650
|
-
width:
|
|
4651
|
-
height:
|
|
4678
|
+
width: 3.5rem;
|
|
4679
|
+
height: 3.5rem;
|
|
4652
4680
|
padding: 0;
|
|
4653
4681
|
display: flex;
|
|
4654
4682
|
align-items: center;
|
|
4655
4683
|
justify-content: center;
|
|
4684
|
+
line-height: 1;
|
|
4656
4685
|
}
|
|
4657
4686
|
|
|
4658
4687
|
.pa-btn--icon-only.pa-btn--xs {
|
|
4659
|
-
width:
|
|
4660
|
-
height:
|
|
4688
|
+
width: 3.1rem;
|
|
4689
|
+
height: 3.1rem;
|
|
4661
4690
|
}
|
|
4662
4691
|
|
|
4663
4692
|
.pa-btn--icon-only.pa-btn--sm {
|
|
4664
|
-
width: 3.
|
|
4665
|
-
height: 3.
|
|
4693
|
+
width: 3.3rem;
|
|
4694
|
+
height: 3.3rem;
|
|
4666
4695
|
}
|
|
4667
4696
|
|
|
4668
4697
|
.pa-btn--icon-only.pa-btn--lg {
|
|
4669
|
-
width:
|
|
4670
|
-
height:
|
|
4698
|
+
width: 3.8rem;
|
|
4699
|
+
height: 3.8rem;
|
|
4671
4700
|
}
|
|
4672
4701
|
|
|
4673
4702
|
.pa-btn--icon-only.pa-btn--xl {
|
|
4674
|
-
width:
|
|
4675
|
-
height:
|
|
4703
|
+
width: 4.1rem;
|
|
4704
|
+
height: 4.1rem;
|
|
4676
4705
|
}
|
|
4677
4706
|
|
|
4678
4707
|
.pa-btn__icon {
|
|
@@ -4705,46 +4734,6 @@ a.pa-card p {
|
|
|
4705
4734
|
margin: 0;
|
|
4706
4735
|
}
|
|
4707
4736
|
|
|
4708
|
-
.pa-btn--w-1x {
|
|
4709
|
-
min-width: 1.6rem;
|
|
4710
|
-
}
|
|
4711
|
-
|
|
4712
|
-
.pa-btn--w-2x {
|
|
4713
|
-
min-width: 3.2rem;
|
|
4714
|
-
}
|
|
4715
|
-
|
|
4716
|
-
.pa-btn--w-3x {
|
|
4717
|
-
min-width: 4.8rem;
|
|
4718
|
-
}
|
|
4719
|
-
|
|
4720
|
-
.pa-btn--w-4x {
|
|
4721
|
-
min-width: 6.4rem;
|
|
4722
|
-
}
|
|
4723
|
-
|
|
4724
|
-
.pa-btn--w-5x {
|
|
4725
|
-
min-width: 8rem;
|
|
4726
|
-
}
|
|
4727
|
-
|
|
4728
|
-
.pa-btn--w-6x {
|
|
4729
|
-
min-width: 9.6rem;
|
|
4730
|
-
}
|
|
4731
|
-
|
|
4732
|
-
.pa-btn--w-7x {
|
|
4733
|
-
min-width: 11.2rem;
|
|
4734
|
-
}
|
|
4735
|
-
|
|
4736
|
-
.pa-btn--w-8x {
|
|
4737
|
-
min-width: 12.8rem;
|
|
4738
|
-
}
|
|
4739
|
-
|
|
4740
|
-
.pa-btn--w-9x {
|
|
4741
|
-
min-width: 14.4rem;
|
|
4742
|
-
}
|
|
4743
|
-
|
|
4744
|
-
.pa-btn--w-10x {
|
|
4745
|
-
min-width: 16rem;
|
|
4746
|
-
}
|
|
4747
|
-
|
|
4748
4737
|
.pa-btn--align-left {
|
|
4749
4738
|
justify-content: flex-start;
|
|
4750
4739
|
}
|
|
@@ -4779,19 +4768,11 @@ a.pa-card p {
|
|
|
4779
4768
|
|
|
4780
4769
|
.pa-btn-group {
|
|
4781
4770
|
display: inline-flex;
|
|
4782
|
-
gap: 0.
|
|
4771
|
+
gap: 0.3rem;
|
|
4783
4772
|
flex-wrap: wrap;
|
|
4784
4773
|
align-items: center;
|
|
4785
4774
|
}
|
|
4786
4775
|
|
|
4787
|
-
.pa-btn-group--compact {
|
|
4788
|
-
gap: 0.16rem;
|
|
4789
|
-
}
|
|
4790
|
-
|
|
4791
|
-
.pa-btn-group--loose {
|
|
4792
|
-
gap: 0.8rem;
|
|
4793
|
-
}
|
|
4794
|
-
|
|
4795
4776
|
.pa-btn-group--vertical {
|
|
4796
4777
|
flex-direction: column;
|
|
4797
4778
|
align-items: flex-start;
|
|
@@ -5362,27 +5343,234 @@ a.pa-card p {
|
|
|
5362
5343
|
border-left-color: var(--pa-btn-danger-bg);
|
|
5363
5344
|
}
|
|
5364
5345
|
|
|
5365
|
-
.pa-tooltip--
|
|
5366
|
-
|
|
5367
|
-
top: calc(100% + 8px) !important;
|
|
5368
|
-
transform: translateX(-50%) translateY(4px) !important;
|
|
5346
|
+
.pa-tooltip--color-1::before {
|
|
5347
|
+
background-color: var(--pa-color-1);
|
|
5369
5348
|
}
|
|
5370
5349
|
|
|
5371
|
-
.pa-tooltip--
|
|
5372
|
-
|
|
5373
|
-
top: calc(100% + 3px) !important;
|
|
5374
|
-
transform: translateX(-50%) translateY(4px) !important;
|
|
5375
|
-
border-top-color: transparent !important;
|
|
5376
|
-
border-bottom-color: var(--pa-tooltip-bg) !important;
|
|
5350
|
+
.pa-tooltip--color-1::after {
|
|
5351
|
+
border-top-color: var(--pa-color-1);
|
|
5377
5352
|
}
|
|
5378
5353
|
|
|
5379
|
-
.pa-tooltip--
|
|
5380
|
-
|
|
5354
|
+
.pa-tooltip--color-1.pa-tooltip--right::after {
|
|
5355
|
+
border-top-color: transparent;
|
|
5356
|
+
border-right-color: var(--pa-color-1);
|
|
5381
5357
|
}
|
|
5382
5358
|
|
|
5383
|
-
.pa-tooltip--
|
|
5384
|
-
top:
|
|
5385
|
-
bottom:
|
|
5359
|
+
.pa-tooltip--color-1.pa-tooltip--bottom::after {
|
|
5360
|
+
border-top-color: transparent;
|
|
5361
|
+
border-bottom-color: var(--pa-color-1);
|
|
5362
|
+
}
|
|
5363
|
+
|
|
5364
|
+
.pa-tooltip--color-1.pa-tooltip--left::after {
|
|
5365
|
+
border-top-color: transparent;
|
|
5366
|
+
border-left-color: var(--pa-color-1);
|
|
5367
|
+
}
|
|
5368
|
+
|
|
5369
|
+
.pa-tooltip--color-2::before {
|
|
5370
|
+
background-color: var(--pa-color-2);
|
|
5371
|
+
}
|
|
5372
|
+
|
|
5373
|
+
.pa-tooltip--color-2::after {
|
|
5374
|
+
border-top-color: var(--pa-color-2);
|
|
5375
|
+
}
|
|
5376
|
+
|
|
5377
|
+
.pa-tooltip--color-2.pa-tooltip--right::after {
|
|
5378
|
+
border-top-color: transparent;
|
|
5379
|
+
border-right-color: var(--pa-color-2);
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
.pa-tooltip--color-2.pa-tooltip--bottom::after {
|
|
5383
|
+
border-top-color: transparent;
|
|
5384
|
+
border-bottom-color: var(--pa-color-2);
|
|
5385
|
+
}
|
|
5386
|
+
|
|
5387
|
+
.pa-tooltip--color-2.pa-tooltip--left::after {
|
|
5388
|
+
border-top-color: transparent;
|
|
5389
|
+
border-left-color: var(--pa-color-2);
|
|
5390
|
+
}
|
|
5391
|
+
|
|
5392
|
+
.pa-tooltip--color-3::before {
|
|
5393
|
+
background-color: var(--pa-color-3);
|
|
5394
|
+
}
|
|
5395
|
+
|
|
5396
|
+
.pa-tooltip--color-3::after {
|
|
5397
|
+
border-top-color: var(--pa-color-3);
|
|
5398
|
+
}
|
|
5399
|
+
|
|
5400
|
+
.pa-tooltip--color-3.pa-tooltip--right::after {
|
|
5401
|
+
border-top-color: transparent;
|
|
5402
|
+
border-right-color: var(--pa-color-3);
|
|
5403
|
+
}
|
|
5404
|
+
|
|
5405
|
+
.pa-tooltip--color-3.pa-tooltip--bottom::after {
|
|
5406
|
+
border-top-color: transparent;
|
|
5407
|
+
border-bottom-color: var(--pa-color-3);
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
.pa-tooltip--color-3.pa-tooltip--left::after {
|
|
5411
|
+
border-top-color: transparent;
|
|
5412
|
+
border-left-color: var(--pa-color-3);
|
|
5413
|
+
}
|
|
5414
|
+
|
|
5415
|
+
.pa-tooltip--color-4::before {
|
|
5416
|
+
background-color: var(--pa-color-4);
|
|
5417
|
+
}
|
|
5418
|
+
|
|
5419
|
+
.pa-tooltip--color-4::after {
|
|
5420
|
+
border-top-color: var(--pa-color-4);
|
|
5421
|
+
}
|
|
5422
|
+
|
|
5423
|
+
.pa-tooltip--color-4.pa-tooltip--right::after {
|
|
5424
|
+
border-top-color: transparent;
|
|
5425
|
+
border-right-color: var(--pa-color-4);
|
|
5426
|
+
}
|
|
5427
|
+
|
|
5428
|
+
.pa-tooltip--color-4.pa-tooltip--bottom::after {
|
|
5429
|
+
border-top-color: transparent;
|
|
5430
|
+
border-bottom-color: var(--pa-color-4);
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
.pa-tooltip--color-4.pa-tooltip--left::after {
|
|
5434
|
+
border-top-color: transparent;
|
|
5435
|
+
border-left-color: var(--pa-color-4);
|
|
5436
|
+
}
|
|
5437
|
+
|
|
5438
|
+
.pa-tooltip--color-5::before {
|
|
5439
|
+
background-color: var(--pa-color-5);
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5442
|
+
.pa-tooltip--color-5::after {
|
|
5443
|
+
border-top-color: var(--pa-color-5);
|
|
5444
|
+
}
|
|
5445
|
+
|
|
5446
|
+
.pa-tooltip--color-5.pa-tooltip--right::after {
|
|
5447
|
+
border-top-color: transparent;
|
|
5448
|
+
border-right-color: var(--pa-color-5);
|
|
5449
|
+
}
|
|
5450
|
+
|
|
5451
|
+
.pa-tooltip--color-5.pa-tooltip--bottom::after {
|
|
5452
|
+
border-top-color: transparent;
|
|
5453
|
+
border-bottom-color: var(--pa-color-5);
|
|
5454
|
+
}
|
|
5455
|
+
|
|
5456
|
+
.pa-tooltip--color-5.pa-tooltip--left::after {
|
|
5457
|
+
border-top-color: transparent;
|
|
5458
|
+
border-left-color: var(--pa-color-5);
|
|
5459
|
+
}
|
|
5460
|
+
|
|
5461
|
+
.pa-tooltip--color-6::before {
|
|
5462
|
+
background-color: var(--pa-color-6);
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
.pa-tooltip--color-6::after {
|
|
5466
|
+
border-top-color: var(--pa-color-6);
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5469
|
+
.pa-tooltip--color-6.pa-tooltip--right::after {
|
|
5470
|
+
border-top-color: transparent;
|
|
5471
|
+
border-right-color: var(--pa-color-6);
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5474
|
+
.pa-tooltip--color-6.pa-tooltip--bottom::after {
|
|
5475
|
+
border-top-color: transparent;
|
|
5476
|
+
border-bottom-color: var(--pa-color-6);
|
|
5477
|
+
}
|
|
5478
|
+
|
|
5479
|
+
.pa-tooltip--color-6.pa-tooltip--left::after {
|
|
5480
|
+
border-top-color: transparent;
|
|
5481
|
+
border-left-color: var(--pa-color-6);
|
|
5482
|
+
}
|
|
5483
|
+
|
|
5484
|
+
.pa-tooltip--color-7::before {
|
|
5485
|
+
background-color: var(--pa-color-7);
|
|
5486
|
+
}
|
|
5487
|
+
|
|
5488
|
+
.pa-tooltip--color-7::after {
|
|
5489
|
+
border-top-color: var(--pa-color-7);
|
|
5490
|
+
}
|
|
5491
|
+
|
|
5492
|
+
.pa-tooltip--color-7.pa-tooltip--right::after {
|
|
5493
|
+
border-top-color: transparent;
|
|
5494
|
+
border-right-color: var(--pa-color-7);
|
|
5495
|
+
}
|
|
5496
|
+
|
|
5497
|
+
.pa-tooltip--color-7.pa-tooltip--bottom::after {
|
|
5498
|
+
border-top-color: transparent;
|
|
5499
|
+
border-bottom-color: var(--pa-color-7);
|
|
5500
|
+
}
|
|
5501
|
+
|
|
5502
|
+
.pa-tooltip--color-7.pa-tooltip--left::after {
|
|
5503
|
+
border-top-color: transparent;
|
|
5504
|
+
border-left-color: var(--pa-color-7);
|
|
5505
|
+
}
|
|
5506
|
+
|
|
5507
|
+
.pa-tooltip--color-8::before {
|
|
5508
|
+
background-color: var(--pa-color-8);
|
|
5509
|
+
}
|
|
5510
|
+
|
|
5511
|
+
.pa-tooltip--color-8::after {
|
|
5512
|
+
border-top-color: var(--pa-color-8);
|
|
5513
|
+
}
|
|
5514
|
+
|
|
5515
|
+
.pa-tooltip--color-8.pa-tooltip--right::after {
|
|
5516
|
+
border-top-color: transparent;
|
|
5517
|
+
border-right-color: var(--pa-color-8);
|
|
5518
|
+
}
|
|
5519
|
+
|
|
5520
|
+
.pa-tooltip--color-8.pa-tooltip--bottom::after {
|
|
5521
|
+
border-top-color: transparent;
|
|
5522
|
+
border-bottom-color: var(--pa-color-8);
|
|
5523
|
+
}
|
|
5524
|
+
|
|
5525
|
+
.pa-tooltip--color-8.pa-tooltip--left::after {
|
|
5526
|
+
border-top-color: transparent;
|
|
5527
|
+
border-left-color: var(--pa-color-8);
|
|
5528
|
+
}
|
|
5529
|
+
|
|
5530
|
+
.pa-tooltip--color-9::before {
|
|
5531
|
+
background-color: var(--pa-color-9);
|
|
5532
|
+
}
|
|
5533
|
+
|
|
5534
|
+
.pa-tooltip--color-9::after {
|
|
5535
|
+
border-top-color: var(--pa-color-9);
|
|
5536
|
+
}
|
|
5537
|
+
|
|
5538
|
+
.pa-tooltip--color-9.pa-tooltip--right::after {
|
|
5539
|
+
border-top-color: transparent;
|
|
5540
|
+
border-right-color: var(--pa-color-9);
|
|
5541
|
+
}
|
|
5542
|
+
|
|
5543
|
+
.pa-tooltip--color-9.pa-tooltip--bottom::after {
|
|
5544
|
+
border-top-color: transparent;
|
|
5545
|
+
border-bottom-color: var(--pa-color-9);
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
.pa-tooltip--color-9.pa-tooltip--left::after {
|
|
5549
|
+
border-top-color: transparent;
|
|
5550
|
+
border-left-color: var(--pa-color-9);
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5553
|
+
.pa-tooltip--auto-flip-bottom::before {
|
|
5554
|
+
bottom: auto !important;
|
|
5555
|
+
top: calc(100% + 8px) !important;
|
|
5556
|
+
transform: translateX(-50%) translateY(4px) !important;
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5559
|
+
.pa-tooltip--auto-flip-bottom::after {
|
|
5560
|
+
bottom: auto !important;
|
|
5561
|
+
top: calc(100% + 3px) !important;
|
|
5562
|
+
transform: translateX(-50%) translateY(4px) !important;
|
|
5563
|
+
border-top-color: transparent !important;
|
|
5564
|
+
border-bottom-color: var(--pa-tooltip-bg) !important;
|
|
5565
|
+
}
|
|
5566
|
+
|
|
5567
|
+
.pa-tooltip--auto-flip-bottom:hover::before, .pa-tooltip--auto-flip-bottom:hover::after {
|
|
5568
|
+
transform: translateX(-50%) translateY(0) !important;
|
|
5569
|
+
}
|
|
5570
|
+
|
|
5571
|
+
.pa-tooltip--auto-flip-top::before {
|
|
5572
|
+
top: auto !important;
|
|
5573
|
+
bottom: calc(100% + 8px) !important;
|
|
5386
5574
|
transform: translateX(-50%) translateY(-4px) !important;
|
|
5387
5575
|
}
|
|
5388
5576
|
|
|
@@ -5499,6 +5687,7 @@ a.pa-card p {
|
|
|
5499
5687
|
font-size: 1.4rem;
|
|
5500
5688
|
line-height: 1.5;
|
|
5501
5689
|
color: var(--pa-text-primary);
|
|
5690
|
+
text-align: left;
|
|
5502
5691
|
}
|
|
5503
5692
|
|
|
5504
5693
|
.pa-popover__body p {
|
|
@@ -5563,6 +5752,14 @@ a.pa-card p {
|
|
|
5563
5752
|
max-width: 44.8rem;
|
|
5564
5753
|
}
|
|
5565
5754
|
|
|
5755
|
+
.pa-popover--center .pa-popover__body {
|
|
5756
|
+
text-align: center;
|
|
5757
|
+
}
|
|
5758
|
+
|
|
5759
|
+
.pa-popover--right .pa-popover__body {
|
|
5760
|
+
text-align: right;
|
|
5761
|
+
}
|
|
5762
|
+
|
|
5566
5763
|
.pa-tooltip-floating {
|
|
5567
5764
|
background-color: var(--pa-tooltip-bg);
|
|
5568
5765
|
color: var(--pa-tooltip-text);
|
|
@@ -5603,6 +5800,42 @@ a.pa-card p {
|
|
|
5603
5800
|
color: var(--pa-btn-danger-text);
|
|
5604
5801
|
}
|
|
5605
5802
|
|
|
5803
|
+
.pa-tooltip-floating.pa-tooltip--color-1 {
|
|
5804
|
+
background-color: var(--pa-color-1);
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5807
|
+
.pa-tooltip-floating.pa-tooltip--color-2 {
|
|
5808
|
+
background-color: var(--pa-color-2);
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
.pa-tooltip-floating.pa-tooltip--color-3 {
|
|
5812
|
+
background-color: var(--pa-color-3);
|
|
5813
|
+
}
|
|
5814
|
+
|
|
5815
|
+
.pa-tooltip-floating.pa-tooltip--color-4 {
|
|
5816
|
+
background-color: var(--pa-color-4);
|
|
5817
|
+
}
|
|
5818
|
+
|
|
5819
|
+
.pa-tooltip-floating.pa-tooltip--color-5 {
|
|
5820
|
+
background-color: var(--pa-color-5);
|
|
5821
|
+
}
|
|
5822
|
+
|
|
5823
|
+
.pa-tooltip-floating.pa-tooltip--color-6 {
|
|
5824
|
+
background-color: var(--pa-color-6);
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5827
|
+
.pa-tooltip-floating.pa-tooltip--color-7 {
|
|
5828
|
+
background-color: var(--pa-color-7);
|
|
5829
|
+
}
|
|
5830
|
+
|
|
5831
|
+
.pa-tooltip-floating.pa-tooltip--color-8 {
|
|
5832
|
+
background-color: var(--pa-color-8);
|
|
5833
|
+
}
|
|
5834
|
+
|
|
5835
|
+
.pa-tooltip-floating.pa-tooltip--color-9 {
|
|
5836
|
+
background-color: var(--pa-color-9);
|
|
5837
|
+
}
|
|
5838
|
+
|
|
5606
5839
|
/* ========================================
|
|
5607
5840
|
Alert Components
|
|
5608
5841
|
Alerts with variants, sizes, dismissible functionality
|
|
@@ -5806,6 +6039,131 @@ a.pa-card p {
|
|
|
5806
6039
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
5807
6040
|
}
|
|
5808
6041
|
|
|
6042
|
+
/* ========================================
|
|
6043
|
+
Callout Components
|
|
6044
|
+
Documentation-style callouts with left border accent
|
|
6045
|
+
For tips, notes, warnings in content areas
|
|
6046
|
+
======================================== */
|
|
6047
|
+
.pa-callout {
|
|
6048
|
+
position: relative;
|
|
6049
|
+
padding: 1.2rem 1rem;
|
|
6050
|
+
margin-bottom: 1.6rem;
|
|
6051
|
+
border-left: 0.4rem solid var(--pa-border-color);
|
|
6052
|
+
border-radius: 1px;
|
|
6053
|
+
font-size: 1.4rem;
|
|
6054
|
+
background-color: var(--pa-card-bg);
|
|
6055
|
+
}
|
|
6056
|
+
|
|
6057
|
+
.pa-card__body .pa-callout:first-child {
|
|
6058
|
+
margin-top: 0;
|
|
6059
|
+
}
|
|
6060
|
+
|
|
6061
|
+
.pa-card__body .pa-callout:last-child {
|
|
6062
|
+
margin-bottom: 0;
|
|
6063
|
+
}
|
|
6064
|
+
|
|
6065
|
+
.pa-callout--primary {
|
|
6066
|
+
border-left-color: var(--pa-accent);
|
|
6067
|
+
background-color: rgba(255, 0, 0, 0.08);
|
|
6068
|
+
}
|
|
6069
|
+
|
|
6070
|
+
.pa-callout--secondary {
|
|
6071
|
+
border-left-color: var(--pa-text-secondary);
|
|
6072
|
+
background-color: color-mix(in srgb, var(--pa-text-secondary) 5%, transparent);
|
|
6073
|
+
}
|
|
6074
|
+
|
|
6075
|
+
.pa-callout--success {
|
|
6076
|
+
border-left-color: var(--pa-success-bg);
|
|
6077
|
+
background-color: var(--pa-success-bg-subtle);
|
|
6078
|
+
}
|
|
6079
|
+
|
|
6080
|
+
.pa-callout--danger {
|
|
6081
|
+
border-left-color: var(--pa-danger-bg);
|
|
6082
|
+
background-color: var(--pa-danger-bg-subtle);
|
|
6083
|
+
}
|
|
6084
|
+
|
|
6085
|
+
.pa-callout--warning {
|
|
6086
|
+
border-left-color: var(--pa-warning-bg);
|
|
6087
|
+
background-color: var(--pa-warning-bg-subtle);
|
|
6088
|
+
}
|
|
6089
|
+
|
|
6090
|
+
.pa-callout--info {
|
|
6091
|
+
border-left-color: var(--pa-info-bg);
|
|
6092
|
+
background-color: var(--pa-info-bg-subtle);
|
|
6093
|
+
}
|
|
6094
|
+
|
|
6095
|
+
.pa-callout--sm {
|
|
6096
|
+
padding: 0.8rem 1.2rem;
|
|
6097
|
+
font-size: 1.2rem;
|
|
6098
|
+
}
|
|
6099
|
+
|
|
6100
|
+
.pa-callout--lg {
|
|
6101
|
+
padding: 2.4rem 3.2rem;
|
|
6102
|
+
font-size: 1.6rem;
|
|
6103
|
+
}
|
|
6104
|
+
|
|
6105
|
+
.pa-callout__icon {
|
|
6106
|
+
float: left;
|
|
6107
|
+
margin-right: 0.8rem;
|
|
6108
|
+
font-size: 1.8rem;
|
|
6109
|
+
line-height: 1;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6112
|
+
.pa-callout__heading {
|
|
6113
|
+
margin: 0 0 0.8rem 0;
|
|
6114
|
+
font-size: 1.6rem;
|
|
6115
|
+
font-weight: 600;
|
|
6116
|
+
}
|
|
6117
|
+
|
|
6118
|
+
.pa-callout__content::after {
|
|
6119
|
+
content: "";
|
|
6120
|
+
display: table;
|
|
6121
|
+
clear: both;
|
|
6122
|
+
}
|
|
6123
|
+
|
|
6124
|
+
.pa-callout > *:last-child {
|
|
6125
|
+
margin-bottom: 0;
|
|
6126
|
+
}
|
|
6127
|
+
|
|
6128
|
+
.pa-callout p {
|
|
6129
|
+
margin: 0 0 0.8rem 0;
|
|
6130
|
+
}
|
|
6131
|
+
|
|
6132
|
+
.pa-callout p:last-child {
|
|
6133
|
+
margin-bottom: 0;
|
|
6134
|
+
}
|
|
6135
|
+
|
|
6136
|
+
.pa-callout ul, .pa-callout ol {
|
|
6137
|
+
margin: 0.8rem 0;
|
|
6138
|
+
padding-left: 2.4rem;
|
|
6139
|
+
}
|
|
6140
|
+
|
|
6141
|
+
.pa-callout ul:last-child, .pa-callout ol:last-child {
|
|
6142
|
+
margin-bottom: 0;
|
|
6143
|
+
}
|
|
6144
|
+
|
|
6145
|
+
.pa-callout code {
|
|
6146
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
6147
|
+
padding: 0.1em 0.3em;
|
|
6148
|
+
border-radius: 2px;
|
|
6149
|
+
font-size: 0.9em;
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
.pa-callout a {
|
|
6153
|
+
color: inherit;
|
|
6154
|
+
text-decoration: underline;
|
|
6155
|
+
font-weight: 500;
|
|
6156
|
+
}
|
|
6157
|
+
|
|
6158
|
+
.pa-callout a:hover {
|
|
6159
|
+
text-decoration: none;
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
.pa-callout h1, .pa-callout h2, .pa-callout h3, .pa-callout h4, .pa-callout h5, .pa-callout h6 {
|
|
6163
|
+
color: inherit;
|
|
6164
|
+
margin-top: 0;
|
|
6165
|
+
}
|
|
6166
|
+
|
|
5809
6167
|
/* ========================================
|
|
5810
6168
|
Form Components
|
|
5811
6169
|
Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
|
|
@@ -5874,6 +6232,7 @@ a.pa-card p {
|
|
|
5874
6232
|
======================================== */
|
|
5875
6233
|
.pa-input {
|
|
5876
6234
|
width: 100%;
|
|
6235
|
+
height: 3.5rem;
|
|
5877
6236
|
padding: 0.8rem 0.8rem;
|
|
5878
6237
|
border: 1px solid var(--pa-border-color);
|
|
5879
6238
|
border-radius: 1px;
|
|
@@ -5891,6 +6250,7 @@ a.pa-card p {
|
|
|
5891
6250
|
|
|
5892
6251
|
.pa-select {
|
|
5893
6252
|
width: 100%;
|
|
6253
|
+
height: 3.5rem;
|
|
5894
6254
|
padding: 0.7rem 0.5rem;
|
|
5895
6255
|
border: 1px solid var(--pa-border-color);
|
|
5896
6256
|
border-radius: 1px;
|
|
@@ -5931,24 +6291,28 @@ a.pa-card p {
|
|
|
5931
6291
|
|
|
5932
6292
|
.pa-input--xs,
|
|
5933
6293
|
.pa-select--xs {
|
|
6294
|
+
height: 3.1rem;
|
|
5934
6295
|
padding: 0.6rem 0.8rem;
|
|
5935
6296
|
font-size: 1.2rem;
|
|
5936
6297
|
}
|
|
5937
6298
|
|
|
5938
6299
|
.pa-input--sm,
|
|
5939
6300
|
.pa-select--sm {
|
|
6301
|
+
height: 3.3rem;
|
|
5940
6302
|
padding: 0.8rem 0.8rem;
|
|
5941
6303
|
font-size: 1.4rem;
|
|
5942
6304
|
}
|
|
5943
6305
|
|
|
5944
6306
|
.pa-input--lg,
|
|
5945
6307
|
.pa-select--lg {
|
|
6308
|
+
height: 3.8rem;
|
|
5946
6309
|
padding: 0.8rem 0.8rem;
|
|
5947
6310
|
font-size: 1.6rem;
|
|
5948
6311
|
}
|
|
5949
6312
|
|
|
5950
6313
|
.pa-input--xl,
|
|
5951
6314
|
.pa-select--xl {
|
|
6315
|
+
height: 4.1rem;
|
|
5952
6316
|
padding: 0.8rem 0.8rem;
|
|
5953
6317
|
font-size: 1.8rem;
|
|
5954
6318
|
}
|
|
@@ -6955,7 +7319,7 @@ web-daterangepicker {
|
|
|
6955
7319
|
--drp-button-apply-color: #ffffff;
|
|
6956
7320
|
--drp-button-apply-border: #ff0000;
|
|
6957
7321
|
/* Button sizing */
|
|
6958
|
-
--drp-button-padding: 0.
|
|
7322
|
+
--drp-button-padding: 0.8rem 1rem;
|
|
6959
7323
|
--drp-button-font-size: 1.4rem;
|
|
6960
7324
|
--drp-button-border-radius: 1px;
|
|
6961
7325
|
--drp-button-gap: 0.8rem;
|
|
@@ -7987,7 +8351,7 @@ web-daterangepicker {
|
|
|
7987
8351
|
|
|
7988
8352
|
.pa-table th,
|
|
7989
8353
|
.pa-table td {
|
|
7990
|
-
padding: 0.
|
|
8354
|
+
padding: 0.8rem 0.8rem;
|
|
7991
8355
|
text-align: left;
|
|
7992
8356
|
border-bottom: 1px solid var(--pa-border-color);
|
|
7993
8357
|
vertical-align: middle;
|
|
@@ -8004,6 +8368,7 @@ web-daterangepicker {
|
|
|
8004
8368
|
.pa-table td {
|
|
8005
8369
|
color: var(--pa-text-primary);
|
|
8006
8370
|
background-color: var(--pa-table-bg);
|
|
8371
|
+
height: 3.5rem0.8rem;
|
|
8007
8372
|
}
|
|
8008
8373
|
|
|
8009
8374
|
.pa-table td .pa-btn {
|
|
@@ -8019,31 +8384,57 @@ web-daterangepicker {
|
|
|
8019
8384
|
background-color: var(--pa-table-stripe);
|
|
8020
8385
|
}
|
|
8021
8386
|
|
|
8022
|
-
.pa-table--
|
|
8023
|
-
.
|
|
8024
|
-
padding: 1rem 1.6rem;
|
|
8387
|
+
.pa-table--xs th, .pa-table--xs td {
|
|
8388
|
+
padding: 0.6rem 0.8rem;
|
|
8025
8389
|
}
|
|
8026
8390
|
|
|
8027
|
-
.pa-table--
|
|
8028
|
-
.
|
|
8029
|
-
padding: 1.5rem 2.4rem;
|
|
8391
|
+
.pa-table--xs td {
|
|
8392
|
+
height: 3.1rem0.7rem;
|
|
8030
8393
|
}
|
|
8031
8394
|
|
|
8032
|
-
.pa-table
|
|
8033
|
-
|
|
8034
|
-
transition: border-color 0.15s ease;
|
|
8395
|
+
.pa-table--sm th, .pa-table--sm td {
|
|
8396
|
+
padding: 0.8rem 1rem;
|
|
8035
8397
|
}
|
|
8036
8398
|
|
|
8037
|
-
.pa-table
|
|
8038
|
-
|
|
8039
|
-
border-left-color: var(--pa-table-hover-accent-color);
|
|
8399
|
+
.pa-table--sm td {
|
|
8400
|
+
height: 3.3rem0.8rem;
|
|
8040
8401
|
}
|
|
8041
8402
|
|
|
8042
|
-
.pa-table
|
|
8043
|
-
|
|
8403
|
+
.pa-table--lg th, .pa-table--lg td {
|
|
8404
|
+
padding: 0.8rem 1.4rem;
|
|
8044
8405
|
}
|
|
8045
8406
|
|
|
8046
|
-
.pa-table td
|
|
8407
|
+
.pa-table--lg td {
|
|
8408
|
+
height: 3.8rem0.8rem;
|
|
8409
|
+
}
|
|
8410
|
+
|
|
8411
|
+
.pa-table--xl th, .pa-table--xl td {
|
|
8412
|
+
padding: 0.8rem 1.6rem;
|
|
8413
|
+
}
|
|
8414
|
+
|
|
8415
|
+
.pa-table--xl td {
|
|
8416
|
+
height: 4.1rem0.8rem;
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8419
|
+
.pa-table th:first-child {
|
|
8420
|
+
padding-left: 1.1rem;
|
|
8421
|
+
}
|
|
8422
|
+
|
|
8423
|
+
.pa-table tbody tr {
|
|
8424
|
+
border-left: 0.3rem solid transparent;
|
|
8425
|
+
transition: border-color 0.15s ease;
|
|
8426
|
+
}
|
|
8427
|
+
|
|
8428
|
+
.pa-table tbody tr:hover {
|
|
8429
|
+
background-color: var(--pa-table-hover-bg);
|
|
8430
|
+
border-left-color: var(--pa-table-hover-accent-color);
|
|
8431
|
+
}
|
|
8432
|
+
|
|
8433
|
+
.pa-table tbody tr:hover td {
|
|
8434
|
+
background-color: var(--pa-table-hover-bg);
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
.pa-table td .pa-btn-group {
|
|
8047
8438
|
margin-bottom: 0;
|
|
8048
8439
|
flex-wrap: nowrap;
|
|
8049
8440
|
}
|
|
@@ -8227,7 +8618,7 @@ web-daterangepicker {
|
|
|
8227
8618
|
grid-template-columns: 80px 1fr 1fr 120px 100px 100px;
|
|
8228
8619
|
border-bottom: 1px solid var(--pa-border-color);
|
|
8229
8620
|
background: var(--pa-table-bg);
|
|
8230
|
-
border-left:
|
|
8621
|
+
border-left: 0.3rem solid transparent;
|
|
8231
8622
|
transition: border-color 0.15s ease;
|
|
8232
8623
|
}
|
|
8233
8624
|
|
|
@@ -8400,18 +8791,6 @@ web-daterangepicker {
|
|
|
8400
8791
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
8401
8792
|
}
|
|
8402
8793
|
}
|
|
8403
|
-
.text-success {
|
|
8404
|
-
color: var(--pa-success-bg);
|
|
8405
|
-
}
|
|
8406
|
-
|
|
8407
|
-
.text-danger {
|
|
8408
|
-
color: var(--pa-danger-bg);
|
|
8409
|
-
}
|
|
8410
|
-
|
|
8411
|
-
.text-warning {
|
|
8412
|
-
color: var(--pa-warning-bg);
|
|
8413
|
-
}
|
|
8414
|
-
|
|
8415
8794
|
/* ========================================
|
|
8416
8795
|
Comparison Table Component
|
|
8417
8796
|
Two-column and three-column comparison tables for version control, data changes, and merge operations
|
|
@@ -8918,6 +9297,10 @@ code {
|
|
|
8918
9297
|
position: relative;
|
|
8919
9298
|
}
|
|
8920
9299
|
|
|
9300
|
+
.pa-profile-panel__header--no-avatar .pa-profile-panel__avatar {
|
|
9301
|
+
display: none;
|
|
9302
|
+
}
|
|
9303
|
+
|
|
8921
9304
|
.pa-profile-panel__avatar {
|
|
8922
9305
|
width: 6.4rem;
|
|
8923
9306
|
height: 6.4rem;
|
|
@@ -8931,12 +9314,13 @@ code {
|
|
|
8931
9314
|
|
|
8932
9315
|
.pa-profile-panel__avatar-icon {
|
|
8933
9316
|
font-size: 3.2rem;
|
|
8934
|
-
color:
|
|
9317
|
+
color: var(--pa-accent);
|
|
8935
9318
|
}
|
|
8936
9319
|
|
|
8937
9320
|
.pa-profile-panel__info {
|
|
8938
9321
|
flex: 1;
|
|
8939
9322
|
min-width: 0;
|
|
9323
|
+
padding-right: 3.2rem;
|
|
8940
9324
|
}
|
|
8941
9325
|
|
|
8942
9326
|
.pa-profile-panel__name {
|
|
@@ -8944,6 +9328,9 @@ code {
|
|
|
8944
9328
|
font-size: 1.8rem;
|
|
8945
9329
|
font-weight: 600;
|
|
8946
9330
|
color: var(--pa-text-primary);
|
|
9331
|
+
overflow: hidden;
|
|
9332
|
+
text-overflow: ellipsis;
|
|
9333
|
+
white-space: nowrap;
|
|
8947
9334
|
}
|
|
8948
9335
|
|
|
8949
9336
|
.pa-profile-panel__email {
|
|
@@ -8996,7 +9383,7 @@ code {
|
|
|
8996
9383
|
|
|
8997
9384
|
.pa-profile-panel__body {
|
|
8998
9385
|
flex: 1;
|
|
8999
|
-
padding: 2.4rem;
|
|
9386
|
+
padding: 2.4rem 0;
|
|
9000
9387
|
display: flex;
|
|
9001
9388
|
flex-direction: column;
|
|
9002
9389
|
gap: 3.2rem;
|
|
@@ -9038,7 +9425,10 @@ code {
|
|
|
9038
9425
|
.pa-profile-panel__nav-icon {
|
|
9039
9426
|
font-size: 1.6rem;
|
|
9040
9427
|
width: 2.4rem;
|
|
9041
|
-
|
|
9428
|
+
height: 2.4rem;
|
|
9429
|
+
display: flex;
|
|
9430
|
+
align-items: center;
|
|
9431
|
+
justify-content: center;
|
|
9042
9432
|
}
|
|
9043
9433
|
|
|
9044
9434
|
.pa-profile-panel__actions {
|
|
@@ -9046,10 +9436,21 @@ code {
|
|
|
9046
9436
|
flex-direction: column;
|
|
9047
9437
|
gap: 1.2rem;
|
|
9048
9438
|
margin-top: auto;
|
|
9439
|
+
padding: 0 1.6rem;
|
|
9440
|
+
}
|
|
9441
|
+
|
|
9442
|
+
.pa-profile-panel__footer {
|
|
9443
|
+
flex-shrink: 0;
|
|
9444
|
+
padding: 2.4rem;
|
|
9445
|
+
border-top: 1px solid var(--pa-border-color);
|
|
9446
|
+
background-color: var(--pa-card-bg);
|
|
9447
|
+
display: flex;
|
|
9448
|
+
flex-direction: column;
|
|
9449
|
+
gap: 1.2rem;
|
|
9049
9450
|
}
|
|
9050
9451
|
|
|
9051
9452
|
.pa-profile-panel__tabs {
|
|
9052
|
-
padding: 0
|
|
9453
|
+
padding: 0 1.6rem;
|
|
9053
9454
|
border-bottom: 1px solid var(--pa-border-color);
|
|
9054
9455
|
background-color: var(--pa-header-bg);
|
|
9055
9456
|
}
|
|
@@ -9066,7 +9467,7 @@ code {
|
|
|
9066
9467
|
|
|
9067
9468
|
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
9068
9469
|
color: var(--pa-header-text);
|
|
9069
|
-
background-color:
|
|
9470
|
+
background-color: var(--pa-accent-light);
|
|
9070
9471
|
}
|
|
9071
9472
|
|
|
9072
9473
|
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
@@ -9074,12 +9475,6 @@ code {
|
|
|
9074
9475
|
border-bottom-color: var(--pa-accent);
|
|
9075
9476
|
}
|
|
9076
9477
|
|
|
9077
|
-
.pa-profile-panel__favorites {
|
|
9078
|
-
display: flex;
|
|
9079
|
-
flex-direction: column;
|
|
9080
|
-
gap: 0.8rem;
|
|
9081
|
-
}
|
|
9082
|
-
|
|
9083
9478
|
.pa-profile-panel__favorites ul {
|
|
9084
9479
|
list-style: none;
|
|
9085
9480
|
margin: 0;
|
|
@@ -9116,7 +9511,10 @@ code {
|
|
|
9116
9511
|
.pa-profile-panel__favorite-icon {
|
|
9117
9512
|
font-size: 1.6rem;
|
|
9118
9513
|
width: 2.4rem;
|
|
9119
|
-
|
|
9514
|
+
height: 2.4rem;
|
|
9515
|
+
display: flex;
|
|
9516
|
+
align-items: center;
|
|
9517
|
+
justify-content: center;
|
|
9120
9518
|
}
|
|
9121
9519
|
|
|
9122
9520
|
.pa-profile-panel__favorite-label {
|
|
@@ -9128,7 +9526,7 @@ code {
|
|
|
9128
9526
|
margin-left: auto;
|
|
9129
9527
|
background: none;
|
|
9130
9528
|
border: none;
|
|
9131
|
-
padding: 0.
|
|
9529
|
+
padding: 0.4rem;
|
|
9132
9530
|
color: var(--pa-text-secondary);
|
|
9133
9531
|
cursor: pointer;
|
|
9134
9532
|
border-radius: 1px;
|
|
@@ -9148,7 +9546,7 @@ code {
|
|
|
9148
9546
|
|
|
9149
9547
|
.pa-profile-panel__favorites-add {
|
|
9150
9548
|
margin-top: auto;
|
|
9151
|
-
padding
|
|
9549
|
+
padding: 1.2rem 1.6rem 0;
|
|
9152
9550
|
}
|
|
9153
9551
|
|
|
9154
9552
|
@media (max-width: 768px) {
|
|
@@ -11676,6 +12074,170 @@ html.font-size-4xl {
|
|
|
11676
12074
|
line-height: 1.8;
|
|
11677
12075
|
}
|
|
11678
12076
|
|
|
12077
|
+
.gap-0 {
|
|
12078
|
+
gap: 0;
|
|
12079
|
+
}
|
|
12080
|
+
|
|
12081
|
+
.gap-xs {
|
|
12082
|
+
gap: 0.4rem;
|
|
12083
|
+
}
|
|
12084
|
+
|
|
12085
|
+
.gap-sm {
|
|
12086
|
+
gap: 0.8rem;
|
|
12087
|
+
}
|
|
12088
|
+
|
|
12089
|
+
.gap-md {
|
|
12090
|
+
gap: 1.2rem;
|
|
12091
|
+
}
|
|
12092
|
+
|
|
12093
|
+
.gap-base {
|
|
12094
|
+
gap: 1.6rem;
|
|
12095
|
+
}
|
|
12096
|
+
|
|
12097
|
+
.gap-lg {
|
|
12098
|
+
gap: 2.4rem;
|
|
12099
|
+
}
|
|
12100
|
+
|
|
12101
|
+
.gap-xl {
|
|
12102
|
+
gap: 3.2rem;
|
|
12103
|
+
}
|
|
12104
|
+
|
|
12105
|
+
.gap-2xl {
|
|
12106
|
+
gap: 4.8rem;
|
|
12107
|
+
}
|
|
12108
|
+
|
|
12109
|
+
.gap-1 {
|
|
12110
|
+
gap: 0.1rem;
|
|
12111
|
+
}
|
|
12112
|
+
|
|
12113
|
+
.gap-2 {
|
|
12114
|
+
gap: 0.2rem;
|
|
12115
|
+
}
|
|
12116
|
+
|
|
12117
|
+
.gap-3 {
|
|
12118
|
+
gap: 0.3rem;
|
|
12119
|
+
}
|
|
12120
|
+
|
|
12121
|
+
.gap-4 {
|
|
12122
|
+
gap: 0.4rem;
|
|
12123
|
+
}
|
|
12124
|
+
|
|
12125
|
+
.gap-5 {
|
|
12126
|
+
gap: 0.5rem;
|
|
12127
|
+
}
|
|
12128
|
+
|
|
12129
|
+
.gap-6 {
|
|
12130
|
+
gap: 0.6rem;
|
|
12131
|
+
}
|
|
12132
|
+
|
|
12133
|
+
.gap-8 {
|
|
12134
|
+
gap: 0.8rem;
|
|
12135
|
+
}
|
|
12136
|
+
|
|
12137
|
+
.gap-10 {
|
|
12138
|
+
gap: 1rem;
|
|
12139
|
+
}
|
|
12140
|
+
|
|
12141
|
+
.gap-12 {
|
|
12142
|
+
gap: 1.2rem;
|
|
12143
|
+
}
|
|
12144
|
+
|
|
12145
|
+
.gap-15 {
|
|
12146
|
+
gap: 1.5rem;
|
|
12147
|
+
}
|
|
12148
|
+
|
|
12149
|
+
.gap-20 {
|
|
12150
|
+
gap: 2rem;
|
|
12151
|
+
}
|
|
12152
|
+
|
|
12153
|
+
.row-gap-0 {
|
|
12154
|
+
row-gap: 0;
|
|
12155
|
+
}
|
|
12156
|
+
|
|
12157
|
+
.row-gap-xs {
|
|
12158
|
+
row-gap: 0.4rem;
|
|
12159
|
+
}
|
|
12160
|
+
|
|
12161
|
+
.row-gap-sm {
|
|
12162
|
+
row-gap: 0.8rem;
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12165
|
+
.row-gap-md {
|
|
12166
|
+
row-gap: 1.2rem;
|
|
12167
|
+
}
|
|
12168
|
+
|
|
12169
|
+
.row-gap-base {
|
|
12170
|
+
row-gap: 1.6rem;
|
|
12171
|
+
}
|
|
12172
|
+
|
|
12173
|
+
.row-gap-lg {
|
|
12174
|
+
row-gap: 2.4rem;
|
|
12175
|
+
}
|
|
12176
|
+
|
|
12177
|
+
.column-gap-0 {
|
|
12178
|
+
column-gap: 0;
|
|
12179
|
+
}
|
|
12180
|
+
|
|
12181
|
+
.column-gap-xs {
|
|
12182
|
+
column-gap: 0.4rem;
|
|
12183
|
+
}
|
|
12184
|
+
|
|
12185
|
+
.column-gap-sm {
|
|
12186
|
+
column-gap: 0.8rem;
|
|
12187
|
+
}
|
|
12188
|
+
|
|
12189
|
+
.column-gap-md {
|
|
12190
|
+
column-gap: 1.2rem;
|
|
12191
|
+
}
|
|
12192
|
+
|
|
12193
|
+
.column-gap-base {
|
|
12194
|
+
column-gap: 1.6rem;
|
|
12195
|
+
}
|
|
12196
|
+
|
|
12197
|
+
.column-gap-lg {
|
|
12198
|
+
column-gap: 2.4rem;
|
|
12199
|
+
}
|
|
12200
|
+
|
|
12201
|
+
.text-2xs {
|
|
12202
|
+
font-size: 1rem;
|
|
12203
|
+
}
|
|
12204
|
+
|
|
12205
|
+
.text-xs {
|
|
12206
|
+
font-size: 1.2rem;
|
|
12207
|
+
}
|
|
12208
|
+
|
|
12209
|
+
.text-sm {
|
|
12210
|
+
font-size: 1.4rem;
|
|
12211
|
+
}
|
|
12212
|
+
|
|
12213
|
+
.text-md {
|
|
12214
|
+
font-size: 1.5rem;
|
|
12215
|
+
}
|
|
12216
|
+
|
|
12217
|
+
.text-base {
|
|
12218
|
+
font-size: 1.6rem;
|
|
12219
|
+
}
|
|
12220
|
+
|
|
12221
|
+
.text-lg {
|
|
12222
|
+
font-size: 1.8rem;
|
|
12223
|
+
}
|
|
12224
|
+
|
|
12225
|
+
.text-xl {
|
|
12226
|
+
font-size: 2rem;
|
|
12227
|
+
}
|
|
12228
|
+
|
|
12229
|
+
.text-2xl {
|
|
12230
|
+
font-size: 2.4rem;
|
|
12231
|
+
}
|
|
12232
|
+
|
|
12233
|
+
.text-3xl {
|
|
12234
|
+
font-size: 2.8rem;
|
|
12235
|
+
}
|
|
12236
|
+
|
|
12237
|
+
.text-4xl {
|
|
12238
|
+
font-size: 3.2rem;
|
|
12239
|
+
}
|
|
12240
|
+
|
|
11679
12241
|
.component-showcase {
|
|
11680
12242
|
display: flex;
|
|
11681
12243
|
flex-wrap: wrap;
|
|
@@ -12591,26 +13153,82 @@ html.font-size-4xl {
|
|
|
12591
13153
|
white-space: nowrap !important;
|
|
12592
13154
|
}
|
|
12593
13155
|
|
|
13156
|
+
.w-5 {
|
|
13157
|
+
width: 5% !important;
|
|
13158
|
+
}
|
|
13159
|
+
|
|
13160
|
+
.w-10 {
|
|
13161
|
+
width: 10% !important;
|
|
13162
|
+
}
|
|
13163
|
+
|
|
13164
|
+
.w-15 {
|
|
13165
|
+
width: 15% !important;
|
|
13166
|
+
}
|
|
13167
|
+
|
|
13168
|
+
.w-20 {
|
|
13169
|
+
width: 20% !important;
|
|
13170
|
+
}
|
|
13171
|
+
|
|
12594
13172
|
.w-25 {
|
|
12595
13173
|
width: 25% !important;
|
|
12596
13174
|
}
|
|
12597
13175
|
|
|
12598
|
-
.w-
|
|
12599
|
-
width:
|
|
13176
|
+
.w-30 {
|
|
13177
|
+
width: 30% !important;
|
|
13178
|
+
}
|
|
13179
|
+
|
|
13180
|
+
.w-35 {
|
|
13181
|
+
width: 35% !important;
|
|
13182
|
+
}
|
|
13183
|
+
|
|
13184
|
+
.w-40 {
|
|
13185
|
+
width: 40% !important;
|
|
13186
|
+
}
|
|
13187
|
+
|
|
13188
|
+
.w-45 {
|
|
13189
|
+
width: 45% !important;
|
|
12600
13190
|
}
|
|
12601
13191
|
|
|
12602
13192
|
.w-50 {
|
|
12603
13193
|
width: 50% !important;
|
|
12604
13194
|
}
|
|
12605
13195
|
|
|
12606
|
-
.w-
|
|
12607
|
-
width:
|
|
13196
|
+
.w-55 {
|
|
13197
|
+
width: 55% !important;
|
|
13198
|
+
}
|
|
13199
|
+
|
|
13200
|
+
.w-60 {
|
|
13201
|
+
width: 60% !important;
|
|
13202
|
+
}
|
|
13203
|
+
|
|
13204
|
+
.w-65 {
|
|
13205
|
+
width: 65% !important;
|
|
13206
|
+
}
|
|
13207
|
+
|
|
13208
|
+
.w-70 {
|
|
13209
|
+
width: 70% !important;
|
|
12608
13210
|
}
|
|
12609
13211
|
|
|
12610
13212
|
.w-75 {
|
|
12611
13213
|
width: 75% !important;
|
|
12612
13214
|
}
|
|
12613
13215
|
|
|
13216
|
+
.w-80 {
|
|
13217
|
+
width: 80% !important;
|
|
13218
|
+
}
|
|
13219
|
+
|
|
13220
|
+
.w-85 {
|
|
13221
|
+
width: 85% !important;
|
|
13222
|
+
}
|
|
13223
|
+
|
|
13224
|
+
.w-90 {
|
|
13225
|
+
width: 90% !important;
|
|
13226
|
+
}
|
|
13227
|
+
|
|
13228
|
+
.w-95 {
|
|
13229
|
+
width: 95% !important;
|
|
13230
|
+
}
|
|
13231
|
+
|
|
12614
13232
|
.w-100 {
|
|
12615
13233
|
width: 100% !important;
|
|
12616
13234
|
}
|
|
@@ -12619,20 +13237,20 @@ html.font-size-4xl {
|
|
|
12619
13237
|
width: auto !important;
|
|
12620
13238
|
}
|
|
12621
13239
|
|
|
12622
|
-
.
|
|
12623
|
-
|
|
13240
|
+
.w-1-3 {
|
|
13241
|
+
width: 33.333333% !important;
|
|
12624
13242
|
}
|
|
12625
13243
|
|
|
12626
|
-
.
|
|
12627
|
-
|
|
13244
|
+
.w-2-3 {
|
|
13245
|
+
width: 66.666667% !important;
|
|
12628
13246
|
}
|
|
12629
13247
|
|
|
12630
|
-
.mw-
|
|
12631
|
-
min-width:
|
|
13248
|
+
.mw-25 {
|
|
13249
|
+
min-width: 25% !important;
|
|
12632
13250
|
}
|
|
12633
13251
|
|
|
12634
|
-
.mw-
|
|
12635
|
-
min-width:
|
|
13252
|
+
.mw-50 {
|
|
13253
|
+
min-width: 50% !important;
|
|
12636
13254
|
}
|
|
12637
13255
|
|
|
12638
13256
|
.mw-75 {
|
|
@@ -12647,26 +13265,24 @@ html.font-size-4xl {
|
|
|
12647
13265
|
min-width: auto !important;
|
|
12648
13266
|
}
|
|
12649
13267
|
|
|
13268
|
+
.mw-1-3 {
|
|
13269
|
+
min-width: 33.333333% !important;
|
|
13270
|
+
}
|
|
13271
|
+
|
|
13272
|
+
.mw-2-3 {
|
|
13273
|
+
min-width: 66.666667% !important;
|
|
13274
|
+
}
|
|
13275
|
+
|
|
12650
13276
|
.w-25-fixed {
|
|
12651
13277
|
min-width: 25% !important;
|
|
12652
13278
|
width: 25% !important;
|
|
12653
13279
|
}
|
|
12654
13280
|
|
|
12655
|
-
.w-33-fixed {
|
|
12656
|
-
min-width: 33.333333% !important;
|
|
12657
|
-
width: 33.333333% !important;
|
|
12658
|
-
}
|
|
12659
|
-
|
|
12660
13281
|
.w-50-fixed {
|
|
12661
13282
|
min-width: 50% !important;
|
|
12662
13283
|
width: 50% !important;
|
|
12663
13284
|
}
|
|
12664
13285
|
|
|
12665
|
-
.w-66-fixed {
|
|
12666
|
-
min-width: 66.666667% !important;
|
|
12667
|
-
width: 66.666667% !important;
|
|
12668
|
-
}
|
|
12669
|
-
|
|
12670
13286
|
.w-75-fixed {
|
|
12671
13287
|
min-width: 75% !important;
|
|
12672
13288
|
width: 75% !important;
|
|
@@ -12677,6 +13293,16 @@ html.font-size-4xl {
|
|
|
12677
13293
|
width: 100% !important;
|
|
12678
13294
|
}
|
|
12679
13295
|
|
|
13296
|
+
.w-1-3-fixed {
|
|
13297
|
+
min-width: 33.333333% !important;
|
|
13298
|
+
width: 33.333333% !important;
|
|
13299
|
+
}
|
|
13300
|
+
|
|
13301
|
+
.w-2-3-fixed {
|
|
13302
|
+
min-width: 66.666667% !important;
|
|
13303
|
+
width: 66.666667% !important;
|
|
13304
|
+
}
|
|
13305
|
+
|
|
12680
13306
|
.h-25 {
|
|
12681
13307
|
height: 25% !important;
|
|
12682
13308
|
}
|
|
@@ -12697,32 +13323,696 @@ html.font-size-4xl {
|
|
|
12697
13323
|
height: auto !important;
|
|
12698
13324
|
}
|
|
12699
13325
|
|
|
12700
|
-
.
|
|
12701
|
-
|
|
13326
|
+
.wr-1 {
|
|
13327
|
+
width: 1rem !important;
|
|
12702
13328
|
}
|
|
12703
13329
|
|
|
12704
|
-
.
|
|
12705
|
-
|
|
13330
|
+
.wr-2 {
|
|
13331
|
+
width: 2rem !important;
|
|
12706
13332
|
}
|
|
12707
13333
|
|
|
12708
|
-
.
|
|
12709
|
-
|
|
13334
|
+
.wr-3 {
|
|
13335
|
+
width: 3rem !important;
|
|
12710
13336
|
}
|
|
12711
13337
|
|
|
12712
|
-
.
|
|
12713
|
-
|
|
13338
|
+
.wr-4 {
|
|
13339
|
+
width: 4rem !important;
|
|
12714
13340
|
}
|
|
12715
13341
|
|
|
12716
|
-
.
|
|
12717
|
-
|
|
13342
|
+
.wr-5 {
|
|
13343
|
+
width: 5rem !important;
|
|
12718
13344
|
}
|
|
12719
13345
|
|
|
12720
|
-
.
|
|
12721
|
-
|
|
13346
|
+
.wr-6 {
|
|
13347
|
+
width: 6rem !important;
|
|
12722
13348
|
}
|
|
12723
13349
|
|
|
12724
|
-
.
|
|
12725
|
-
|
|
13350
|
+
.wr-7 {
|
|
13351
|
+
width: 7rem !important;
|
|
13352
|
+
}
|
|
13353
|
+
|
|
13354
|
+
.wr-8 {
|
|
13355
|
+
width: 8rem !important;
|
|
13356
|
+
}
|
|
13357
|
+
|
|
13358
|
+
.wr-9 {
|
|
13359
|
+
width: 9rem !important;
|
|
13360
|
+
}
|
|
13361
|
+
|
|
13362
|
+
.wr-10 {
|
|
13363
|
+
width: 10rem !important;
|
|
13364
|
+
}
|
|
13365
|
+
|
|
13366
|
+
.wr-15 {
|
|
13367
|
+
width: 15rem !important;
|
|
13368
|
+
}
|
|
13369
|
+
|
|
13370
|
+
.wr-20 {
|
|
13371
|
+
width: 20rem !important;
|
|
13372
|
+
}
|
|
13373
|
+
|
|
13374
|
+
.wr-25 {
|
|
13375
|
+
width: 25rem !important;
|
|
13376
|
+
}
|
|
13377
|
+
|
|
13378
|
+
.minwr-1 {
|
|
13379
|
+
min-width: 1rem !important;
|
|
13380
|
+
}
|
|
13381
|
+
|
|
13382
|
+
.minwr-2 {
|
|
13383
|
+
min-width: 2rem !important;
|
|
13384
|
+
}
|
|
13385
|
+
|
|
13386
|
+
.minwr-3 {
|
|
13387
|
+
min-width: 3rem !important;
|
|
13388
|
+
}
|
|
13389
|
+
|
|
13390
|
+
.minwr-4 {
|
|
13391
|
+
min-width: 4rem !important;
|
|
13392
|
+
}
|
|
13393
|
+
|
|
13394
|
+
.minwr-5 {
|
|
13395
|
+
min-width: 5rem !important;
|
|
13396
|
+
}
|
|
13397
|
+
|
|
13398
|
+
.minwr-6 {
|
|
13399
|
+
min-width: 6rem !important;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13402
|
+
.minwr-7 {
|
|
13403
|
+
min-width: 7rem !important;
|
|
13404
|
+
}
|
|
13405
|
+
|
|
13406
|
+
.minwr-8 {
|
|
13407
|
+
min-width: 8rem !important;
|
|
13408
|
+
}
|
|
13409
|
+
|
|
13410
|
+
.minwr-9 {
|
|
13411
|
+
min-width: 9rem !important;
|
|
13412
|
+
}
|
|
13413
|
+
|
|
13414
|
+
.minwr-10 {
|
|
13415
|
+
min-width: 10rem !important;
|
|
13416
|
+
}
|
|
13417
|
+
|
|
13418
|
+
.minwr-15 {
|
|
13419
|
+
min-width: 15rem !important;
|
|
13420
|
+
}
|
|
13421
|
+
|
|
13422
|
+
.minwr-20 {
|
|
13423
|
+
min-width: 20rem !important;
|
|
13424
|
+
}
|
|
13425
|
+
|
|
13426
|
+
.minwr-25 {
|
|
13427
|
+
min-width: 25rem !important;
|
|
13428
|
+
}
|
|
13429
|
+
|
|
13430
|
+
.maxwr-1 {
|
|
13431
|
+
max-width: 1rem !important;
|
|
13432
|
+
}
|
|
13433
|
+
|
|
13434
|
+
.maxwr-2 {
|
|
13435
|
+
max-width: 2rem !important;
|
|
13436
|
+
}
|
|
13437
|
+
|
|
13438
|
+
.maxwr-3 {
|
|
13439
|
+
max-width: 3rem !important;
|
|
13440
|
+
}
|
|
13441
|
+
|
|
13442
|
+
.maxwr-4 {
|
|
13443
|
+
max-width: 4rem !important;
|
|
13444
|
+
}
|
|
13445
|
+
|
|
13446
|
+
.maxwr-5 {
|
|
13447
|
+
max-width: 5rem !important;
|
|
13448
|
+
}
|
|
13449
|
+
|
|
13450
|
+
.maxwr-6 {
|
|
13451
|
+
max-width: 6rem !important;
|
|
13452
|
+
}
|
|
13453
|
+
|
|
13454
|
+
.maxwr-7 {
|
|
13455
|
+
max-width: 7rem !important;
|
|
13456
|
+
}
|
|
13457
|
+
|
|
13458
|
+
.maxwr-8 {
|
|
13459
|
+
max-width: 8rem !important;
|
|
13460
|
+
}
|
|
13461
|
+
|
|
13462
|
+
.maxwr-9 {
|
|
13463
|
+
max-width: 9rem !important;
|
|
13464
|
+
}
|
|
13465
|
+
|
|
13466
|
+
.maxwr-10 {
|
|
13467
|
+
max-width: 10rem !important;
|
|
13468
|
+
}
|
|
13469
|
+
|
|
13470
|
+
.maxwr-15 {
|
|
13471
|
+
max-width: 15rem !important;
|
|
13472
|
+
}
|
|
13473
|
+
|
|
13474
|
+
.maxwr-20 {
|
|
13475
|
+
max-width: 20rem !important;
|
|
13476
|
+
}
|
|
13477
|
+
|
|
13478
|
+
.maxwr-25 {
|
|
13479
|
+
max-width: 25rem !important;
|
|
13480
|
+
}
|
|
13481
|
+
|
|
13482
|
+
.hr-1 {
|
|
13483
|
+
height: 1rem !important;
|
|
13484
|
+
}
|
|
13485
|
+
|
|
13486
|
+
.hr-2 {
|
|
13487
|
+
height: 2rem !important;
|
|
13488
|
+
}
|
|
13489
|
+
|
|
13490
|
+
.hr-3 {
|
|
13491
|
+
height: 3rem !important;
|
|
13492
|
+
}
|
|
13493
|
+
|
|
13494
|
+
.hr-4 {
|
|
13495
|
+
height: 4rem !important;
|
|
13496
|
+
}
|
|
13497
|
+
|
|
13498
|
+
.hr-5 {
|
|
13499
|
+
height: 5rem !important;
|
|
13500
|
+
}
|
|
13501
|
+
|
|
13502
|
+
.hr-6 {
|
|
13503
|
+
height: 6rem !important;
|
|
13504
|
+
}
|
|
13505
|
+
|
|
13506
|
+
.hr-7 {
|
|
13507
|
+
height: 7rem !important;
|
|
13508
|
+
}
|
|
13509
|
+
|
|
13510
|
+
.hr-8 {
|
|
13511
|
+
height: 8rem !important;
|
|
13512
|
+
}
|
|
13513
|
+
|
|
13514
|
+
.hr-9 {
|
|
13515
|
+
height: 9rem !important;
|
|
13516
|
+
}
|
|
13517
|
+
|
|
13518
|
+
.hr-10 {
|
|
13519
|
+
height: 10rem !important;
|
|
13520
|
+
}
|
|
13521
|
+
|
|
13522
|
+
.hr-15 {
|
|
13523
|
+
height: 15rem !important;
|
|
13524
|
+
}
|
|
13525
|
+
|
|
13526
|
+
.hr-20 {
|
|
13527
|
+
height: 20rem !important;
|
|
13528
|
+
}
|
|
13529
|
+
|
|
13530
|
+
.hr-25 {
|
|
13531
|
+
height: 25rem !important;
|
|
13532
|
+
}
|
|
13533
|
+
|
|
13534
|
+
.minhr-1 {
|
|
13535
|
+
min-height: 1rem !important;
|
|
13536
|
+
}
|
|
13537
|
+
|
|
13538
|
+
.minhr-2 {
|
|
13539
|
+
min-height: 2rem !important;
|
|
13540
|
+
}
|
|
13541
|
+
|
|
13542
|
+
.minhr-3 {
|
|
13543
|
+
min-height: 3rem !important;
|
|
13544
|
+
}
|
|
13545
|
+
|
|
13546
|
+
.minhr-4 {
|
|
13547
|
+
min-height: 4rem !important;
|
|
13548
|
+
}
|
|
13549
|
+
|
|
13550
|
+
.minhr-5 {
|
|
13551
|
+
min-height: 5rem !important;
|
|
13552
|
+
}
|
|
13553
|
+
|
|
13554
|
+
.minhr-6 {
|
|
13555
|
+
min-height: 6rem !important;
|
|
13556
|
+
}
|
|
13557
|
+
|
|
13558
|
+
.minhr-7 {
|
|
13559
|
+
min-height: 7rem !important;
|
|
13560
|
+
}
|
|
13561
|
+
|
|
13562
|
+
.minhr-8 {
|
|
13563
|
+
min-height: 8rem !important;
|
|
13564
|
+
}
|
|
13565
|
+
|
|
13566
|
+
.minhr-9 {
|
|
13567
|
+
min-height: 9rem !important;
|
|
13568
|
+
}
|
|
13569
|
+
|
|
13570
|
+
.minhr-10 {
|
|
13571
|
+
min-height: 10rem !important;
|
|
13572
|
+
}
|
|
13573
|
+
|
|
13574
|
+
.minhr-15 {
|
|
13575
|
+
min-height: 15rem !important;
|
|
13576
|
+
}
|
|
13577
|
+
|
|
13578
|
+
.minhr-20 {
|
|
13579
|
+
min-height: 20rem !important;
|
|
13580
|
+
}
|
|
13581
|
+
|
|
13582
|
+
.minhr-25 {
|
|
13583
|
+
min-height: 25rem !important;
|
|
13584
|
+
}
|
|
13585
|
+
|
|
13586
|
+
.maxhr-1 {
|
|
13587
|
+
max-height: 1rem !important;
|
|
13588
|
+
}
|
|
13589
|
+
|
|
13590
|
+
.maxhr-2 {
|
|
13591
|
+
max-height: 2rem !important;
|
|
13592
|
+
}
|
|
13593
|
+
|
|
13594
|
+
.maxhr-3 {
|
|
13595
|
+
max-height: 3rem !important;
|
|
13596
|
+
}
|
|
13597
|
+
|
|
13598
|
+
.maxhr-4 {
|
|
13599
|
+
max-height: 4rem !important;
|
|
13600
|
+
}
|
|
13601
|
+
|
|
13602
|
+
.maxhr-5 {
|
|
13603
|
+
max-height: 5rem !important;
|
|
13604
|
+
}
|
|
13605
|
+
|
|
13606
|
+
.maxhr-6 {
|
|
13607
|
+
max-height: 6rem !important;
|
|
13608
|
+
}
|
|
13609
|
+
|
|
13610
|
+
.maxhr-7 {
|
|
13611
|
+
max-height: 7rem !important;
|
|
13612
|
+
}
|
|
13613
|
+
|
|
13614
|
+
.maxhr-8 {
|
|
13615
|
+
max-height: 8rem !important;
|
|
13616
|
+
}
|
|
13617
|
+
|
|
13618
|
+
.maxhr-9 {
|
|
13619
|
+
max-height: 9rem !important;
|
|
13620
|
+
}
|
|
13621
|
+
|
|
13622
|
+
.maxhr-10 {
|
|
13623
|
+
max-height: 10rem !important;
|
|
13624
|
+
}
|
|
13625
|
+
|
|
13626
|
+
.maxhr-15 {
|
|
13627
|
+
max-height: 15rem !important;
|
|
13628
|
+
}
|
|
13629
|
+
|
|
13630
|
+
.maxhr-20 {
|
|
13631
|
+
max-height: 20rem !important;
|
|
13632
|
+
}
|
|
13633
|
+
|
|
13634
|
+
.maxhr-25 {
|
|
13635
|
+
max-height: 25rem !important;
|
|
13636
|
+
}
|
|
13637
|
+
|
|
13638
|
+
.minw-5 {
|
|
13639
|
+
min-width: 5% !important;
|
|
13640
|
+
}
|
|
13641
|
+
|
|
13642
|
+
.minw-10 {
|
|
13643
|
+
min-width: 10% !important;
|
|
13644
|
+
}
|
|
13645
|
+
|
|
13646
|
+
.minw-15 {
|
|
13647
|
+
min-width: 15% !important;
|
|
13648
|
+
}
|
|
13649
|
+
|
|
13650
|
+
.minw-20 {
|
|
13651
|
+
min-width: 20% !important;
|
|
13652
|
+
}
|
|
13653
|
+
|
|
13654
|
+
.minw-25 {
|
|
13655
|
+
min-width: 25% !important;
|
|
13656
|
+
}
|
|
13657
|
+
|
|
13658
|
+
.minw-30 {
|
|
13659
|
+
min-width: 30% !important;
|
|
13660
|
+
}
|
|
13661
|
+
|
|
13662
|
+
.minw-35 {
|
|
13663
|
+
min-width: 35% !important;
|
|
13664
|
+
}
|
|
13665
|
+
|
|
13666
|
+
.minw-40 {
|
|
13667
|
+
min-width: 40% !important;
|
|
13668
|
+
}
|
|
13669
|
+
|
|
13670
|
+
.minw-45 {
|
|
13671
|
+
min-width: 45% !important;
|
|
13672
|
+
}
|
|
13673
|
+
|
|
13674
|
+
.minw-50 {
|
|
13675
|
+
min-width: 50% !important;
|
|
13676
|
+
}
|
|
13677
|
+
|
|
13678
|
+
.minw-55 {
|
|
13679
|
+
min-width: 55% !important;
|
|
13680
|
+
}
|
|
13681
|
+
|
|
13682
|
+
.minw-60 {
|
|
13683
|
+
min-width: 60% !important;
|
|
13684
|
+
}
|
|
13685
|
+
|
|
13686
|
+
.minw-65 {
|
|
13687
|
+
min-width: 65% !important;
|
|
13688
|
+
}
|
|
13689
|
+
|
|
13690
|
+
.minw-70 {
|
|
13691
|
+
min-width: 70% !important;
|
|
13692
|
+
}
|
|
13693
|
+
|
|
13694
|
+
.minw-75 {
|
|
13695
|
+
min-width: 75% !important;
|
|
13696
|
+
}
|
|
13697
|
+
|
|
13698
|
+
.minw-80 {
|
|
13699
|
+
min-width: 80% !important;
|
|
13700
|
+
}
|
|
13701
|
+
|
|
13702
|
+
.minw-85 {
|
|
13703
|
+
min-width: 85% !important;
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13706
|
+
.minw-90 {
|
|
13707
|
+
min-width: 90% !important;
|
|
13708
|
+
}
|
|
13709
|
+
|
|
13710
|
+
.minw-95 {
|
|
13711
|
+
min-width: 95% !important;
|
|
13712
|
+
}
|
|
13713
|
+
|
|
13714
|
+
.minw-100 {
|
|
13715
|
+
min-width: 100% !important;
|
|
13716
|
+
}
|
|
13717
|
+
|
|
13718
|
+
.minw-1-3 {
|
|
13719
|
+
min-width: 33.333333% !important;
|
|
13720
|
+
}
|
|
13721
|
+
|
|
13722
|
+
.minw-2-3 {
|
|
13723
|
+
min-width: 66.666667% !important;
|
|
13724
|
+
}
|
|
13725
|
+
|
|
13726
|
+
.maxw-5 {
|
|
13727
|
+
max-width: 5% !important;
|
|
13728
|
+
}
|
|
13729
|
+
|
|
13730
|
+
.maxw-10 {
|
|
13731
|
+
max-width: 10% !important;
|
|
13732
|
+
}
|
|
13733
|
+
|
|
13734
|
+
.maxw-15 {
|
|
13735
|
+
max-width: 15% !important;
|
|
13736
|
+
}
|
|
13737
|
+
|
|
13738
|
+
.maxw-20 {
|
|
13739
|
+
max-width: 20% !important;
|
|
13740
|
+
}
|
|
13741
|
+
|
|
13742
|
+
.maxw-25 {
|
|
13743
|
+
max-width: 25% !important;
|
|
13744
|
+
}
|
|
13745
|
+
|
|
13746
|
+
.maxw-30 {
|
|
13747
|
+
max-width: 30% !important;
|
|
13748
|
+
}
|
|
13749
|
+
|
|
13750
|
+
.maxw-35 {
|
|
13751
|
+
max-width: 35% !important;
|
|
13752
|
+
}
|
|
13753
|
+
|
|
13754
|
+
.maxw-40 {
|
|
13755
|
+
max-width: 40% !important;
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
.maxw-45 {
|
|
13759
|
+
max-width: 45% !important;
|
|
13760
|
+
}
|
|
13761
|
+
|
|
13762
|
+
.maxw-50 {
|
|
13763
|
+
max-width: 50% !important;
|
|
13764
|
+
}
|
|
13765
|
+
|
|
13766
|
+
.maxw-55 {
|
|
13767
|
+
max-width: 55% !important;
|
|
13768
|
+
}
|
|
13769
|
+
|
|
13770
|
+
.maxw-60 {
|
|
13771
|
+
max-width: 60% !important;
|
|
13772
|
+
}
|
|
13773
|
+
|
|
13774
|
+
.maxw-65 {
|
|
13775
|
+
max-width: 65% !important;
|
|
13776
|
+
}
|
|
13777
|
+
|
|
13778
|
+
.maxw-70 {
|
|
13779
|
+
max-width: 70% !important;
|
|
13780
|
+
}
|
|
13781
|
+
|
|
13782
|
+
.maxw-75 {
|
|
13783
|
+
max-width: 75% !important;
|
|
13784
|
+
}
|
|
13785
|
+
|
|
13786
|
+
.maxw-80 {
|
|
13787
|
+
max-width: 80% !important;
|
|
13788
|
+
}
|
|
13789
|
+
|
|
13790
|
+
.maxw-85 {
|
|
13791
|
+
max-width: 85% !important;
|
|
13792
|
+
}
|
|
13793
|
+
|
|
13794
|
+
.maxw-90 {
|
|
13795
|
+
max-width: 90% !important;
|
|
13796
|
+
}
|
|
13797
|
+
|
|
13798
|
+
.maxw-95 {
|
|
13799
|
+
max-width: 95% !important;
|
|
13800
|
+
}
|
|
13801
|
+
|
|
13802
|
+
.maxw-100 {
|
|
13803
|
+
max-width: 100% !important;
|
|
13804
|
+
}
|
|
13805
|
+
|
|
13806
|
+
.maxw-1-3 {
|
|
13807
|
+
max-width: 33.333333% !important;
|
|
13808
|
+
}
|
|
13809
|
+
|
|
13810
|
+
.maxw-2-3 {
|
|
13811
|
+
max-width: 66.666667% !important;
|
|
13812
|
+
}
|
|
13813
|
+
|
|
13814
|
+
.minh-5 {
|
|
13815
|
+
min-height: 5% !important;
|
|
13816
|
+
}
|
|
13817
|
+
|
|
13818
|
+
.minh-10 {
|
|
13819
|
+
min-height: 10% !important;
|
|
13820
|
+
}
|
|
13821
|
+
|
|
13822
|
+
.minh-15 {
|
|
13823
|
+
min-height: 15% !important;
|
|
13824
|
+
}
|
|
13825
|
+
|
|
13826
|
+
.minh-20 {
|
|
13827
|
+
min-height: 20% !important;
|
|
13828
|
+
}
|
|
13829
|
+
|
|
13830
|
+
.minh-25 {
|
|
13831
|
+
min-height: 25% !important;
|
|
13832
|
+
}
|
|
13833
|
+
|
|
13834
|
+
.minh-30 {
|
|
13835
|
+
min-height: 30% !important;
|
|
13836
|
+
}
|
|
13837
|
+
|
|
13838
|
+
.minh-35 {
|
|
13839
|
+
min-height: 35% !important;
|
|
13840
|
+
}
|
|
13841
|
+
|
|
13842
|
+
.minh-40 {
|
|
13843
|
+
min-height: 40% !important;
|
|
13844
|
+
}
|
|
13845
|
+
|
|
13846
|
+
.minh-45 {
|
|
13847
|
+
min-height: 45% !important;
|
|
13848
|
+
}
|
|
13849
|
+
|
|
13850
|
+
.minh-50 {
|
|
13851
|
+
min-height: 50% !important;
|
|
13852
|
+
}
|
|
13853
|
+
|
|
13854
|
+
.minh-55 {
|
|
13855
|
+
min-height: 55% !important;
|
|
13856
|
+
}
|
|
13857
|
+
|
|
13858
|
+
.minh-60 {
|
|
13859
|
+
min-height: 60% !important;
|
|
13860
|
+
}
|
|
13861
|
+
|
|
13862
|
+
.minh-65 {
|
|
13863
|
+
min-height: 65% !important;
|
|
13864
|
+
}
|
|
13865
|
+
|
|
13866
|
+
.minh-70 {
|
|
13867
|
+
min-height: 70% !important;
|
|
13868
|
+
}
|
|
13869
|
+
|
|
13870
|
+
.minh-75 {
|
|
13871
|
+
min-height: 75% !important;
|
|
13872
|
+
}
|
|
13873
|
+
|
|
13874
|
+
.minh-80 {
|
|
13875
|
+
min-height: 80% !important;
|
|
13876
|
+
}
|
|
13877
|
+
|
|
13878
|
+
.minh-85 {
|
|
13879
|
+
min-height: 85% !important;
|
|
13880
|
+
}
|
|
13881
|
+
|
|
13882
|
+
.minh-90 {
|
|
13883
|
+
min-height: 90% !important;
|
|
13884
|
+
}
|
|
13885
|
+
|
|
13886
|
+
.minh-95 {
|
|
13887
|
+
min-height: 95% !important;
|
|
13888
|
+
}
|
|
13889
|
+
|
|
13890
|
+
.minh-100 {
|
|
13891
|
+
min-height: 100% !important;
|
|
13892
|
+
}
|
|
13893
|
+
|
|
13894
|
+
.minh-1-3 {
|
|
13895
|
+
min-height: 33.333333% !important;
|
|
13896
|
+
}
|
|
13897
|
+
|
|
13898
|
+
.minh-2-3 {
|
|
13899
|
+
min-height: 66.666667% !important;
|
|
13900
|
+
}
|
|
13901
|
+
|
|
13902
|
+
.maxh-5 {
|
|
13903
|
+
max-height: 5% !important;
|
|
13904
|
+
}
|
|
13905
|
+
|
|
13906
|
+
.maxh-10 {
|
|
13907
|
+
max-height: 10% !important;
|
|
13908
|
+
}
|
|
13909
|
+
|
|
13910
|
+
.maxh-15 {
|
|
13911
|
+
max-height: 15% !important;
|
|
13912
|
+
}
|
|
13913
|
+
|
|
13914
|
+
.maxh-20 {
|
|
13915
|
+
max-height: 20% !important;
|
|
13916
|
+
}
|
|
13917
|
+
|
|
13918
|
+
.maxh-25 {
|
|
13919
|
+
max-height: 25% !important;
|
|
13920
|
+
}
|
|
13921
|
+
|
|
13922
|
+
.maxh-30 {
|
|
13923
|
+
max-height: 30% !important;
|
|
13924
|
+
}
|
|
13925
|
+
|
|
13926
|
+
.maxh-35 {
|
|
13927
|
+
max-height: 35% !important;
|
|
13928
|
+
}
|
|
13929
|
+
|
|
13930
|
+
.maxh-40 {
|
|
13931
|
+
max-height: 40% !important;
|
|
13932
|
+
}
|
|
13933
|
+
|
|
13934
|
+
.maxh-45 {
|
|
13935
|
+
max-height: 45% !important;
|
|
13936
|
+
}
|
|
13937
|
+
|
|
13938
|
+
.maxh-50 {
|
|
13939
|
+
max-height: 50% !important;
|
|
13940
|
+
}
|
|
13941
|
+
|
|
13942
|
+
.maxh-55 {
|
|
13943
|
+
max-height: 55% !important;
|
|
13944
|
+
}
|
|
13945
|
+
|
|
13946
|
+
.maxh-60 {
|
|
13947
|
+
max-height: 60% !important;
|
|
13948
|
+
}
|
|
13949
|
+
|
|
13950
|
+
.maxh-65 {
|
|
13951
|
+
max-height: 65% !important;
|
|
13952
|
+
}
|
|
13953
|
+
|
|
13954
|
+
.maxh-70 {
|
|
13955
|
+
max-height: 70% !important;
|
|
13956
|
+
}
|
|
13957
|
+
|
|
13958
|
+
.maxh-75 {
|
|
13959
|
+
max-height: 75% !important;
|
|
13960
|
+
}
|
|
13961
|
+
|
|
13962
|
+
.maxh-80 {
|
|
13963
|
+
max-height: 80% !important;
|
|
13964
|
+
}
|
|
13965
|
+
|
|
13966
|
+
.maxh-85 {
|
|
13967
|
+
max-height: 85% !important;
|
|
13968
|
+
}
|
|
13969
|
+
|
|
13970
|
+
.maxh-90 {
|
|
13971
|
+
max-height: 90% !important;
|
|
13972
|
+
}
|
|
13973
|
+
|
|
13974
|
+
.maxh-95 {
|
|
13975
|
+
max-height: 95% !important;
|
|
13976
|
+
}
|
|
13977
|
+
|
|
13978
|
+
.maxh-100 {
|
|
13979
|
+
max-height: 100% !important;
|
|
13980
|
+
}
|
|
13981
|
+
|
|
13982
|
+
.maxh-1-3 {
|
|
13983
|
+
max-height: 33.333333% !important;
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
.maxh-2-3 {
|
|
13987
|
+
max-height: 66.666667% !important;
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13990
|
+
.position-static {
|
|
13991
|
+
position: static !important;
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13994
|
+
.position-relative {
|
|
13995
|
+
position: relative !important;
|
|
13996
|
+
}
|
|
13997
|
+
|
|
13998
|
+
.position-absolute {
|
|
13999
|
+
position: absolute !important;
|
|
14000
|
+
}
|
|
14001
|
+
|
|
14002
|
+
.position-fixed {
|
|
14003
|
+
position: fixed !important;
|
|
14004
|
+
}
|
|
14005
|
+
|
|
14006
|
+
.position-sticky {
|
|
14007
|
+
position: sticky !important;
|
|
14008
|
+
}
|
|
14009
|
+
|
|
14010
|
+
.border {
|
|
14011
|
+
border: 1px solid var(--border-color) !important;
|
|
14012
|
+
}
|
|
14013
|
+
|
|
14014
|
+
.border-top {
|
|
14015
|
+
border-top: 1px solid var(--border-color) !important;
|
|
12726
14016
|
}
|
|
12727
14017
|
|
|
12728
14018
|
.border-right {
|
|
@@ -12757,6 +14047,78 @@ html.font-size-4xl {
|
|
|
12757
14047
|
border-left: 0 !important;
|
|
12758
14048
|
}
|
|
12759
14049
|
|
|
14050
|
+
.border-solid {
|
|
14051
|
+
border-style: solid !important;
|
|
14052
|
+
}
|
|
14053
|
+
|
|
14054
|
+
.border-dashed {
|
|
14055
|
+
border-style: dashed !important;
|
|
14056
|
+
}
|
|
14057
|
+
|
|
14058
|
+
.border-dotted {
|
|
14059
|
+
border-style: dotted !important;
|
|
14060
|
+
}
|
|
14061
|
+
|
|
14062
|
+
.border-none {
|
|
14063
|
+
border-style: none !important;
|
|
14064
|
+
}
|
|
14065
|
+
|
|
14066
|
+
.text-primary {
|
|
14067
|
+
color: var(--pa-accent) !important;
|
|
14068
|
+
}
|
|
14069
|
+
|
|
14070
|
+
.text-success {
|
|
14071
|
+
color: var(--pa-success-text) !important;
|
|
14072
|
+
}
|
|
14073
|
+
|
|
14074
|
+
.text-danger {
|
|
14075
|
+
color: var(--pa-danger-text) !important;
|
|
14076
|
+
}
|
|
14077
|
+
|
|
14078
|
+
.text-warning {
|
|
14079
|
+
color: var(--pa-warning-text) !important;
|
|
14080
|
+
}
|
|
14081
|
+
|
|
14082
|
+
.text-info {
|
|
14083
|
+
color: var(--pa-info-text) !important;
|
|
14084
|
+
}
|
|
14085
|
+
|
|
14086
|
+
.text-color-1 {
|
|
14087
|
+
color: var(--pa-color-1) !important;
|
|
14088
|
+
}
|
|
14089
|
+
|
|
14090
|
+
.text-color-2 {
|
|
14091
|
+
color: var(--pa-color-2) !important;
|
|
14092
|
+
}
|
|
14093
|
+
|
|
14094
|
+
.text-color-3 {
|
|
14095
|
+
color: var(--pa-color-3) !important;
|
|
14096
|
+
}
|
|
14097
|
+
|
|
14098
|
+
.text-color-4 {
|
|
14099
|
+
color: var(--pa-color-4) !important;
|
|
14100
|
+
}
|
|
14101
|
+
|
|
14102
|
+
.text-color-5 {
|
|
14103
|
+
color: var(--pa-color-5) !important;
|
|
14104
|
+
}
|
|
14105
|
+
|
|
14106
|
+
.text-color-6 {
|
|
14107
|
+
color: var(--pa-color-6) !important;
|
|
14108
|
+
}
|
|
14109
|
+
|
|
14110
|
+
.text-color-7 {
|
|
14111
|
+
color: var(--pa-color-7) !important;
|
|
14112
|
+
}
|
|
14113
|
+
|
|
14114
|
+
.text-color-8 {
|
|
14115
|
+
color: var(--pa-color-8) !important;
|
|
14116
|
+
}
|
|
14117
|
+
|
|
14118
|
+
.text-color-9 {
|
|
14119
|
+
color: var(--pa-color-9) !important;
|
|
14120
|
+
}
|
|
14121
|
+
|
|
12760
14122
|
.rounded {
|
|
12761
14123
|
border-radius: var(--border-radius) !important;
|
|
12762
14124
|
}
|
|
@@ -12836,8 +14198,6 @@ html.font-size-4xl {
|
|
|
12836
14198
|
}
|
|
12837
14199
|
|
|
12838
14200
|
.pa-card {
|
|
12839
|
-
border-radius: 0 !important;
|
|
12840
|
-
border: 2px solid var(--pa-border-color);
|
|
12841
14201
|
box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.4);
|
|
12842
14202
|
}
|
|
12843
14203
|
|
|
@@ -13045,9 +14405,9 @@ html.font-size-4xl {
|
|
|
13045
14405
|
--pa-checkbox-bg-indeterminate: #ff0000;
|
|
13046
14406
|
--pa-checkbox-checkmark-color: white;
|
|
13047
14407
|
--pa-checkbox-focus-shadow: 0 0 0 2px rgba(255, 0, 0, 0.25);
|
|
13048
|
-
--pa-input-group-prepend-bg: #
|
|
14408
|
+
--pa-input-group-prepend-bg: #6c757d;
|
|
13049
14409
|
--pa-input-group-prepend-text: #cccccc;
|
|
13050
|
-
--pa-input-group-append-bg: #
|
|
14410
|
+
--pa-input-group-append-bg: #6c757d;
|
|
13051
14411
|
--pa-input-group-append-text: #cccccc;
|
|
13052
14412
|
--pa-table-bg: #1a1a1a;
|
|
13053
14413
|
--pa-table-header-bg: #000000;
|
|
@@ -13100,6 +14460,15 @@ html.font-size-4xl {
|
|
|
13100
14460
|
--pa-multiselect-option-hover-bg: #0a0a0a;
|
|
13101
14461
|
--pa-multiselect-pill-bg: rgba(255, 0, 0, 0.25);
|
|
13102
14462
|
--pa-multiselect-pill-border: #ff0000;
|
|
14463
|
+
--pa-color-1: transparent;
|
|
14464
|
+
--pa-color-2: transparent;
|
|
14465
|
+
--pa-color-3: transparent;
|
|
14466
|
+
--pa-color-4: transparent;
|
|
14467
|
+
--pa-color-5: transparent;
|
|
14468
|
+
--pa-color-6: transparent;
|
|
14469
|
+
--pa-color-7: transparent;
|
|
14470
|
+
--pa-color-8: transparent;
|
|
14471
|
+
--pa-color-9: transparent;
|
|
13103
14472
|
--drp-dropdown-bg: #1a1a1a;
|
|
13104
14473
|
--drp-border-color: #333333;
|
|
13105
14474
|
--drp-primary-bg: #2a2a2a;
|