@keenmate/pure-admin-theme-express 1.5.1 → 2.0.1
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 +957 -20
- package/package.json +3 -3
package/dist/express.css
CHANGED
|
@@ -372,6 +372,7 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
372
372
|
.pa-layout__main {
|
|
373
373
|
flex: 1;
|
|
374
374
|
padding: 1.6rem;
|
|
375
|
+
container-type: inline-size;
|
|
375
376
|
}
|
|
376
377
|
|
|
377
378
|
.pa-layout__footer {
|
|
@@ -1176,6 +1177,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1176
1177
|
display: flex;
|
|
1177
1178
|
flex-wrap: wrap;
|
|
1178
1179
|
margin-inline: -0.8rem;
|
|
1180
|
+
row-gap: 0.8rem;
|
|
1179
1181
|
}
|
|
1180
1182
|
|
|
1181
1183
|
.pa-row .pa-row {
|
|
@@ -1559,7 +1561,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1559
1561
|
margin-inline-start: 95%;
|
|
1560
1562
|
}
|
|
1561
1563
|
|
|
1562
|
-
@
|
|
1564
|
+
@container (min-width: 576px) {
|
|
1563
1565
|
.pa-col-sm-5 {
|
|
1564
1566
|
flex: 0 0 5%;
|
|
1565
1567
|
max-width: 5%;
|
|
@@ -1832,7 +1834,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1832
1834
|
width: auto;
|
|
1833
1835
|
}
|
|
1834
1836
|
}
|
|
1835
|
-
@
|
|
1837
|
+
@container (min-width: 768px) {
|
|
1836
1838
|
.pa-col-md-5 {
|
|
1837
1839
|
flex: 0 0 5%;
|
|
1838
1840
|
max-width: 5%;
|
|
@@ -2105,7 +2107,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2105
2107
|
width: auto;
|
|
2106
2108
|
}
|
|
2107
2109
|
}
|
|
2108
|
-
@
|
|
2110
|
+
@container (min-width: 992px) {
|
|
2109
2111
|
.pa-col-lg-5 {
|
|
2110
2112
|
flex: 0 0 5%;
|
|
2111
2113
|
max-width: 5%;
|
|
@@ -2378,7 +2380,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2378
2380
|
width: auto;
|
|
2379
2381
|
}
|
|
2380
2382
|
}
|
|
2381
|
-
@
|
|
2383
|
+
@container (min-width: 1200px) {
|
|
2382
2384
|
.pa-col-xl-5 {
|
|
2383
2385
|
flex: 0 0 5%;
|
|
2384
2386
|
max-width: 5%;
|
|
@@ -2926,6 +2928,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2926
2928
|
.pa-card__header fieldset {
|
|
2927
2929
|
margin: 0;
|
|
2928
2930
|
padding: 0;
|
|
2931
|
+
border-bottom: none;
|
|
2929
2932
|
}
|
|
2930
2933
|
|
|
2931
2934
|
.pa-card__header h1,
|
|
@@ -2968,6 +2971,63 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2968
2971
|
flex-shrink: 0;
|
|
2969
2972
|
}
|
|
2970
2973
|
|
|
2974
|
+
.pa-card__header--underlined h1, .pa-card__header--underlined h2, .pa-card__header--underlined h3, .pa-card__header--underlined h4, .pa-card__header--underlined h5, .pa-card__header--underlined h6 {
|
|
2975
|
+
border-bottom: 2px solid var(--pa-accent);
|
|
2976
|
+
padding-bottom: 0.8rem;
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
.pa-card__header--underlined.pa-card__header--underline-success h1, .pa-card__header--underlined.pa-card__header--underline-success h2, .pa-card__header--underlined.pa-card__header--underline-success h3, .pa-card__header--underlined.pa-card__header--underline-success h4, .pa-card__header--underlined.pa-card__header--underline-success h5, .pa-card__header--underlined.pa-card__header--underline-success h6 {
|
|
2980
|
+
border-bottom-color: var(--pa-success-bg);
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
.pa-card__header--underlined.pa-card__header--underline-warning h1, .pa-card__header--underlined.pa-card__header--underline-warning h2, .pa-card__header--underlined.pa-card__header--underline-warning h3, .pa-card__header--underlined.pa-card__header--underline-warning h4, .pa-card__header--underlined.pa-card__header--underline-warning h5, .pa-card__header--underlined.pa-card__header--underline-warning h6 {
|
|
2984
|
+
border-bottom-color: var(--pa-warning-bg);
|
|
2985
|
+
}
|
|
2986
|
+
|
|
2987
|
+
.pa-card__header--underlined.pa-card__header--underline-danger h1, .pa-card__header--underlined.pa-card__header--underline-danger h2, .pa-card__header--underlined.pa-card__header--underline-danger h3, .pa-card__header--underlined.pa-card__header--underline-danger h4, .pa-card__header--underlined.pa-card__header--underline-danger h5, .pa-card__header--underlined.pa-card__header--underline-danger h6 {
|
|
2988
|
+
border-bottom-color: var(--pa-danger-bg);
|
|
2989
|
+
}
|
|
2990
|
+
|
|
2991
|
+
.pa-card__header--underlined.pa-card__header--underline-info h1, .pa-card__header--underlined.pa-card__header--underline-info h2, .pa-card__header--underlined.pa-card__header--underline-info h3, .pa-card__header--underlined.pa-card__header--underline-info h4, .pa-card__header--underlined.pa-card__header--underline-info h5, .pa-card__header--underlined.pa-card__header--underline-info h6 {
|
|
2992
|
+
border-bottom-color: var(--pa-info-bg);
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
.pa-card__header--underlined.pa-card__header--underline-color-1 h1, .pa-card__header--underlined.pa-card__header--underline-color-1 h2, .pa-card__header--underlined.pa-card__header--underline-color-1 h3, .pa-card__header--underlined.pa-card__header--underline-color-1 h4, .pa-card__header--underlined.pa-card__header--underline-color-1 h5, .pa-card__header--underlined.pa-card__header--underline-color-1 h6 {
|
|
2996
|
+
border-bottom-color: var(--pa-color-1);
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
.pa-card__header--underlined.pa-card__header--underline-color-2 h1, .pa-card__header--underlined.pa-card__header--underline-color-2 h2, .pa-card__header--underlined.pa-card__header--underline-color-2 h3, .pa-card__header--underlined.pa-card__header--underline-color-2 h4, .pa-card__header--underlined.pa-card__header--underline-color-2 h5, .pa-card__header--underlined.pa-card__header--underline-color-2 h6 {
|
|
3000
|
+
border-bottom-color: var(--pa-color-2);
|
|
3001
|
+
}
|
|
3002
|
+
|
|
3003
|
+
.pa-card__header--underlined.pa-card__header--underline-color-3 h1, .pa-card__header--underlined.pa-card__header--underline-color-3 h2, .pa-card__header--underlined.pa-card__header--underline-color-3 h3, .pa-card__header--underlined.pa-card__header--underline-color-3 h4, .pa-card__header--underlined.pa-card__header--underline-color-3 h5, .pa-card__header--underlined.pa-card__header--underline-color-3 h6 {
|
|
3004
|
+
border-bottom-color: var(--pa-color-3);
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
.pa-card__header--underlined.pa-card__header--underline-color-4 h1, .pa-card__header--underlined.pa-card__header--underline-color-4 h2, .pa-card__header--underlined.pa-card__header--underline-color-4 h3, .pa-card__header--underlined.pa-card__header--underline-color-4 h4, .pa-card__header--underlined.pa-card__header--underline-color-4 h5, .pa-card__header--underlined.pa-card__header--underline-color-4 h6 {
|
|
3008
|
+
border-bottom-color: var(--pa-color-4);
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
.pa-card__header--underlined.pa-card__header--underline-color-5 h1, .pa-card__header--underlined.pa-card__header--underline-color-5 h2, .pa-card__header--underlined.pa-card__header--underline-color-5 h3, .pa-card__header--underlined.pa-card__header--underline-color-5 h4, .pa-card__header--underlined.pa-card__header--underline-color-5 h5, .pa-card__header--underlined.pa-card__header--underline-color-5 h6 {
|
|
3012
|
+
border-bottom-color: var(--pa-color-5);
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
.pa-card__header--underlined.pa-card__header--underline-color-6 h1, .pa-card__header--underlined.pa-card__header--underline-color-6 h2, .pa-card__header--underlined.pa-card__header--underline-color-6 h3, .pa-card__header--underlined.pa-card__header--underline-color-6 h4, .pa-card__header--underlined.pa-card__header--underline-color-6 h5, .pa-card__header--underlined.pa-card__header--underline-color-6 h6 {
|
|
3016
|
+
border-bottom-color: var(--pa-color-6);
|
|
3017
|
+
}
|
|
3018
|
+
|
|
3019
|
+
.pa-card__header--underlined.pa-card__header--underline-color-7 h1, .pa-card__header--underlined.pa-card__header--underline-color-7 h2, .pa-card__header--underlined.pa-card__header--underline-color-7 h3, .pa-card__header--underlined.pa-card__header--underline-color-7 h4, .pa-card__header--underlined.pa-card__header--underline-color-7 h5, .pa-card__header--underlined.pa-card__header--underline-color-7 h6 {
|
|
3020
|
+
border-bottom-color: var(--pa-color-7);
|
|
3021
|
+
}
|
|
3022
|
+
|
|
3023
|
+
.pa-card__header--underlined.pa-card__header--underline-color-8 h1, .pa-card__header--underlined.pa-card__header--underline-color-8 h2, .pa-card__header--underlined.pa-card__header--underline-color-8 h3, .pa-card__header--underlined.pa-card__header--underline-color-8 h4, .pa-card__header--underlined.pa-card__header--underline-color-8 h5, .pa-card__header--underlined.pa-card__header--underline-color-8 h6 {
|
|
3024
|
+
border-bottom-color: var(--pa-color-8);
|
|
3025
|
+
}
|
|
3026
|
+
|
|
3027
|
+
.pa-card__header--underlined.pa-card__header--underline-color-9 h1, .pa-card__header--underlined.pa-card__header--underline-color-9 h2, .pa-card__header--underlined.pa-card__header--underline-color-9 h3, .pa-card__header--underlined.pa-card__header--underline-color-9 h4, .pa-card__header--underlined.pa-card__header--underline-color-9 h5, .pa-card__header--underlined.pa-card__header--underline-color-9 h6 {
|
|
3028
|
+
border-bottom-color: var(--pa-color-9);
|
|
3029
|
+
}
|
|
3030
|
+
|
|
2971
3031
|
.pa-card__header--wrap {
|
|
2972
3032
|
flex-wrap: wrap;
|
|
2973
3033
|
}
|
|
@@ -3140,6 +3200,21 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3140
3200
|
border-top: none !important;
|
|
3141
3201
|
}
|
|
3142
3202
|
|
|
3203
|
+
.pa-card--live-up {
|
|
3204
|
+
background-color: rgba(40, 167, 69, 0.1);
|
|
3205
|
+
transition: background-color 0.3s ease;
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
.pa-card--live-down {
|
|
3209
|
+
background-color: rgba(220, 53, 69, 0.1);
|
|
3210
|
+
transition: background-color 0.3s ease;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
.pa-card--live-neutral {
|
|
3214
|
+
background-color: #ffffff;
|
|
3215
|
+
transition: background-color 0.3s ease;
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3143
3218
|
.pa-card--color-1 {
|
|
3144
3219
|
border-color: var(--pa-color-1);
|
|
3145
3220
|
}
|
|
@@ -3387,7 +3462,7 @@ a.pa-card p {
|
|
|
3387
3462
|
margin-bottom: 3.2rem;
|
|
3388
3463
|
}
|
|
3389
3464
|
|
|
3390
|
-
.pa-section h3 {
|
|
3465
|
+
.pa-section > h3 {
|
|
3391
3466
|
color: var(--pa-text-color-1);
|
|
3392
3467
|
margin-bottom: 1.6rem;
|
|
3393
3468
|
border-bottom: 2px solid var(--pa-accent);
|
|
@@ -3907,43 +3982,43 @@ a.pa-card p {
|
|
|
3907
3982
|
font-size: 1.4rem;
|
|
3908
3983
|
}
|
|
3909
3984
|
|
|
3910
|
-
.pa-stat--hero {
|
|
3985
|
+
.pa-stat--hero, .pa-stat--hero-compact {
|
|
3911
3986
|
display: block;
|
|
3912
3987
|
text-align: center;
|
|
3913
|
-
padding:
|
|
3988
|
+
padding: 0.8rem 0.8rem 1.2rem;
|
|
3914
3989
|
}
|
|
3915
3990
|
|
|
3916
|
-
.pa-stat--hero .pa-stat__label {
|
|
3917
|
-
font-size: 1.
|
|
3991
|
+
.pa-stat--hero .pa-stat__label, .pa-stat--hero-compact .pa-stat__label {
|
|
3992
|
+
font-size: 1.2rem;
|
|
3918
3993
|
text-transform: uppercase;
|
|
3919
3994
|
letter-spacing: 0.05em;
|
|
3920
|
-
font-weight:
|
|
3995
|
+
font-weight: 600;
|
|
3921
3996
|
color: var(--pa-text-color-2);
|
|
3922
|
-
margin-bottom: 0.
|
|
3997
|
+
margin-bottom: 0.4rem;
|
|
3923
3998
|
}
|
|
3924
3999
|
|
|
3925
|
-
.pa-stat--hero .pa-stat__value {
|
|
3926
|
-
font-size:
|
|
4000
|
+
.pa-stat--hero .pa-stat__value, .pa-stat--hero-compact .pa-stat__value {
|
|
4001
|
+
font-size: 4.48rem;
|
|
3927
4002
|
font-weight: 700;
|
|
3928
4003
|
color: var(--pa-text-color-1);
|
|
3929
|
-
line-height: 1
|
|
3930
|
-
margin-bottom: 0.
|
|
4004
|
+
line-height: 1;
|
|
4005
|
+
margin-bottom: 0.4rem;
|
|
3931
4006
|
}
|
|
3932
4007
|
|
|
3933
|
-
.pa-stat--hero .pa-stat__change {
|
|
4008
|
+
.pa-stat--hero .pa-stat__change, .pa-stat--hero-compact .pa-stat__change {
|
|
3934
4009
|
font-size: 1.2rem;
|
|
3935
|
-
font-weight:
|
|
4010
|
+
font-weight: 600;
|
|
3936
4011
|
}
|
|
3937
4012
|
|
|
3938
|
-
.pa-stat--hero .pa-stat__change--positive {
|
|
4013
|
+
.pa-stat--hero .pa-stat__change--positive, .pa-stat--hero-compact .pa-stat__change--positive {
|
|
3939
4014
|
color: #28a745;
|
|
3940
4015
|
}
|
|
3941
4016
|
|
|
3942
|
-
.pa-stat--hero .pa-stat__change--negative {
|
|
4017
|
+
.pa-stat--hero .pa-stat__change--negative, .pa-stat--hero-compact .pa-stat__change--negative {
|
|
3943
4018
|
color: #dc3545;
|
|
3944
4019
|
}
|
|
3945
4020
|
|
|
3946
|
-
.pa-stat--hero .pa-stat__change--neutral {
|
|
4021
|
+
.pa-stat--hero .pa-stat__change--neutral, .pa-stat--hero-compact .pa-stat__change--neutral {
|
|
3947
4022
|
color: var(--pa-text-color-2);
|
|
3948
4023
|
}
|
|
3949
4024
|
|
|
@@ -5219,6 +5294,8 @@ a.pa-card p {
|
|
|
5219
5294
|
.pa-btn--loading {
|
|
5220
5295
|
position: relative;
|
|
5221
5296
|
pointer-events: none;
|
|
5297
|
+
-webkit-text-fill-color: transparent;
|
|
5298
|
+
transition: none;
|
|
5222
5299
|
}
|
|
5223
5300
|
|
|
5224
5301
|
.pa-btn--loading .pa-btn__spinner {
|
|
@@ -13660,6 +13737,71 @@ code {
|
|
|
13660
13737
|
grid-column: 2;
|
|
13661
13738
|
}
|
|
13662
13739
|
}
|
|
13740
|
+
.pa-desc-table__copy {
|
|
13741
|
+
flex-shrink: 0;
|
|
13742
|
+
padding: 0.4rem;
|
|
13743
|
+
background: transparent;
|
|
13744
|
+
border: none;
|
|
13745
|
+
border-radius: 4px;
|
|
13746
|
+
cursor: pointer;
|
|
13747
|
+
transition: opacity 0.15s, background 0.15s;
|
|
13748
|
+
}
|
|
13749
|
+
|
|
13750
|
+
.pa-desc-table__copy:hover {
|
|
13751
|
+
opacity: 1;
|
|
13752
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13753
|
+
}
|
|
13754
|
+
|
|
13755
|
+
.pa-desc-table__value--copy-btn, .pa-desc-table__value--copy-hover {
|
|
13756
|
+
display: flex;
|
|
13757
|
+
align-items: center;
|
|
13758
|
+
gap: 0.8rem;
|
|
13759
|
+
}
|
|
13760
|
+
|
|
13761
|
+
.pa-desc-table__value--copy-btn .pa-desc-table__copy {
|
|
13762
|
+
opacity: 0.5;
|
|
13763
|
+
}
|
|
13764
|
+
|
|
13765
|
+
.pa-desc-table__value--copy-hover .pa-desc-table__copy {
|
|
13766
|
+
opacity: 0;
|
|
13767
|
+
}
|
|
13768
|
+
|
|
13769
|
+
.pa-desc-table__value--copy-hover:hover .pa-desc-table__copy {
|
|
13770
|
+
opacity: 0.5;
|
|
13771
|
+
}
|
|
13772
|
+
|
|
13773
|
+
.pa-desc-table__value--copy-hover:hover .pa-desc-table__copy:hover {
|
|
13774
|
+
opacity: 1;
|
|
13775
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13776
|
+
}
|
|
13777
|
+
|
|
13778
|
+
.pa-desc-table__value--copy-click {
|
|
13779
|
+
cursor: pointer;
|
|
13780
|
+
transition: opacity 0.15s;
|
|
13781
|
+
}
|
|
13782
|
+
|
|
13783
|
+
.pa-desc-table__value--copy-click:hover {
|
|
13784
|
+
opacity: 0.7;
|
|
13785
|
+
}
|
|
13786
|
+
|
|
13787
|
+
.pa-desc-table__value--copy-click::after {
|
|
13788
|
+
content: "Click to copy";
|
|
13789
|
+
font-size: 1rem;
|
|
13790
|
+
opacity: 0;
|
|
13791
|
+
margin-inline-start: 0.8rem;
|
|
13792
|
+
transition: opacity 0.15s;
|
|
13793
|
+
}
|
|
13794
|
+
|
|
13795
|
+
.pa-desc-table__value--copy-click:hover::after {
|
|
13796
|
+
opacity: 0.6;
|
|
13797
|
+
}
|
|
13798
|
+
|
|
13799
|
+
.pa-desc-table__value--copied::after {
|
|
13800
|
+
content: "Copied!" !important;
|
|
13801
|
+
opacity: 1 !important;
|
|
13802
|
+
color: var(--pa-color-4, #28a745);
|
|
13803
|
+
}
|
|
13804
|
+
|
|
13663
13805
|
.pa-dot-leaders {
|
|
13664
13806
|
display: flex;
|
|
13665
13807
|
flex-direction: column;
|
|
@@ -13761,6 +13903,57 @@ code {
|
|
|
13761
13903
|
font-weight: 700;
|
|
13762
13904
|
}
|
|
13763
13905
|
|
|
13906
|
+
.pa-prop-card__copy {
|
|
13907
|
+
flex-shrink: 0;
|
|
13908
|
+
padding: 0.4rem;
|
|
13909
|
+
background: transparent;
|
|
13910
|
+
border: none;
|
|
13911
|
+
border-radius: 4px;
|
|
13912
|
+
cursor: pointer;
|
|
13913
|
+
transition: opacity 0.15s, background 0.15s;
|
|
13914
|
+
}
|
|
13915
|
+
|
|
13916
|
+
.pa-prop-card__copy:hover {
|
|
13917
|
+
opacity: 1;
|
|
13918
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13919
|
+
}
|
|
13920
|
+
|
|
13921
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__value, .pa-prop-card__row--copy-hover .pa-prop-card__value {
|
|
13922
|
+
display: flex;
|
|
13923
|
+
align-items: center;
|
|
13924
|
+
gap: 0.8rem;
|
|
13925
|
+
}
|
|
13926
|
+
|
|
13927
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__copy, .pa-prop-card__row--copy-hover .pa-prop-card__copy {
|
|
13928
|
+
order: -1;
|
|
13929
|
+
}
|
|
13930
|
+
|
|
13931
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__copy {
|
|
13932
|
+
opacity: 0.5;
|
|
13933
|
+
}
|
|
13934
|
+
|
|
13935
|
+
.pa-prop-card__row--copy-hover .pa-prop-card__copy {
|
|
13936
|
+
opacity: 0;
|
|
13937
|
+
}
|
|
13938
|
+
|
|
13939
|
+
.pa-prop-card__row--copy-hover:hover .pa-prop-card__copy {
|
|
13940
|
+
opacity: 0.5;
|
|
13941
|
+
}
|
|
13942
|
+
|
|
13943
|
+
.pa-prop-card__row--copy-hover:hover .pa-prop-card__copy:hover {
|
|
13944
|
+
opacity: 1;
|
|
13945
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13946
|
+
}
|
|
13947
|
+
|
|
13948
|
+
.pa-prop-card__row--copy-click .pa-prop-card__value {
|
|
13949
|
+
cursor: pointer;
|
|
13950
|
+
transition: opacity 0.15s;
|
|
13951
|
+
}
|
|
13952
|
+
|
|
13953
|
+
.pa-prop-card__row--copy-click .pa-prop-card__value:hover {
|
|
13954
|
+
opacity: 0.7;
|
|
13955
|
+
}
|
|
13956
|
+
|
|
13764
13957
|
.pa-banded-container {
|
|
13765
13958
|
container-type: inline-size;
|
|
13766
13959
|
}
|
|
@@ -13857,6 +14050,69 @@ code {
|
|
|
13857
14050
|
display: block;
|
|
13858
14051
|
}
|
|
13859
14052
|
}
|
|
14053
|
+
.pa-banded__copy {
|
|
14054
|
+
flex-shrink: 0;
|
|
14055
|
+
padding: 0.4rem;
|
|
14056
|
+
background: transparent;
|
|
14057
|
+
border: none;
|
|
14058
|
+
border-radius: 4px;
|
|
14059
|
+
cursor: pointer;
|
|
14060
|
+
transition: opacity 0.15s, background 0.15s;
|
|
14061
|
+
}
|
|
14062
|
+
|
|
14063
|
+
.pa-banded__copy:hover {
|
|
14064
|
+
opacity: 1;
|
|
14065
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14066
|
+
}
|
|
14067
|
+
|
|
14068
|
+
.pa-banded__row--copy-btn .pa-banded__value, .pa-banded__row--copy-hover .pa-banded__value {
|
|
14069
|
+
gap: 0.8rem;
|
|
14070
|
+
}
|
|
14071
|
+
|
|
14072
|
+
.pa-banded__row--copy-btn .pa-banded__copy {
|
|
14073
|
+
opacity: 0.5;
|
|
14074
|
+
}
|
|
14075
|
+
|
|
14076
|
+
.pa-banded__row--copy-hover .pa-banded__copy {
|
|
14077
|
+
opacity: 0;
|
|
14078
|
+
}
|
|
14079
|
+
|
|
14080
|
+
.pa-banded__row--copy-hover:hover .pa-banded__copy {
|
|
14081
|
+
opacity: 0.5;
|
|
14082
|
+
}
|
|
14083
|
+
|
|
14084
|
+
.pa-banded__row--copy-hover:hover .pa-banded__copy:hover {
|
|
14085
|
+
opacity: 1;
|
|
14086
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14087
|
+
}
|
|
14088
|
+
|
|
14089
|
+
.pa-banded__row--copy-click .pa-banded__value {
|
|
14090
|
+
cursor: pointer;
|
|
14091
|
+
transition: opacity 0.15s;
|
|
14092
|
+
}
|
|
14093
|
+
|
|
14094
|
+
.pa-banded__row--copy-click .pa-banded__value:hover {
|
|
14095
|
+
opacity: 0.7;
|
|
14096
|
+
}
|
|
14097
|
+
|
|
14098
|
+
.pa-banded__row--copy-click .pa-banded__value::after {
|
|
14099
|
+
content: "Click to copy";
|
|
14100
|
+
font-size: 1rem;
|
|
14101
|
+
opacity: 0;
|
|
14102
|
+
margin-inline-start: 0.8rem;
|
|
14103
|
+
transition: opacity 0.15s;
|
|
14104
|
+
}
|
|
14105
|
+
|
|
14106
|
+
.pa-banded__row--copy-click .pa-banded__value:hover::after {
|
|
14107
|
+
opacity: 0.6;
|
|
14108
|
+
}
|
|
14109
|
+
|
|
14110
|
+
.pa-banded__row--copied .pa-banded__value::after {
|
|
14111
|
+
content: "Copied!" !important;
|
|
14112
|
+
opacity: 1 !important;
|
|
14113
|
+
color: var(--pa-color-4, #28a745);
|
|
14114
|
+
}
|
|
14115
|
+
|
|
13860
14116
|
.pa-accent-grid {
|
|
13861
14117
|
display: grid;
|
|
13862
14118
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
@@ -13901,6 +14157,687 @@ code {
|
|
|
13901
14157
|
line-height: 1.2;
|
|
13902
14158
|
}
|
|
13903
14159
|
|
|
14160
|
+
.pa-accent-grid__copy {
|
|
14161
|
+
flex-shrink: 0;
|
|
14162
|
+
padding: 0.4rem;
|
|
14163
|
+
background: transparent;
|
|
14164
|
+
border: none;
|
|
14165
|
+
border-radius: 4px;
|
|
14166
|
+
cursor: pointer;
|
|
14167
|
+
transition: opacity 0.15s, background 0.15s;
|
|
14168
|
+
}
|
|
14169
|
+
|
|
14170
|
+
.pa-accent-grid__copy:hover {
|
|
14171
|
+
opacity: 1;
|
|
14172
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14173
|
+
}
|
|
14174
|
+
|
|
14175
|
+
.pa-accent-grid__item--copy-btn .pa-accent-grid__value, .pa-accent-grid__item--copy-hover .pa-accent-grid__value {
|
|
14176
|
+
display: flex;
|
|
14177
|
+
align-items: center;
|
|
14178
|
+
gap: 0.8rem;
|
|
14179
|
+
}
|
|
14180
|
+
|
|
14181
|
+
.pa-accent-grid__item--copy-btn .pa-accent-grid__copy {
|
|
14182
|
+
opacity: 0.5;
|
|
14183
|
+
}
|
|
14184
|
+
|
|
14185
|
+
.pa-accent-grid__item--copy-hover .pa-accent-grid__copy {
|
|
14186
|
+
opacity: 0;
|
|
14187
|
+
}
|
|
14188
|
+
|
|
14189
|
+
.pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy {
|
|
14190
|
+
opacity: 0.5;
|
|
14191
|
+
}
|
|
14192
|
+
|
|
14193
|
+
.pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy:hover {
|
|
14194
|
+
opacity: 1;
|
|
14195
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14196
|
+
}
|
|
14197
|
+
|
|
14198
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value {
|
|
14199
|
+
cursor: pointer;
|
|
14200
|
+
transition: opacity 0.15s;
|
|
14201
|
+
}
|
|
14202
|
+
|
|
14203
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value:hover {
|
|
14204
|
+
opacity: 0.7;
|
|
14205
|
+
}
|
|
14206
|
+
|
|
14207
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value::after {
|
|
14208
|
+
content: "Click to copy";
|
|
14209
|
+
font-size: 1rem;
|
|
14210
|
+
opacity: 0;
|
|
14211
|
+
margin-inline-start: 0.8rem;
|
|
14212
|
+
transition: opacity 0.15s;
|
|
14213
|
+
}
|
|
14214
|
+
|
|
14215
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value:hover::after {
|
|
14216
|
+
opacity: 0.6;
|
|
14217
|
+
}
|
|
14218
|
+
|
|
14219
|
+
.pa-accent-grid__item--copied .pa-accent-grid__value::after {
|
|
14220
|
+
content: "Copied!" !important;
|
|
14221
|
+
opacity: 1 !important;
|
|
14222
|
+
color: var(--pa-color-4, #28a745);
|
|
14223
|
+
}
|
|
14224
|
+
|
|
14225
|
+
/* ========================================
|
|
14226
|
+
Data Visualization Components
|
|
14227
|
+
Progress bars, rings, gauges, heatmaps, sparklines
|
|
14228
|
+
======================================== */
|
|
14229
|
+
.pa-progress {
|
|
14230
|
+
width: 100%;
|
|
14231
|
+
height: 0.8rem;
|
|
14232
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14233
|
+
border-radius: 4px;
|
|
14234
|
+
overflow: hidden;
|
|
14235
|
+
position: relative;
|
|
14236
|
+
}
|
|
14237
|
+
|
|
14238
|
+
.pa-progress__fill {
|
|
14239
|
+
height: 100%;
|
|
14240
|
+
width: var(--value, 0%);
|
|
14241
|
+
background: #007bff;
|
|
14242
|
+
border-radius: inherit;
|
|
14243
|
+
transition: width 0.25s ease;
|
|
14244
|
+
}
|
|
14245
|
+
|
|
14246
|
+
.pa-progress__label {
|
|
14247
|
+
display: flex;
|
|
14248
|
+
justify-content: space-between;
|
|
14249
|
+
margin-bottom: 0.4rem;
|
|
14250
|
+
font-size: 1.2rem;
|
|
14251
|
+
font-weight: 500;
|
|
14252
|
+
color: var(--pa-text-color-1);
|
|
14253
|
+
}
|
|
14254
|
+
|
|
14255
|
+
.pa-progress__label-value {
|
|
14256
|
+
color: var(--pa-text-color-2);
|
|
14257
|
+
}
|
|
14258
|
+
|
|
14259
|
+
.pa-progress--xs {
|
|
14260
|
+
height: 0.3rem;
|
|
14261
|
+
}
|
|
14262
|
+
|
|
14263
|
+
.pa-progress--sm {
|
|
14264
|
+
height: 0.5rem;
|
|
14265
|
+
}
|
|
14266
|
+
|
|
14267
|
+
.pa-progress--lg {
|
|
14268
|
+
height: 1.2rem;
|
|
14269
|
+
}
|
|
14270
|
+
|
|
14271
|
+
.pa-progress--success > .pa-progress__fill {
|
|
14272
|
+
background: #28a745;
|
|
14273
|
+
}
|
|
14274
|
+
|
|
14275
|
+
.pa-progress--warning > .pa-progress__fill {
|
|
14276
|
+
background: #ffc107;
|
|
14277
|
+
}
|
|
14278
|
+
|
|
14279
|
+
.pa-progress--danger > .pa-progress__fill {
|
|
14280
|
+
background: #dc3545;
|
|
14281
|
+
}
|
|
14282
|
+
|
|
14283
|
+
.pa-progress--info > .pa-progress__fill {
|
|
14284
|
+
background: #17a2b8;
|
|
14285
|
+
}
|
|
14286
|
+
|
|
14287
|
+
.pa-progress--rounded {
|
|
14288
|
+
border-radius: 50rem;
|
|
14289
|
+
}
|
|
14290
|
+
|
|
14291
|
+
.pa-progress--striped > .pa-progress__fill {
|
|
14292
|
+
background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%);
|
|
14293
|
+
background-size: 1.6rem 1.6rem;
|
|
14294
|
+
}
|
|
14295
|
+
|
|
14296
|
+
.pa-progress--animated > .pa-progress__fill {
|
|
14297
|
+
animation: pa-progress-stripe 1s linear infinite;
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14300
|
+
@keyframes pa-progress-stripe {
|
|
14301
|
+
0% {
|
|
14302
|
+
background-position: 1.6rem 0;
|
|
14303
|
+
}
|
|
14304
|
+
100% {
|
|
14305
|
+
background-position: 0 0;
|
|
14306
|
+
}
|
|
14307
|
+
}
|
|
14308
|
+
.pa-progress-group {
|
|
14309
|
+
display: flex;
|
|
14310
|
+
flex-direction: column;
|
|
14311
|
+
gap: 0.4rem;
|
|
14312
|
+
}
|
|
14313
|
+
|
|
14314
|
+
.pa-stacked-bar {
|
|
14315
|
+
display: flex;
|
|
14316
|
+
width: 100%;
|
|
14317
|
+
height: 1.2rem;
|
|
14318
|
+
border-radius: 4px;
|
|
14319
|
+
overflow: hidden;
|
|
14320
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14321
|
+
}
|
|
14322
|
+
|
|
14323
|
+
.pa-stacked-bar__segment {
|
|
14324
|
+
height: 100%;
|
|
14325
|
+
width: var(--value, 0%);
|
|
14326
|
+
transition: width 0.25s ease;
|
|
14327
|
+
background: #007bff;
|
|
14328
|
+
}
|
|
14329
|
+
|
|
14330
|
+
.pa-stacked-bar__segment--success {
|
|
14331
|
+
background: #28a745;
|
|
14332
|
+
}
|
|
14333
|
+
|
|
14334
|
+
.pa-stacked-bar__segment--warning {
|
|
14335
|
+
background: #ffc107;
|
|
14336
|
+
}
|
|
14337
|
+
|
|
14338
|
+
.pa-stacked-bar__segment--danger {
|
|
14339
|
+
background: #dc3545;
|
|
14340
|
+
}
|
|
14341
|
+
|
|
14342
|
+
.pa-stacked-bar__segment--info {
|
|
14343
|
+
background: #17a2b8;
|
|
14344
|
+
}
|
|
14345
|
+
|
|
14346
|
+
.pa-stacked-bar__segment--secondary {
|
|
14347
|
+
background: #6c757d;
|
|
14348
|
+
}
|
|
14349
|
+
|
|
14350
|
+
.pa-stacked-bar__legend {
|
|
14351
|
+
display: flex;
|
|
14352
|
+
flex-wrap: wrap;
|
|
14353
|
+
gap: 1.6rem;
|
|
14354
|
+
margin-top: 0.8rem;
|
|
14355
|
+
}
|
|
14356
|
+
|
|
14357
|
+
.pa-stacked-bar__legend-item {
|
|
14358
|
+
display: flex;
|
|
14359
|
+
align-items: center;
|
|
14360
|
+
gap: 0.4rem;
|
|
14361
|
+
font-size: 1.2rem;
|
|
14362
|
+
color: var(--pa-text-color-2);
|
|
14363
|
+
}
|
|
14364
|
+
|
|
14365
|
+
.pa-stacked-bar__legend-swatch {
|
|
14366
|
+
width: 1rem;
|
|
14367
|
+
height: 1rem;
|
|
14368
|
+
border-radius: 2px;
|
|
14369
|
+
flex-shrink: 0;
|
|
14370
|
+
}
|
|
14371
|
+
|
|
14372
|
+
.pa-stacked-bar__legend-swatch--primary {
|
|
14373
|
+
background: #007bff;
|
|
14374
|
+
}
|
|
14375
|
+
|
|
14376
|
+
.pa-stacked-bar__legend-swatch--success {
|
|
14377
|
+
background: #28a745;
|
|
14378
|
+
}
|
|
14379
|
+
|
|
14380
|
+
.pa-stacked-bar__legend-swatch--warning {
|
|
14381
|
+
background: #ffc107;
|
|
14382
|
+
}
|
|
14383
|
+
|
|
14384
|
+
.pa-stacked-bar__legend-swatch--danger {
|
|
14385
|
+
background: #dc3545;
|
|
14386
|
+
}
|
|
14387
|
+
|
|
14388
|
+
.pa-stacked-bar__legend-swatch--info {
|
|
14389
|
+
background: #17a2b8;
|
|
14390
|
+
}
|
|
14391
|
+
|
|
14392
|
+
.pa-stacked-bar__legend-swatch--secondary {
|
|
14393
|
+
background: #6c757d;
|
|
14394
|
+
}
|
|
14395
|
+
|
|
14396
|
+
.pa-stacked-bar--sm {
|
|
14397
|
+
height: 0.5rem;
|
|
14398
|
+
}
|
|
14399
|
+
|
|
14400
|
+
.pa-stacked-bar--lg {
|
|
14401
|
+
height: 1.2rem;
|
|
14402
|
+
}
|
|
14403
|
+
|
|
14404
|
+
.pa-stacked-bar--rounded {
|
|
14405
|
+
border-radius: 50rem;
|
|
14406
|
+
}
|
|
14407
|
+
|
|
14408
|
+
.pa-progress-ring {
|
|
14409
|
+
width: 8rem;
|
|
14410
|
+
height: 8rem;
|
|
14411
|
+
border-radius: 50%;
|
|
14412
|
+
background: conic-gradient(#007bff calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14413
|
+
display: flex;
|
|
14414
|
+
align-items: center;
|
|
14415
|
+
justify-content: center;
|
|
14416
|
+
flex-shrink: 0;
|
|
14417
|
+
}
|
|
14418
|
+
|
|
14419
|
+
.pa-progress-ring__inner {
|
|
14420
|
+
width: 70%;
|
|
14421
|
+
height: 70%;
|
|
14422
|
+
border-radius: 50%;
|
|
14423
|
+
background: #ffffff;
|
|
14424
|
+
display: flex;
|
|
14425
|
+
flex-direction: column;
|
|
14426
|
+
align-items: center;
|
|
14427
|
+
justify-content: center;
|
|
14428
|
+
}
|
|
14429
|
+
|
|
14430
|
+
.pa-progress-ring__value {
|
|
14431
|
+
font-size: 1.8rem;
|
|
14432
|
+
font-weight: 700;
|
|
14433
|
+
line-height: 1;
|
|
14434
|
+
color: var(--pa-text-color-1);
|
|
14435
|
+
}
|
|
14436
|
+
|
|
14437
|
+
.pa-progress-ring__label {
|
|
14438
|
+
font-size: 1rem;
|
|
14439
|
+
color: var(--pa-text-color-2);
|
|
14440
|
+
margin-top: 0.4rem;
|
|
14441
|
+
}
|
|
14442
|
+
|
|
14443
|
+
.pa-progress-ring--sm {
|
|
14444
|
+
width: 5rem;
|
|
14445
|
+
height: 5rem;
|
|
14446
|
+
}
|
|
14447
|
+
|
|
14448
|
+
.pa-progress-ring--sm .pa-progress-ring__value {
|
|
14449
|
+
font-size: 1.6rem;
|
|
14450
|
+
}
|
|
14451
|
+
|
|
14452
|
+
.pa-progress-ring--sm .pa-progress-ring__label {
|
|
14453
|
+
font-size: 1rem;
|
|
14454
|
+
}
|
|
14455
|
+
|
|
14456
|
+
.pa-progress-ring--lg {
|
|
14457
|
+
width: 11rem;
|
|
14458
|
+
height: 11rem;
|
|
14459
|
+
}
|
|
14460
|
+
|
|
14461
|
+
.pa-progress-ring--lg .pa-progress-ring__value {
|
|
14462
|
+
font-size: 2.4rem;
|
|
14463
|
+
}
|
|
14464
|
+
|
|
14465
|
+
.pa-progress-ring--lg .pa-progress-ring__label {
|
|
14466
|
+
font-size: 1.2rem;
|
|
14467
|
+
}
|
|
14468
|
+
|
|
14469
|
+
.pa-progress-ring--success {
|
|
14470
|
+
background: conic-gradient(#28a745 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14471
|
+
}
|
|
14472
|
+
|
|
14473
|
+
.pa-progress-ring--warning {
|
|
14474
|
+
background: conic-gradient(#ffc107 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14475
|
+
}
|
|
14476
|
+
|
|
14477
|
+
.pa-progress-ring--danger {
|
|
14478
|
+
background: conic-gradient(#dc3545 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14479
|
+
}
|
|
14480
|
+
|
|
14481
|
+
.pa-progress-ring--info {
|
|
14482
|
+
background: conic-gradient(#17a2b8 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14483
|
+
}
|
|
14484
|
+
|
|
14485
|
+
.pa-gauge {
|
|
14486
|
+
width: 12rem;
|
|
14487
|
+
height: calc(12rem / 2);
|
|
14488
|
+
border-radius: 12rem 12rem 0 0;
|
|
14489
|
+
overflow: hidden;
|
|
14490
|
+
background: conic-gradient(from 0.75turn, #007bff calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14491
|
+
position: relative;
|
|
14492
|
+
flex-shrink: 0;
|
|
14493
|
+
}
|
|
14494
|
+
|
|
14495
|
+
.pa-gauge__inner {
|
|
14496
|
+
position: absolute;
|
|
14497
|
+
bottom: 0;
|
|
14498
|
+
left: 15%;
|
|
14499
|
+
right: 15%;
|
|
14500
|
+
height: 70%;
|
|
14501
|
+
border-radius: 12rem 12rem 0 0;
|
|
14502
|
+
background: #ffffff;
|
|
14503
|
+
display: flex;
|
|
14504
|
+
flex-direction: column;
|
|
14505
|
+
align-items: center;
|
|
14506
|
+
justify-content: flex-end;
|
|
14507
|
+
padding-bottom: 0.4rem;
|
|
14508
|
+
}
|
|
14509
|
+
|
|
14510
|
+
.pa-gauge__value {
|
|
14511
|
+
font-size: 2.4rem;
|
|
14512
|
+
font-weight: 700;
|
|
14513
|
+
line-height: 1;
|
|
14514
|
+
color: var(--pa-text-color-1);
|
|
14515
|
+
}
|
|
14516
|
+
|
|
14517
|
+
.pa-gauge__label {
|
|
14518
|
+
font-size: 1.2rem;
|
|
14519
|
+
color: var(--pa-text-color-2);
|
|
14520
|
+
margin-top: 0.4rem;
|
|
14521
|
+
}
|
|
14522
|
+
|
|
14523
|
+
.pa-gauge__min, .pa-gauge__max {
|
|
14524
|
+
position: absolute;
|
|
14525
|
+
bottom: 0;
|
|
14526
|
+
font-size: 1rem;
|
|
14527
|
+
color: var(--pa-text-color-2);
|
|
14528
|
+
}
|
|
14529
|
+
|
|
14530
|
+
.pa-gauge__min {
|
|
14531
|
+
left: 0;
|
|
14532
|
+
}
|
|
14533
|
+
|
|
14534
|
+
.pa-gauge__max {
|
|
14535
|
+
right: 0;
|
|
14536
|
+
}
|
|
14537
|
+
|
|
14538
|
+
.pa-gauge--success {
|
|
14539
|
+
background: conic-gradient(from 0.75turn, #28a745 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14540
|
+
}
|
|
14541
|
+
|
|
14542
|
+
.pa-gauge--warning {
|
|
14543
|
+
background: conic-gradient(from 0.75turn, #ffc107 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14544
|
+
}
|
|
14545
|
+
|
|
14546
|
+
.pa-gauge--danger {
|
|
14547
|
+
background: conic-gradient(from 0.75turn, #dc3545 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14548
|
+
}
|
|
14549
|
+
|
|
14550
|
+
.pa-gauge--info {
|
|
14551
|
+
background: conic-gradient(from 0.75turn, #17a2b8 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14552
|
+
}
|
|
14553
|
+
|
|
14554
|
+
.pa-gauge--zones {
|
|
14555
|
+
background: conic-gradient(from 0.75turn, #28a745 0deg, #28a745 90deg, #ffc107 90deg, #ffc107 135deg, #dc3545 135deg, #dc3545 180deg, rgba(0, 0, 0, 0.08) 180deg);
|
|
14556
|
+
}
|
|
14557
|
+
|
|
14558
|
+
.pa-data-bar {
|
|
14559
|
+
display: flex;
|
|
14560
|
+
flex-direction: column;
|
|
14561
|
+
gap: 0.4rem;
|
|
14562
|
+
min-width: 6rem;
|
|
14563
|
+
}
|
|
14564
|
+
|
|
14565
|
+
.pa-data-bar__value {
|
|
14566
|
+
font-size: 1.4rem;
|
|
14567
|
+
font-weight: 500;
|
|
14568
|
+
color: var(--pa-text-color-1);
|
|
14569
|
+
line-height: 1;
|
|
14570
|
+
}
|
|
14571
|
+
|
|
14572
|
+
.pa-data-bar__track {
|
|
14573
|
+
width: 100%;
|
|
14574
|
+
height: 0.4rem;
|
|
14575
|
+
background: rgba(0, 0, 0, 0.06);
|
|
14576
|
+
border-radius: 2px;
|
|
14577
|
+
overflow: hidden;
|
|
14578
|
+
}
|
|
14579
|
+
|
|
14580
|
+
.pa-data-bar__fill {
|
|
14581
|
+
height: 100%;
|
|
14582
|
+
width: var(--value, 0%);
|
|
14583
|
+
background: #007bff;
|
|
14584
|
+
border-radius: inherit;
|
|
14585
|
+
transition: width 0.25s ease;
|
|
14586
|
+
}
|
|
14587
|
+
|
|
14588
|
+
.pa-data-bar--success .pa-data-bar__fill {
|
|
14589
|
+
background: #28a745;
|
|
14590
|
+
}
|
|
14591
|
+
|
|
14592
|
+
.pa-data-bar--warning .pa-data-bar__fill {
|
|
14593
|
+
background: #ffc107;
|
|
14594
|
+
}
|
|
14595
|
+
|
|
14596
|
+
.pa-data-bar--danger .pa-data-bar__fill {
|
|
14597
|
+
background: #dc3545;
|
|
14598
|
+
}
|
|
14599
|
+
|
|
14600
|
+
.pa-data-bar--info .pa-data-bar__fill {
|
|
14601
|
+
background: #17a2b8;
|
|
14602
|
+
}
|
|
14603
|
+
|
|
14604
|
+
.pa-data-bar--negative .pa-data-bar__fill {
|
|
14605
|
+
background: #dc3545;
|
|
14606
|
+
margin-inline-start: auto;
|
|
14607
|
+
}
|
|
14608
|
+
|
|
14609
|
+
.pa-heatmap {
|
|
14610
|
+
display: inline-grid;
|
|
14611
|
+
grid-template-columns: repeat(53, 1.2rem);
|
|
14612
|
+
grid-auto-rows: 1.2rem;
|
|
14613
|
+
gap: 0.2rem;
|
|
14614
|
+
}
|
|
14615
|
+
|
|
14616
|
+
.pa-heatmap__cell {
|
|
14617
|
+
border-radius: 2px;
|
|
14618
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14619
|
+
}
|
|
14620
|
+
|
|
14621
|
+
.pa-heatmap__cell[data-level="1"] {
|
|
14622
|
+
background: rgba(0, 123, 255, 0.2);
|
|
14623
|
+
}
|
|
14624
|
+
|
|
14625
|
+
.pa-heatmap__cell[data-level="2"] {
|
|
14626
|
+
background: rgba(0, 123, 255, 0.4);
|
|
14627
|
+
}
|
|
14628
|
+
|
|
14629
|
+
.pa-heatmap__cell[data-level="3"] {
|
|
14630
|
+
background: rgba(0, 123, 255, 0.65);
|
|
14631
|
+
}
|
|
14632
|
+
|
|
14633
|
+
.pa-heatmap__cell[data-level="4"] {
|
|
14634
|
+
background: #007bff;
|
|
14635
|
+
}
|
|
14636
|
+
|
|
14637
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="1"] {
|
|
14638
|
+
background: rgba(40, 167, 69, 0.2);
|
|
14639
|
+
}
|
|
14640
|
+
|
|
14641
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="2"] {
|
|
14642
|
+
background: rgba(40, 167, 69, 0.4);
|
|
14643
|
+
}
|
|
14644
|
+
|
|
14645
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="3"] {
|
|
14646
|
+
background: rgba(40, 167, 69, 0.65);
|
|
14647
|
+
}
|
|
14648
|
+
|
|
14649
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="4"] {
|
|
14650
|
+
background: #28a745;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="1"] {
|
|
14654
|
+
background: rgba(220, 53, 69, 0.2);
|
|
14655
|
+
}
|
|
14656
|
+
|
|
14657
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="2"] {
|
|
14658
|
+
background: rgba(220, 53, 69, 0.4);
|
|
14659
|
+
}
|
|
14660
|
+
|
|
14661
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="3"] {
|
|
14662
|
+
background: rgba(220, 53, 69, 0.65);
|
|
14663
|
+
}
|
|
14664
|
+
|
|
14665
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="4"] {
|
|
14666
|
+
background: #dc3545;
|
|
14667
|
+
}
|
|
14668
|
+
|
|
14669
|
+
.pa-heatmap__legend {
|
|
14670
|
+
display: flex;
|
|
14671
|
+
align-items: center;
|
|
14672
|
+
gap: 0.4rem;
|
|
14673
|
+
margin-top: 0.8rem;
|
|
14674
|
+
font-size: 1.2rem;
|
|
14675
|
+
color: var(--pa-text-color-2);
|
|
14676
|
+
}
|
|
14677
|
+
|
|
14678
|
+
.pa-heatmap__legend-cell {
|
|
14679
|
+
width: 1.2rem;
|
|
14680
|
+
height: 1.2rem;
|
|
14681
|
+
border-radius: 2px;
|
|
14682
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14683
|
+
}
|
|
14684
|
+
|
|
14685
|
+
.pa-heatmap__legend-cell[data-level="1"] {
|
|
14686
|
+
background: rgba(0, 123, 255, 0.2);
|
|
14687
|
+
}
|
|
14688
|
+
|
|
14689
|
+
.pa-heatmap__legend-cell[data-level="2"] {
|
|
14690
|
+
background: rgba(0, 123, 255, 0.4);
|
|
14691
|
+
}
|
|
14692
|
+
|
|
14693
|
+
.pa-heatmap__legend-cell[data-level="3"] {
|
|
14694
|
+
background: rgba(0, 123, 255, 0.65);
|
|
14695
|
+
}
|
|
14696
|
+
|
|
14697
|
+
.pa-heatmap__legend-cell[data-level="4"] {
|
|
14698
|
+
background: #007bff;
|
|
14699
|
+
}
|
|
14700
|
+
|
|
14701
|
+
.pa-heatmap--compact {
|
|
14702
|
+
grid-template-columns: repeat(53, 1rem);
|
|
14703
|
+
grid-auto-rows: 1rem;
|
|
14704
|
+
gap: 0.1rem;
|
|
14705
|
+
}
|
|
14706
|
+
|
|
14707
|
+
.pa-heatmap--compact .pa-heatmap__cell {
|
|
14708
|
+
border-radius: 1px;
|
|
14709
|
+
}
|
|
14710
|
+
|
|
14711
|
+
.pa-sparkline {
|
|
14712
|
+
display: inline-flex;
|
|
14713
|
+
align-items: flex-end;
|
|
14714
|
+
gap: 0.2rem;
|
|
14715
|
+
height: 3rem;
|
|
14716
|
+
}
|
|
14717
|
+
|
|
14718
|
+
.pa-sparkline__bar {
|
|
14719
|
+
width: 0.3rem;
|
|
14720
|
+
height: var(--value, 50%);
|
|
14721
|
+
background: #007bff;
|
|
14722
|
+
border-radius: 2px 2px 0 0;
|
|
14723
|
+
transition: height 0.25s ease;
|
|
14724
|
+
min-height: 1px;
|
|
14725
|
+
}
|
|
14726
|
+
|
|
14727
|
+
.pa-sparkline--success .pa-sparkline__bar {
|
|
14728
|
+
background: #28a745;
|
|
14729
|
+
}
|
|
14730
|
+
|
|
14731
|
+
.pa-sparkline--warning .pa-sparkline__bar {
|
|
14732
|
+
background: #ffc107;
|
|
14733
|
+
}
|
|
14734
|
+
|
|
14735
|
+
.pa-sparkline--danger .pa-sparkline__bar {
|
|
14736
|
+
background: #dc3545;
|
|
14737
|
+
}
|
|
14738
|
+
|
|
14739
|
+
.pa-sparkline--info .pa-sparkline__bar {
|
|
14740
|
+
background: #17a2b8;
|
|
14741
|
+
}
|
|
14742
|
+
|
|
14743
|
+
.pa-sparkline--sm {
|
|
14744
|
+
height: 2rem;
|
|
14745
|
+
}
|
|
14746
|
+
|
|
14747
|
+
.pa-sparkline--lg {
|
|
14748
|
+
height: 4.8rem;
|
|
14749
|
+
}
|
|
14750
|
+
|
|
14751
|
+
.pa-sparkline--lg .pa-sparkline__bar {
|
|
14752
|
+
width: 0.4rem;
|
|
14753
|
+
}
|
|
14754
|
+
|
|
14755
|
+
.pa-bar-list {
|
|
14756
|
+
display: flex;
|
|
14757
|
+
flex-direction: column;
|
|
14758
|
+
gap: 1.6rem;
|
|
14759
|
+
}
|
|
14760
|
+
|
|
14761
|
+
.pa-bar-list__item {
|
|
14762
|
+
display: flex;
|
|
14763
|
+
flex-direction: column;
|
|
14764
|
+
gap: 0.4rem;
|
|
14765
|
+
}
|
|
14766
|
+
|
|
14767
|
+
.pa-bar-list__header {
|
|
14768
|
+
display: flex;
|
|
14769
|
+
justify-content: space-between;
|
|
14770
|
+
align-items: baseline;
|
|
14771
|
+
gap: 0.8rem;
|
|
14772
|
+
}
|
|
14773
|
+
|
|
14774
|
+
.pa-bar-list__label {
|
|
14775
|
+
font-size: 1.4rem;
|
|
14776
|
+
color: var(--pa-text-color-1);
|
|
14777
|
+
min-width: 0;
|
|
14778
|
+
overflow: hidden;
|
|
14779
|
+
text-overflow: ellipsis;
|
|
14780
|
+
white-space: nowrap;
|
|
14781
|
+
}
|
|
14782
|
+
|
|
14783
|
+
.pa-bar-list__value {
|
|
14784
|
+
font-size: 1.4rem;
|
|
14785
|
+
font-weight: 600;
|
|
14786
|
+
color: var(--pa-text-color-1);
|
|
14787
|
+
flex-shrink: 0;
|
|
14788
|
+
}
|
|
14789
|
+
|
|
14790
|
+
.pa-bar-list__bar {
|
|
14791
|
+
width: 100%;
|
|
14792
|
+
height: 0.4rem;
|
|
14793
|
+
background: rgba(0, 0, 0, 0.06);
|
|
14794
|
+
border-radius: 2px;
|
|
14795
|
+
overflow: hidden;
|
|
14796
|
+
}
|
|
14797
|
+
|
|
14798
|
+
.pa-bar-list__bar::after {
|
|
14799
|
+
content: "";
|
|
14800
|
+
display: block;
|
|
14801
|
+
height: 100%;
|
|
14802
|
+
width: var(--value, 0%);
|
|
14803
|
+
background: #007bff;
|
|
14804
|
+
border-radius: inherit;
|
|
14805
|
+
transition: width 0.25s ease;
|
|
14806
|
+
}
|
|
14807
|
+
|
|
14808
|
+
.pa-bar-list--success .pa-bar-list__bar::after {
|
|
14809
|
+
background: #28a745;
|
|
14810
|
+
}
|
|
14811
|
+
|
|
14812
|
+
.pa-bar-list--warning .pa-bar-list__bar::after {
|
|
14813
|
+
background: #ffc107;
|
|
14814
|
+
}
|
|
14815
|
+
|
|
14816
|
+
.pa-bar-list--danger .pa-bar-list__bar::after {
|
|
14817
|
+
background: #dc3545;
|
|
14818
|
+
}
|
|
14819
|
+
|
|
14820
|
+
.pa-bar-list--info .pa-bar-list__bar::after {
|
|
14821
|
+
background: #17a2b8;
|
|
14822
|
+
}
|
|
14823
|
+
|
|
14824
|
+
.pa-bar-list--compact {
|
|
14825
|
+
gap: 0.8rem;
|
|
14826
|
+
}
|
|
14827
|
+
|
|
14828
|
+
.pa-bar-list--compact .pa-bar-list__item {
|
|
14829
|
+
gap: 0.2rem;
|
|
14830
|
+
}
|
|
14831
|
+
|
|
14832
|
+
.pa-bar-list--compact .pa-bar-list__label,
|
|
14833
|
+
.pa-bar-list--compact .pa-bar-list__value {
|
|
14834
|
+
font-size: 1.2rem;
|
|
14835
|
+
}
|
|
14836
|
+
|
|
14837
|
+
.pa-bar-list--compact .pa-bar-list__bar {
|
|
14838
|
+
height: 0.3rem;
|
|
14839
|
+
}
|
|
14840
|
+
|
|
13904
14841
|
/* ========================================
|
|
13905
14842
|
Utility Components
|
|
13906
14843
|
Font utilities, compact mode, component showcase
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-express",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Express theme for Pure Admin",
|
|
5
5
|
"style": "dist/express.css",
|
|
6
6
|
"exports": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/KeenMate/pure-admin#readme",
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@keenmate/pure-admin-core": "^
|
|
36
|
+
"@keenmate/pure-admin-core": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@keenmate/pure-admin-core": "^
|
|
39
|
+
"@keenmate/pure-admin-core": "^2.0.0",
|
|
40
40
|
"sass": "^1.70.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|