@keenmate/pure-admin-theme-dark 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/dark.css +957 -20
- package/package.json +3 -3
package/dist/dark.css
CHANGED
|
@@ -309,6 +309,7 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
309
309
|
.pa-layout__main {
|
|
310
310
|
flex: 1;
|
|
311
311
|
padding: 1.6rem;
|
|
312
|
+
container-type: inline-size;
|
|
312
313
|
}
|
|
313
314
|
|
|
314
315
|
.pa-layout__footer {
|
|
@@ -1113,6 +1114,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1113
1114
|
display: flex;
|
|
1114
1115
|
flex-wrap: wrap;
|
|
1115
1116
|
margin-inline: -0.8rem;
|
|
1117
|
+
row-gap: 0.8rem;
|
|
1116
1118
|
}
|
|
1117
1119
|
|
|
1118
1120
|
.pa-row .pa-row {
|
|
@@ -1496,7 +1498,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1496
1498
|
margin-inline-start: 95%;
|
|
1497
1499
|
}
|
|
1498
1500
|
|
|
1499
|
-
@
|
|
1501
|
+
@container (min-width: 576px) {
|
|
1500
1502
|
.pa-col-sm-5 {
|
|
1501
1503
|
flex: 0 0 5%;
|
|
1502
1504
|
max-width: 5%;
|
|
@@ -1769,7 +1771,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
1769
1771
|
width: auto;
|
|
1770
1772
|
}
|
|
1771
1773
|
}
|
|
1772
|
-
@
|
|
1774
|
+
@container (min-width: 768px) {
|
|
1773
1775
|
.pa-col-md-5 {
|
|
1774
1776
|
flex: 0 0 5%;
|
|
1775
1777
|
max-width: 5%;
|
|
@@ -2042,7 +2044,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2042
2044
|
width: auto;
|
|
2043
2045
|
}
|
|
2044
2046
|
}
|
|
2045
|
-
@
|
|
2047
|
+
@container (min-width: 992px) {
|
|
2046
2048
|
.pa-col-lg-5 {
|
|
2047
2049
|
flex: 0 0 5%;
|
|
2048
2050
|
max-width: 5%;
|
|
@@ -2315,7 +2317,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2315
2317
|
width: auto;
|
|
2316
2318
|
}
|
|
2317
2319
|
}
|
|
2318
|
-
@
|
|
2320
|
+
@container (min-width: 1200px) {
|
|
2319
2321
|
.pa-col-xl-5 {
|
|
2320
2322
|
flex: 0 0 5%;
|
|
2321
2323
|
max-width: 5%;
|
|
@@ -2863,6 +2865,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2863
2865
|
.pa-card__header fieldset {
|
|
2864
2866
|
margin: 0;
|
|
2865
2867
|
padding: 0;
|
|
2868
|
+
border-bottom: none;
|
|
2866
2869
|
}
|
|
2867
2870
|
|
|
2868
2871
|
.pa-card__header h1,
|
|
@@ -2905,6 +2908,63 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2905
2908
|
flex-shrink: 0;
|
|
2906
2909
|
}
|
|
2907
2910
|
|
|
2911
|
+
.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 {
|
|
2912
|
+
border-bottom: 2px solid var(--pa-accent);
|
|
2913
|
+
padding-bottom: 0.8rem;
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
.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 {
|
|
2917
|
+
border-bottom-color: var(--pa-success-bg);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
.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 {
|
|
2921
|
+
border-bottom-color: var(--pa-warning-bg);
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
.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 {
|
|
2925
|
+
border-bottom-color: var(--pa-danger-bg);
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
.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 {
|
|
2929
|
+
border-bottom-color: var(--pa-info-bg);
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
.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 {
|
|
2933
|
+
border-bottom-color: var(--pa-color-1);
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
.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 {
|
|
2937
|
+
border-bottom-color: var(--pa-color-2);
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.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 {
|
|
2941
|
+
border-bottom-color: var(--pa-color-3);
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
.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 {
|
|
2945
|
+
border-bottom-color: var(--pa-color-4);
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
.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 {
|
|
2949
|
+
border-bottom-color: var(--pa-color-5);
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.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 {
|
|
2953
|
+
border-bottom-color: var(--pa-color-6);
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
.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 {
|
|
2957
|
+
border-bottom-color: var(--pa-color-7);
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
.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 {
|
|
2961
|
+
border-bottom-color: var(--pa-color-8);
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
.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 {
|
|
2965
|
+
border-bottom-color: var(--pa-color-9);
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2908
2968
|
.pa-card__header--wrap {
|
|
2909
2969
|
flex-wrap: wrap;
|
|
2910
2970
|
}
|
|
@@ -3077,6 +3137,21 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3077
3137
|
border-top: none !important;
|
|
3078
3138
|
}
|
|
3079
3139
|
|
|
3140
|
+
.pa-card--live-up {
|
|
3141
|
+
background-color: rgba(40, 167, 69, 0.1);
|
|
3142
|
+
transition: background-color 0.3s ease;
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
.pa-card--live-down {
|
|
3146
|
+
background-color: rgba(220, 53, 69, 0.1);
|
|
3147
|
+
transition: background-color 0.3s ease;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
.pa-card--live-neutral {
|
|
3151
|
+
background-color: #ffffff;
|
|
3152
|
+
transition: background-color 0.3s ease;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3080
3155
|
.pa-card--color-1 {
|
|
3081
3156
|
border-color: var(--pa-color-1);
|
|
3082
3157
|
}
|
|
@@ -3324,7 +3399,7 @@ a.pa-card p {
|
|
|
3324
3399
|
margin-bottom: 3.2rem;
|
|
3325
3400
|
}
|
|
3326
3401
|
|
|
3327
|
-
.pa-section h3 {
|
|
3402
|
+
.pa-section > h3 {
|
|
3328
3403
|
color: var(--pa-text-color-1);
|
|
3329
3404
|
margin-bottom: 1.6rem;
|
|
3330
3405
|
border-bottom: 2px solid var(--pa-accent);
|
|
@@ -3844,43 +3919,43 @@ a.pa-card p {
|
|
|
3844
3919
|
font-size: 1.4rem;
|
|
3845
3920
|
}
|
|
3846
3921
|
|
|
3847
|
-
.pa-stat--hero {
|
|
3922
|
+
.pa-stat--hero, .pa-stat--hero-compact {
|
|
3848
3923
|
display: block;
|
|
3849
3924
|
text-align: center;
|
|
3850
|
-
padding:
|
|
3925
|
+
padding: 0.8rem 0.8rem 1.2rem;
|
|
3851
3926
|
}
|
|
3852
3927
|
|
|
3853
|
-
.pa-stat--hero .pa-stat__label {
|
|
3854
|
-
font-size: 1.
|
|
3928
|
+
.pa-stat--hero .pa-stat__label, .pa-stat--hero-compact .pa-stat__label {
|
|
3929
|
+
font-size: 1.2rem;
|
|
3855
3930
|
text-transform: uppercase;
|
|
3856
3931
|
letter-spacing: 0.05em;
|
|
3857
|
-
font-weight:
|
|
3932
|
+
font-weight: 600;
|
|
3858
3933
|
color: var(--pa-text-color-2);
|
|
3859
|
-
margin-bottom: 0.
|
|
3934
|
+
margin-bottom: 0.4rem;
|
|
3860
3935
|
}
|
|
3861
3936
|
|
|
3862
|
-
.pa-stat--hero .pa-stat__value {
|
|
3863
|
-
font-size:
|
|
3937
|
+
.pa-stat--hero .pa-stat__value, .pa-stat--hero-compact .pa-stat__value {
|
|
3938
|
+
font-size: 4.48rem;
|
|
3864
3939
|
font-weight: 700;
|
|
3865
3940
|
color: var(--pa-text-color-1);
|
|
3866
|
-
line-height: 1
|
|
3867
|
-
margin-bottom: 0.
|
|
3941
|
+
line-height: 1;
|
|
3942
|
+
margin-bottom: 0.4rem;
|
|
3868
3943
|
}
|
|
3869
3944
|
|
|
3870
|
-
.pa-stat--hero .pa-stat__change {
|
|
3945
|
+
.pa-stat--hero .pa-stat__change, .pa-stat--hero-compact .pa-stat__change {
|
|
3871
3946
|
font-size: 1.2rem;
|
|
3872
|
-
font-weight:
|
|
3947
|
+
font-weight: 600;
|
|
3873
3948
|
}
|
|
3874
3949
|
|
|
3875
|
-
.pa-stat--hero .pa-stat__change--positive {
|
|
3950
|
+
.pa-stat--hero .pa-stat__change--positive, .pa-stat--hero-compact .pa-stat__change--positive {
|
|
3876
3951
|
color: #28a745;
|
|
3877
3952
|
}
|
|
3878
3953
|
|
|
3879
|
-
.pa-stat--hero .pa-stat__change--negative {
|
|
3954
|
+
.pa-stat--hero .pa-stat__change--negative, .pa-stat--hero-compact .pa-stat__change--negative {
|
|
3880
3955
|
color: #dc3545;
|
|
3881
3956
|
}
|
|
3882
3957
|
|
|
3883
|
-
.pa-stat--hero .pa-stat__change--neutral {
|
|
3958
|
+
.pa-stat--hero .pa-stat__change--neutral, .pa-stat--hero-compact .pa-stat__change--neutral {
|
|
3884
3959
|
color: var(--pa-text-color-2);
|
|
3885
3960
|
}
|
|
3886
3961
|
|
|
@@ -5156,6 +5231,8 @@ a.pa-card p {
|
|
|
5156
5231
|
.pa-btn--loading {
|
|
5157
5232
|
position: relative;
|
|
5158
5233
|
pointer-events: none;
|
|
5234
|
+
-webkit-text-fill-color: transparent;
|
|
5235
|
+
transition: none;
|
|
5159
5236
|
}
|
|
5160
5237
|
|
|
5161
5238
|
.pa-btn--loading .pa-btn__spinner {
|
|
@@ -13597,6 +13674,71 @@ code {
|
|
|
13597
13674
|
grid-column: 2;
|
|
13598
13675
|
}
|
|
13599
13676
|
}
|
|
13677
|
+
.pa-desc-table__copy {
|
|
13678
|
+
flex-shrink: 0;
|
|
13679
|
+
padding: 0.4rem;
|
|
13680
|
+
background: transparent;
|
|
13681
|
+
border: none;
|
|
13682
|
+
border-radius: 4px;
|
|
13683
|
+
cursor: pointer;
|
|
13684
|
+
transition: opacity 0.15s, background 0.15s;
|
|
13685
|
+
}
|
|
13686
|
+
|
|
13687
|
+
.pa-desc-table__copy:hover {
|
|
13688
|
+
opacity: 1;
|
|
13689
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13690
|
+
}
|
|
13691
|
+
|
|
13692
|
+
.pa-desc-table__value--copy-btn, .pa-desc-table__value--copy-hover {
|
|
13693
|
+
display: flex;
|
|
13694
|
+
align-items: center;
|
|
13695
|
+
gap: 0.8rem;
|
|
13696
|
+
}
|
|
13697
|
+
|
|
13698
|
+
.pa-desc-table__value--copy-btn .pa-desc-table__copy {
|
|
13699
|
+
opacity: 0.5;
|
|
13700
|
+
}
|
|
13701
|
+
|
|
13702
|
+
.pa-desc-table__value--copy-hover .pa-desc-table__copy {
|
|
13703
|
+
opacity: 0;
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13706
|
+
.pa-desc-table__value--copy-hover:hover .pa-desc-table__copy {
|
|
13707
|
+
opacity: 0.5;
|
|
13708
|
+
}
|
|
13709
|
+
|
|
13710
|
+
.pa-desc-table__value--copy-hover:hover .pa-desc-table__copy:hover {
|
|
13711
|
+
opacity: 1;
|
|
13712
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13713
|
+
}
|
|
13714
|
+
|
|
13715
|
+
.pa-desc-table__value--copy-click {
|
|
13716
|
+
cursor: pointer;
|
|
13717
|
+
transition: opacity 0.15s;
|
|
13718
|
+
}
|
|
13719
|
+
|
|
13720
|
+
.pa-desc-table__value--copy-click:hover {
|
|
13721
|
+
opacity: 0.7;
|
|
13722
|
+
}
|
|
13723
|
+
|
|
13724
|
+
.pa-desc-table__value--copy-click::after {
|
|
13725
|
+
content: "Click to copy";
|
|
13726
|
+
font-size: 1rem;
|
|
13727
|
+
opacity: 0;
|
|
13728
|
+
margin-inline-start: 0.8rem;
|
|
13729
|
+
transition: opacity 0.15s;
|
|
13730
|
+
}
|
|
13731
|
+
|
|
13732
|
+
.pa-desc-table__value--copy-click:hover::after {
|
|
13733
|
+
opacity: 0.6;
|
|
13734
|
+
}
|
|
13735
|
+
|
|
13736
|
+
.pa-desc-table__value--copied::after {
|
|
13737
|
+
content: "Copied!" !important;
|
|
13738
|
+
opacity: 1 !important;
|
|
13739
|
+
color: var(--pa-color-4, #28a745);
|
|
13740
|
+
}
|
|
13741
|
+
|
|
13600
13742
|
.pa-dot-leaders {
|
|
13601
13743
|
display: flex;
|
|
13602
13744
|
flex-direction: column;
|
|
@@ -13698,6 +13840,57 @@ code {
|
|
|
13698
13840
|
font-weight: 700;
|
|
13699
13841
|
}
|
|
13700
13842
|
|
|
13843
|
+
.pa-prop-card__copy {
|
|
13844
|
+
flex-shrink: 0;
|
|
13845
|
+
padding: 0.4rem;
|
|
13846
|
+
background: transparent;
|
|
13847
|
+
border: none;
|
|
13848
|
+
border-radius: 4px;
|
|
13849
|
+
cursor: pointer;
|
|
13850
|
+
transition: opacity 0.15s, background 0.15s;
|
|
13851
|
+
}
|
|
13852
|
+
|
|
13853
|
+
.pa-prop-card__copy:hover {
|
|
13854
|
+
opacity: 1;
|
|
13855
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13856
|
+
}
|
|
13857
|
+
|
|
13858
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__value, .pa-prop-card__row--copy-hover .pa-prop-card__value {
|
|
13859
|
+
display: flex;
|
|
13860
|
+
align-items: center;
|
|
13861
|
+
gap: 0.8rem;
|
|
13862
|
+
}
|
|
13863
|
+
|
|
13864
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__copy, .pa-prop-card__row--copy-hover .pa-prop-card__copy {
|
|
13865
|
+
order: -1;
|
|
13866
|
+
}
|
|
13867
|
+
|
|
13868
|
+
.pa-prop-card__row--copy-btn .pa-prop-card__copy {
|
|
13869
|
+
opacity: 0.5;
|
|
13870
|
+
}
|
|
13871
|
+
|
|
13872
|
+
.pa-prop-card__row--copy-hover .pa-prop-card__copy {
|
|
13873
|
+
opacity: 0;
|
|
13874
|
+
}
|
|
13875
|
+
|
|
13876
|
+
.pa-prop-card__row--copy-hover:hover .pa-prop-card__copy {
|
|
13877
|
+
opacity: 0.5;
|
|
13878
|
+
}
|
|
13879
|
+
|
|
13880
|
+
.pa-prop-card__row--copy-hover:hover .pa-prop-card__copy:hover {
|
|
13881
|
+
opacity: 1;
|
|
13882
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13883
|
+
}
|
|
13884
|
+
|
|
13885
|
+
.pa-prop-card__row--copy-click .pa-prop-card__value {
|
|
13886
|
+
cursor: pointer;
|
|
13887
|
+
transition: opacity 0.15s;
|
|
13888
|
+
}
|
|
13889
|
+
|
|
13890
|
+
.pa-prop-card__row--copy-click .pa-prop-card__value:hover {
|
|
13891
|
+
opacity: 0.7;
|
|
13892
|
+
}
|
|
13893
|
+
|
|
13701
13894
|
.pa-banded-container {
|
|
13702
13895
|
container-type: inline-size;
|
|
13703
13896
|
}
|
|
@@ -13794,6 +13987,69 @@ code {
|
|
|
13794
13987
|
display: block;
|
|
13795
13988
|
}
|
|
13796
13989
|
}
|
|
13990
|
+
.pa-banded__copy {
|
|
13991
|
+
flex-shrink: 0;
|
|
13992
|
+
padding: 0.4rem;
|
|
13993
|
+
background: transparent;
|
|
13994
|
+
border: none;
|
|
13995
|
+
border-radius: 4px;
|
|
13996
|
+
cursor: pointer;
|
|
13997
|
+
transition: opacity 0.15s, background 0.15s;
|
|
13998
|
+
}
|
|
13999
|
+
|
|
14000
|
+
.pa-banded__copy:hover {
|
|
14001
|
+
opacity: 1;
|
|
14002
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14003
|
+
}
|
|
14004
|
+
|
|
14005
|
+
.pa-banded__row--copy-btn .pa-banded__value, .pa-banded__row--copy-hover .pa-banded__value {
|
|
14006
|
+
gap: 0.8rem;
|
|
14007
|
+
}
|
|
14008
|
+
|
|
14009
|
+
.pa-banded__row--copy-btn .pa-banded__copy {
|
|
14010
|
+
opacity: 0.5;
|
|
14011
|
+
}
|
|
14012
|
+
|
|
14013
|
+
.pa-banded__row--copy-hover .pa-banded__copy {
|
|
14014
|
+
opacity: 0;
|
|
14015
|
+
}
|
|
14016
|
+
|
|
14017
|
+
.pa-banded__row--copy-hover:hover .pa-banded__copy {
|
|
14018
|
+
opacity: 0.5;
|
|
14019
|
+
}
|
|
14020
|
+
|
|
14021
|
+
.pa-banded__row--copy-hover:hover .pa-banded__copy:hover {
|
|
14022
|
+
opacity: 1;
|
|
14023
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14024
|
+
}
|
|
14025
|
+
|
|
14026
|
+
.pa-banded__row--copy-click .pa-banded__value {
|
|
14027
|
+
cursor: pointer;
|
|
14028
|
+
transition: opacity 0.15s;
|
|
14029
|
+
}
|
|
14030
|
+
|
|
14031
|
+
.pa-banded__row--copy-click .pa-banded__value:hover {
|
|
14032
|
+
opacity: 0.7;
|
|
14033
|
+
}
|
|
14034
|
+
|
|
14035
|
+
.pa-banded__row--copy-click .pa-banded__value::after {
|
|
14036
|
+
content: "Click to copy";
|
|
14037
|
+
font-size: 1rem;
|
|
14038
|
+
opacity: 0;
|
|
14039
|
+
margin-inline-start: 0.8rem;
|
|
14040
|
+
transition: opacity 0.15s;
|
|
14041
|
+
}
|
|
14042
|
+
|
|
14043
|
+
.pa-banded__row--copy-click .pa-banded__value:hover::after {
|
|
14044
|
+
opacity: 0.6;
|
|
14045
|
+
}
|
|
14046
|
+
|
|
14047
|
+
.pa-banded__row--copied .pa-banded__value::after {
|
|
14048
|
+
content: "Copied!" !important;
|
|
14049
|
+
opacity: 1 !important;
|
|
14050
|
+
color: var(--pa-color-4, #28a745);
|
|
14051
|
+
}
|
|
14052
|
+
|
|
13797
14053
|
.pa-accent-grid {
|
|
13798
14054
|
display: grid;
|
|
13799
14055
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
@@ -13838,6 +14094,687 @@ code {
|
|
|
13838
14094
|
line-height: 1.2;
|
|
13839
14095
|
}
|
|
13840
14096
|
|
|
14097
|
+
.pa-accent-grid__copy {
|
|
14098
|
+
flex-shrink: 0;
|
|
14099
|
+
padding: 0.4rem;
|
|
14100
|
+
background: transparent;
|
|
14101
|
+
border: none;
|
|
14102
|
+
border-radius: 4px;
|
|
14103
|
+
cursor: pointer;
|
|
14104
|
+
transition: opacity 0.15s, background 0.15s;
|
|
14105
|
+
}
|
|
14106
|
+
|
|
14107
|
+
.pa-accent-grid__copy:hover {
|
|
14108
|
+
opacity: 1;
|
|
14109
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14110
|
+
}
|
|
14111
|
+
|
|
14112
|
+
.pa-accent-grid__item--copy-btn .pa-accent-grid__value, .pa-accent-grid__item--copy-hover .pa-accent-grid__value {
|
|
14113
|
+
display: flex;
|
|
14114
|
+
align-items: center;
|
|
14115
|
+
gap: 0.8rem;
|
|
14116
|
+
}
|
|
14117
|
+
|
|
14118
|
+
.pa-accent-grid__item--copy-btn .pa-accent-grid__copy {
|
|
14119
|
+
opacity: 0.5;
|
|
14120
|
+
}
|
|
14121
|
+
|
|
14122
|
+
.pa-accent-grid__item--copy-hover .pa-accent-grid__copy {
|
|
14123
|
+
opacity: 0;
|
|
14124
|
+
}
|
|
14125
|
+
|
|
14126
|
+
.pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy {
|
|
14127
|
+
opacity: 0.5;
|
|
14128
|
+
}
|
|
14129
|
+
|
|
14130
|
+
.pa-accent-grid__item--copy-hover:hover .pa-accent-grid__copy:hover {
|
|
14131
|
+
opacity: 1;
|
|
14132
|
+
background: rgba(128, 128, 128, 0.1);
|
|
14133
|
+
}
|
|
14134
|
+
|
|
14135
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value {
|
|
14136
|
+
cursor: pointer;
|
|
14137
|
+
transition: opacity 0.15s;
|
|
14138
|
+
}
|
|
14139
|
+
|
|
14140
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value:hover {
|
|
14141
|
+
opacity: 0.7;
|
|
14142
|
+
}
|
|
14143
|
+
|
|
14144
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value::after {
|
|
14145
|
+
content: "Click to copy";
|
|
14146
|
+
font-size: 1rem;
|
|
14147
|
+
opacity: 0;
|
|
14148
|
+
margin-inline-start: 0.8rem;
|
|
14149
|
+
transition: opacity 0.15s;
|
|
14150
|
+
}
|
|
14151
|
+
|
|
14152
|
+
.pa-accent-grid__item--copy-click .pa-accent-grid__value:hover::after {
|
|
14153
|
+
opacity: 0.6;
|
|
14154
|
+
}
|
|
14155
|
+
|
|
14156
|
+
.pa-accent-grid__item--copied .pa-accent-grid__value::after {
|
|
14157
|
+
content: "Copied!" !important;
|
|
14158
|
+
opacity: 1 !important;
|
|
14159
|
+
color: var(--pa-color-4, #28a745);
|
|
14160
|
+
}
|
|
14161
|
+
|
|
14162
|
+
/* ========================================
|
|
14163
|
+
Data Visualization Components
|
|
14164
|
+
Progress bars, rings, gauges, heatmaps, sparklines
|
|
14165
|
+
======================================== */
|
|
14166
|
+
.pa-progress {
|
|
14167
|
+
width: 100%;
|
|
14168
|
+
height: 0.8rem;
|
|
14169
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14170
|
+
border-radius: 4px;
|
|
14171
|
+
overflow: hidden;
|
|
14172
|
+
position: relative;
|
|
14173
|
+
}
|
|
14174
|
+
|
|
14175
|
+
.pa-progress__fill {
|
|
14176
|
+
height: 100%;
|
|
14177
|
+
width: var(--value, 0%);
|
|
14178
|
+
background: #007bff;
|
|
14179
|
+
border-radius: inherit;
|
|
14180
|
+
transition: width 0.25s ease;
|
|
14181
|
+
}
|
|
14182
|
+
|
|
14183
|
+
.pa-progress__label {
|
|
14184
|
+
display: flex;
|
|
14185
|
+
justify-content: space-between;
|
|
14186
|
+
margin-bottom: 0.4rem;
|
|
14187
|
+
font-size: 1.2rem;
|
|
14188
|
+
font-weight: 500;
|
|
14189
|
+
color: var(--pa-text-color-1);
|
|
14190
|
+
}
|
|
14191
|
+
|
|
14192
|
+
.pa-progress__label-value {
|
|
14193
|
+
color: var(--pa-text-color-2);
|
|
14194
|
+
}
|
|
14195
|
+
|
|
14196
|
+
.pa-progress--xs {
|
|
14197
|
+
height: 0.3rem;
|
|
14198
|
+
}
|
|
14199
|
+
|
|
14200
|
+
.pa-progress--sm {
|
|
14201
|
+
height: 0.5rem;
|
|
14202
|
+
}
|
|
14203
|
+
|
|
14204
|
+
.pa-progress--lg {
|
|
14205
|
+
height: 1.2rem;
|
|
14206
|
+
}
|
|
14207
|
+
|
|
14208
|
+
.pa-progress--success > .pa-progress__fill {
|
|
14209
|
+
background: #28a745;
|
|
14210
|
+
}
|
|
14211
|
+
|
|
14212
|
+
.pa-progress--warning > .pa-progress__fill {
|
|
14213
|
+
background: #ffc107;
|
|
14214
|
+
}
|
|
14215
|
+
|
|
14216
|
+
.pa-progress--danger > .pa-progress__fill {
|
|
14217
|
+
background: #dc3545;
|
|
14218
|
+
}
|
|
14219
|
+
|
|
14220
|
+
.pa-progress--info > .pa-progress__fill {
|
|
14221
|
+
background: #17a2b8;
|
|
14222
|
+
}
|
|
14223
|
+
|
|
14224
|
+
.pa-progress--rounded {
|
|
14225
|
+
border-radius: 50rem;
|
|
14226
|
+
}
|
|
14227
|
+
|
|
14228
|
+
.pa-progress--striped > .pa-progress__fill {
|
|
14229
|
+
background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%);
|
|
14230
|
+
background-size: 1.6rem 1.6rem;
|
|
14231
|
+
}
|
|
14232
|
+
|
|
14233
|
+
.pa-progress--animated > .pa-progress__fill {
|
|
14234
|
+
animation: pa-progress-stripe 1s linear infinite;
|
|
14235
|
+
}
|
|
14236
|
+
|
|
14237
|
+
@keyframes pa-progress-stripe {
|
|
14238
|
+
0% {
|
|
14239
|
+
background-position: 1.6rem 0;
|
|
14240
|
+
}
|
|
14241
|
+
100% {
|
|
14242
|
+
background-position: 0 0;
|
|
14243
|
+
}
|
|
14244
|
+
}
|
|
14245
|
+
.pa-progress-group {
|
|
14246
|
+
display: flex;
|
|
14247
|
+
flex-direction: column;
|
|
14248
|
+
gap: 0.4rem;
|
|
14249
|
+
}
|
|
14250
|
+
|
|
14251
|
+
.pa-stacked-bar {
|
|
14252
|
+
display: flex;
|
|
14253
|
+
width: 100%;
|
|
14254
|
+
height: 1.2rem;
|
|
14255
|
+
border-radius: 4px;
|
|
14256
|
+
overflow: hidden;
|
|
14257
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14258
|
+
}
|
|
14259
|
+
|
|
14260
|
+
.pa-stacked-bar__segment {
|
|
14261
|
+
height: 100%;
|
|
14262
|
+
width: var(--value, 0%);
|
|
14263
|
+
transition: width 0.25s ease;
|
|
14264
|
+
background: #007bff;
|
|
14265
|
+
}
|
|
14266
|
+
|
|
14267
|
+
.pa-stacked-bar__segment--success {
|
|
14268
|
+
background: #28a745;
|
|
14269
|
+
}
|
|
14270
|
+
|
|
14271
|
+
.pa-stacked-bar__segment--warning {
|
|
14272
|
+
background: #ffc107;
|
|
14273
|
+
}
|
|
14274
|
+
|
|
14275
|
+
.pa-stacked-bar__segment--danger {
|
|
14276
|
+
background: #dc3545;
|
|
14277
|
+
}
|
|
14278
|
+
|
|
14279
|
+
.pa-stacked-bar__segment--info {
|
|
14280
|
+
background: #17a2b8;
|
|
14281
|
+
}
|
|
14282
|
+
|
|
14283
|
+
.pa-stacked-bar__segment--secondary {
|
|
14284
|
+
background: #6c757d;
|
|
14285
|
+
}
|
|
14286
|
+
|
|
14287
|
+
.pa-stacked-bar__legend {
|
|
14288
|
+
display: flex;
|
|
14289
|
+
flex-wrap: wrap;
|
|
14290
|
+
gap: 1.6rem;
|
|
14291
|
+
margin-top: 0.8rem;
|
|
14292
|
+
}
|
|
14293
|
+
|
|
14294
|
+
.pa-stacked-bar__legend-item {
|
|
14295
|
+
display: flex;
|
|
14296
|
+
align-items: center;
|
|
14297
|
+
gap: 0.4rem;
|
|
14298
|
+
font-size: 1.2rem;
|
|
14299
|
+
color: var(--pa-text-color-2);
|
|
14300
|
+
}
|
|
14301
|
+
|
|
14302
|
+
.pa-stacked-bar__legend-swatch {
|
|
14303
|
+
width: 1rem;
|
|
14304
|
+
height: 1rem;
|
|
14305
|
+
border-radius: 2px;
|
|
14306
|
+
flex-shrink: 0;
|
|
14307
|
+
}
|
|
14308
|
+
|
|
14309
|
+
.pa-stacked-bar__legend-swatch--primary {
|
|
14310
|
+
background: #007bff;
|
|
14311
|
+
}
|
|
14312
|
+
|
|
14313
|
+
.pa-stacked-bar__legend-swatch--success {
|
|
14314
|
+
background: #28a745;
|
|
14315
|
+
}
|
|
14316
|
+
|
|
14317
|
+
.pa-stacked-bar__legend-swatch--warning {
|
|
14318
|
+
background: #ffc107;
|
|
14319
|
+
}
|
|
14320
|
+
|
|
14321
|
+
.pa-stacked-bar__legend-swatch--danger {
|
|
14322
|
+
background: #dc3545;
|
|
14323
|
+
}
|
|
14324
|
+
|
|
14325
|
+
.pa-stacked-bar__legend-swatch--info {
|
|
14326
|
+
background: #17a2b8;
|
|
14327
|
+
}
|
|
14328
|
+
|
|
14329
|
+
.pa-stacked-bar__legend-swatch--secondary {
|
|
14330
|
+
background: #6c757d;
|
|
14331
|
+
}
|
|
14332
|
+
|
|
14333
|
+
.pa-stacked-bar--sm {
|
|
14334
|
+
height: 0.5rem;
|
|
14335
|
+
}
|
|
14336
|
+
|
|
14337
|
+
.pa-stacked-bar--lg {
|
|
14338
|
+
height: 1.2rem;
|
|
14339
|
+
}
|
|
14340
|
+
|
|
14341
|
+
.pa-stacked-bar--rounded {
|
|
14342
|
+
border-radius: 50rem;
|
|
14343
|
+
}
|
|
14344
|
+
|
|
14345
|
+
.pa-progress-ring {
|
|
14346
|
+
width: 8rem;
|
|
14347
|
+
height: 8rem;
|
|
14348
|
+
border-radius: 50%;
|
|
14349
|
+
background: conic-gradient(#007bff calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14350
|
+
display: flex;
|
|
14351
|
+
align-items: center;
|
|
14352
|
+
justify-content: center;
|
|
14353
|
+
flex-shrink: 0;
|
|
14354
|
+
}
|
|
14355
|
+
|
|
14356
|
+
.pa-progress-ring__inner {
|
|
14357
|
+
width: 70%;
|
|
14358
|
+
height: 70%;
|
|
14359
|
+
border-radius: 50%;
|
|
14360
|
+
background: #ffffff;
|
|
14361
|
+
display: flex;
|
|
14362
|
+
flex-direction: column;
|
|
14363
|
+
align-items: center;
|
|
14364
|
+
justify-content: center;
|
|
14365
|
+
}
|
|
14366
|
+
|
|
14367
|
+
.pa-progress-ring__value {
|
|
14368
|
+
font-size: 1.8rem;
|
|
14369
|
+
font-weight: 700;
|
|
14370
|
+
line-height: 1;
|
|
14371
|
+
color: var(--pa-text-color-1);
|
|
14372
|
+
}
|
|
14373
|
+
|
|
14374
|
+
.pa-progress-ring__label {
|
|
14375
|
+
font-size: 1rem;
|
|
14376
|
+
color: var(--pa-text-color-2);
|
|
14377
|
+
margin-top: 0.4rem;
|
|
14378
|
+
}
|
|
14379
|
+
|
|
14380
|
+
.pa-progress-ring--sm {
|
|
14381
|
+
width: 5rem;
|
|
14382
|
+
height: 5rem;
|
|
14383
|
+
}
|
|
14384
|
+
|
|
14385
|
+
.pa-progress-ring--sm .pa-progress-ring__value {
|
|
14386
|
+
font-size: 1.6rem;
|
|
14387
|
+
}
|
|
14388
|
+
|
|
14389
|
+
.pa-progress-ring--sm .pa-progress-ring__label {
|
|
14390
|
+
font-size: 1rem;
|
|
14391
|
+
}
|
|
14392
|
+
|
|
14393
|
+
.pa-progress-ring--lg {
|
|
14394
|
+
width: 11rem;
|
|
14395
|
+
height: 11rem;
|
|
14396
|
+
}
|
|
14397
|
+
|
|
14398
|
+
.pa-progress-ring--lg .pa-progress-ring__value {
|
|
14399
|
+
font-size: 2.4rem;
|
|
14400
|
+
}
|
|
14401
|
+
|
|
14402
|
+
.pa-progress-ring--lg .pa-progress-ring__label {
|
|
14403
|
+
font-size: 1.2rem;
|
|
14404
|
+
}
|
|
14405
|
+
|
|
14406
|
+
.pa-progress-ring--success {
|
|
14407
|
+
background: conic-gradient(#28a745 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14408
|
+
}
|
|
14409
|
+
|
|
14410
|
+
.pa-progress-ring--warning {
|
|
14411
|
+
background: conic-gradient(#ffc107 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14412
|
+
}
|
|
14413
|
+
|
|
14414
|
+
.pa-progress-ring--danger {
|
|
14415
|
+
background: conic-gradient(#dc3545 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14416
|
+
}
|
|
14417
|
+
|
|
14418
|
+
.pa-progress-ring--info {
|
|
14419
|
+
background: conic-gradient(#17a2b8 calc(var(--value, 0) * 3.6deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14420
|
+
}
|
|
14421
|
+
|
|
14422
|
+
.pa-gauge {
|
|
14423
|
+
width: 12rem;
|
|
14424
|
+
height: calc(12rem / 2);
|
|
14425
|
+
border-radius: 12rem 12rem 0 0;
|
|
14426
|
+
overflow: hidden;
|
|
14427
|
+
background: conic-gradient(from 0.75turn, #007bff calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14428
|
+
position: relative;
|
|
14429
|
+
flex-shrink: 0;
|
|
14430
|
+
}
|
|
14431
|
+
|
|
14432
|
+
.pa-gauge__inner {
|
|
14433
|
+
position: absolute;
|
|
14434
|
+
bottom: 0;
|
|
14435
|
+
left: 15%;
|
|
14436
|
+
right: 15%;
|
|
14437
|
+
height: 70%;
|
|
14438
|
+
border-radius: 12rem 12rem 0 0;
|
|
14439
|
+
background: #ffffff;
|
|
14440
|
+
display: flex;
|
|
14441
|
+
flex-direction: column;
|
|
14442
|
+
align-items: center;
|
|
14443
|
+
justify-content: flex-end;
|
|
14444
|
+
padding-bottom: 0.4rem;
|
|
14445
|
+
}
|
|
14446
|
+
|
|
14447
|
+
.pa-gauge__value {
|
|
14448
|
+
font-size: 2.4rem;
|
|
14449
|
+
font-weight: 700;
|
|
14450
|
+
line-height: 1;
|
|
14451
|
+
color: var(--pa-text-color-1);
|
|
14452
|
+
}
|
|
14453
|
+
|
|
14454
|
+
.pa-gauge__label {
|
|
14455
|
+
font-size: 1.2rem;
|
|
14456
|
+
color: var(--pa-text-color-2);
|
|
14457
|
+
margin-top: 0.4rem;
|
|
14458
|
+
}
|
|
14459
|
+
|
|
14460
|
+
.pa-gauge__min, .pa-gauge__max {
|
|
14461
|
+
position: absolute;
|
|
14462
|
+
bottom: 0;
|
|
14463
|
+
font-size: 1rem;
|
|
14464
|
+
color: var(--pa-text-color-2);
|
|
14465
|
+
}
|
|
14466
|
+
|
|
14467
|
+
.pa-gauge__min {
|
|
14468
|
+
left: 0;
|
|
14469
|
+
}
|
|
14470
|
+
|
|
14471
|
+
.pa-gauge__max {
|
|
14472
|
+
right: 0;
|
|
14473
|
+
}
|
|
14474
|
+
|
|
14475
|
+
.pa-gauge--success {
|
|
14476
|
+
background: conic-gradient(from 0.75turn, #28a745 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14477
|
+
}
|
|
14478
|
+
|
|
14479
|
+
.pa-gauge--warning {
|
|
14480
|
+
background: conic-gradient(from 0.75turn, #ffc107 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14481
|
+
}
|
|
14482
|
+
|
|
14483
|
+
.pa-gauge--danger {
|
|
14484
|
+
background: conic-gradient(from 0.75turn, #dc3545 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14485
|
+
}
|
|
14486
|
+
|
|
14487
|
+
.pa-gauge--info {
|
|
14488
|
+
background: conic-gradient(from 0.75turn, #17a2b8 calc(var(--value, 0) * 1.8deg), rgba(0, 0, 0, 0.08) 0deg);
|
|
14489
|
+
}
|
|
14490
|
+
|
|
14491
|
+
.pa-gauge--zones {
|
|
14492
|
+
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);
|
|
14493
|
+
}
|
|
14494
|
+
|
|
14495
|
+
.pa-data-bar {
|
|
14496
|
+
display: flex;
|
|
14497
|
+
flex-direction: column;
|
|
14498
|
+
gap: 0.4rem;
|
|
14499
|
+
min-width: 6rem;
|
|
14500
|
+
}
|
|
14501
|
+
|
|
14502
|
+
.pa-data-bar__value {
|
|
14503
|
+
font-size: 1.4rem;
|
|
14504
|
+
font-weight: 500;
|
|
14505
|
+
color: var(--pa-text-color-1);
|
|
14506
|
+
line-height: 1;
|
|
14507
|
+
}
|
|
14508
|
+
|
|
14509
|
+
.pa-data-bar__track {
|
|
14510
|
+
width: 100%;
|
|
14511
|
+
height: 0.4rem;
|
|
14512
|
+
background: rgba(0, 0, 0, 0.06);
|
|
14513
|
+
border-radius: 2px;
|
|
14514
|
+
overflow: hidden;
|
|
14515
|
+
}
|
|
14516
|
+
|
|
14517
|
+
.pa-data-bar__fill {
|
|
14518
|
+
height: 100%;
|
|
14519
|
+
width: var(--value, 0%);
|
|
14520
|
+
background: #007bff;
|
|
14521
|
+
border-radius: inherit;
|
|
14522
|
+
transition: width 0.25s ease;
|
|
14523
|
+
}
|
|
14524
|
+
|
|
14525
|
+
.pa-data-bar--success .pa-data-bar__fill {
|
|
14526
|
+
background: #28a745;
|
|
14527
|
+
}
|
|
14528
|
+
|
|
14529
|
+
.pa-data-bar--warning .pa-data-bar__fill {
|
|
14530
|
+
background: #ffc107;
|
|
14531
|
+
}
|
|
14532
|
+
|
|
14533
|
+
.pa-data-bar--danger .pa-data-bar__fill {
|
|
14534
|
+
background: #dc3545;
|
|
14535
|
+
}
|
|
14536
|
+
|
|
14537
|
+
.pa-data-bar--info .pa-data-bar__fill {
|
|
14538
|
+
background: #17a2b8;
|
|
14539
|
+
}
|
|
14540
|
+
|
|
14541
|
+
.pa-data-bar--negative .pa-data-bar__fill {
|
|
14542
|
+
background: #dc3545;
|
|
14543
|
+
margin-inline-start: auto;
|
|
14544
|
+
}
|
|
14545
|
+
|
|
14546
|
+
.pa-heatmap {
|
|
14547
|
+
display: inline-grid;
|
|
14548
|
+
grid-template-columns: repeat(53, 1.2rem);
|
|
14549
|
+
grid-auto-rows: 1.2rem;
|
|
14550
|
+
gap: 0.2rem;
|
|
14551
|
+
}
|
|
14552
|
+
|
|
14553
|
+
.pa-heatmap__cell {
|
|
14554
|
+
border-radius: 2px;
|
|
14555
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14556
|
+
}
|
|
14557
|
+
|
|
14558
|
+
.pa-heatmap__cell[data-level="1"] {
|
|
14559
|
+
background: rgba(0, 123, 255, 0.2);
|
|
14560
|
+
}
|
|
14561
|
+
|
|
14562
|
+
.pa-heatmap__cell[data-level="2"] {
|
|
14563
|
+
background: rgba(0, 123, 255, 0.4);
|
|
14564
|
+
}
|
|
14565
|
+
|
|
14566
|
+
.pa-heatmap__cell[data-level="3"] {
|
|
14567
|
+
background: rgba(0, 123, 255, 0.65);
|
|
14568
|
+
}
|
|
14569
|
+
|
|
14570
|
+
.pa-heatmap__cell[data-level="4"] {
|
|
14571
|
+
background: #007bff;
|
|
14572
|
+
}
|
|
14573
|
+
|
|
14574
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="1"] {
|
|
14575
|
+
background: rgba(40, 167, 69, 0.2);
|
|
14576
|
+
}
|
|
14577
|
+
|
|
14578
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="2"] {
|
|
14579
|
+
background: rgba(40, 167, 69, 0.4);
|
|
14580
|
+
}
|
|
14581
|
+
|
|
14582
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="3"] {
|
|
14583
|
+
background: rgba(40, 167, 69, 0.65);
|
|
14584
|
+
}
|
|
14585
|
+
|
|
14586
|
+
.pa-heatmap--success .pa-heatmap__cell[data-level="4"] {
|
|
14587
|
+
background: #28a745;
|
|
14588
|
+
}
|
|
14589
|
+
|
|
14590
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="1"] {
|
|
14591
|
+
background: rgba(220, 53, 69, 0.2);
|
|
14592
|
+
}
|
|
14593
|
+
|
|
14594
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="2"] {
|
|
14595
|
+
background: rgba(220, 53, 69, 0.4);
|
|
14596
|
+
}
|
|
14597
|
+
|
|
14598
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="3"] {
|
|
14599
|
+
background: rgba(220, 53, 69, 0.65);
|
|
14600
|
+
}
|
|
14601
|
+
|
|
14602
|
+
.pa-heatmap--danger .pa-heatmap__cell[data-level="4"] {
|
|
14603
|
+
background: #dc3545;
|
|
14604
|
+
}
|
|
14605
|
+
|
|
14606
|
+
.pa-heatmap__legend {
|
|
14607
|
+
display: flex;
|
|
14608
|
+
align-items: center;
|
|
14609
|
+
gap: 0.4rem;
|
|
14610
|
+
margin-top: 0.8rem;
|
|
14611
|
+
font-size: 1.2rem;
|
|
14612
|
+
color: var(--pa-text-color-2);
|
|
14613
|
+
}
|
|
14614
|
+
|
|
14615
|
+
.pa-heatmap__legend-cell {
|
|
14616
|
+
width: 1.2rem;
|
|
14617
|
+
height: 1.2rem;
|
|
14618
|
+
border-radius: 2px;
|
|
14619
|
+
background: rgba(0, 0, 0, 0.08);
|
|
14620
|
+
}
|
|
14621
|
+
|
|
14622
|
+
.pa-heatmap__legend-cell[data-level="1"] {
|
|
14623
|
+
background: rgba(0, 123, 255, 0.2);
|
|
14624
|
+
}
|
|
14625
|
+
|
|
14626
|
+
.pa-heatmap__legend-cell[data-level="2"] {
|
|
14627
|
+
background: rgba(0, 123, 255, 0.4);
|
|
14628
|
+
}
|
|
14629
|
+
|
|
14630
|
+
.pa-heatmap__legend-cell[data-level="3"] {
|
|
14631
|
+
background: rgba(0, 123, 255, 0.65);
|
|
14632
|
+
}
|
|
14633
|
+
|
|
14634
|
+
.pa-heatmap__legend-cell[data-level="4"] {
|
|
14635
|
+
background: #007bff;
|
|
14636
|
+
}
|
|
14637
|
+
|
|
14638
|
+
.pa-heatmap--compact {
|
|
14639
|
+
grid-template-columns: repeat(53, 1rem);
|
|
14640
|
+
grid-auto-rows: 1rem;
|
|
14641
|
+
gap: 0.1rem;
|
|
14642
|
+
}
|
|
14643
|
+
|
|
14644
|
+
.pa-heatmap--compact .pa-heatmap__cell {
|
|
14645
|
+
border-radius: 1px;
|
|
14646
|
+
}
|
|
14647
|
+
|
|
14648
|
+
.pa-sparkline {
|
|
14649
|
+
display: inline-flex;
|
|
14650
|
+
align-items: flex-end;
|
|
14651
|
+
gap: 0.2rem;
|
|
14652
|
+
height: 3rem;
|
|
14653
|
+
}
|
|
14654
|
+
|
|
14655
|
+
.pa-sparkline__bar {
|
|
14656
|
+
width: 0.3rem;
|
|
14657
|
+
height: var(--value, 50%);
|
|
14658
|
+
background: #007bff;
|
|
14659
|
+
border-radius: 2px 2px 0 0;
|
|
14660
|
+
transition: height 0.25s ease;
|
|
14661
|
+
min-height: 1px;
|
|
14662
|
+
}
|
|
14663
|
+
|
|
14664
|
+
.pa-sparkline--success .pa-sparkline__bar {
|
|
14665
|
+
background: #28a745;
|
|
14666
|
+
}
|
|
14667
|
+
|
|
14668
|
+
.pa-sparkline--warning .pa-sparkline__bar {
|
|
14669
|
+
background: #ffc107;
|
|
14670
|
+
}
|
|
14671
|
+
|
|
14672
|
+
.pa-sparkline--danger .pa-sparkline__bar {
|
|
14673
|
+
background: #dc3545;
|
|
14674
|
+
}
|
|
14675
|
+
|
|
14676
|
+
.pa-sparkline--info .pa-sparkline__bar {
|
|
14677
|
+
background: #17a2b8;
|
|
14678
|
+
}
|
|
14679
|
+
|
|
14680
|
+
.pa-sparkline--sm {
|
|
14681
|
+
height: 2rem;
|
|
14682
|
+
}
|
|
14683
|
+
|
|
14684
|
+
.pa-sparkline--lg {
|
|
14685
|
+
height: 4.8rem;
|
|
14686
|
+
}
|
|
14687
|
+
|
|
14688
|
+
.pa-sparkline--lg .pa-sparkline__bar {
|
|
14689
|
+
width: 0.4rem;
|
|
14690
|
+
}
|
|
14691
|
+
|
|
14692
|
+
.pa-bar-list {
|
|
14693
|
+
display: flex;
|
|
14694
|
+
flex-direction: column;
|
|
14695
|
+
gap: 1.6rem;
|
|
14696
|
+
}
|
|
14697
|
+
|
|
14698
|
+
.pa-bar-list__item {
|
|
14699
|
+
display: flex;
|
|
14700
|
+
flex-direction: column;
|
|
14701
|
+
gap: 0.4rem;
|
|
14702
|
+
}
|
|
14703
|
+
|
|
14704
|
+
.pa-bar-list__header {
|
|
14705
|
+
display: flex;
|
|
14706
|
+
justify-content: space-between;
|
|
14707
|
+
align-items: baseline;
|
|
14708
|
+
gap: 0.8rem;
|
|
14709
|
+
}
|
|
14710
|
+
|
|
14711
|
+
.pa-bar-list__label {
|
|
14712
|
+
font-size: 1.4rem;
|
|
14713
|
+
color: var(--pa-text-color-1);
|
|
14714
|
+
min-width: 0;
|
|
14715
|
+
overflow: hidden;
|
|
14716
|
+
text-overflow: ellipsis;
|
|
14717
|
+
white-space: nowrap;
|
|
14718
|
+
}
|
|
14719
|
+
|
|
14720
|
+
.pa-bar-list__value {
|
|
14721
|
+
font-size: 1.4rem;
|
|
14722
|
+
font-weight: 600;
|
|
14723
|
+
color: var(--pa-text-color-1);
|
|
14724
|
+
flex-shrink: 0;
|
|
14725
|
+
}
|
|
14726
|
+
|
|
14727
|
+
.pa-bar-list__bar {
|
|
14728
|
+
width: 100%;
|
|
14729
|
+
height: 0.4rem;
|
|
14730
|
+
background: rgba(0, 0, 0, 0.06);
|
|
14731
|
+
border-radius: 2px;
|
|
14732
|
+
overflow: hidden;
|
|
14733
|
+
}
|
|
14734
|
+
|
|
14735
|
+
.pa-bar-list__bar::after {
|
|
14736
|
+
content: "";
|
|
14737
|
+
display: block;
|
|
14738
|
+
height: 100%;
|
|
14739
|
+
width: var(--value, 0%);
|
|
14740
|
+
background: #007bff;
|
|
14741
|
+
border-radius: inherit;
|
|
14742
|
+
transition: width 0.25s ease;
|
|
14743
|
+
}
|
|
14744
|
+
|
|
14745
|
+
.pa-bar-list--success .pa-bar-list__bar::after {
|
|
14746
|
+
background: #28a745;
|
|
14747
|
+
}
|
|
14748
|
+
|
|
14749
|
+
.pa-bar-list--warning .pa-bar-list__bar::after {
|
|
14750
|
+
background: #ffc107;
|
|
14751
|
+
}
|
|
14752
|
+
|
|
14753
|
+
.pa-bar-list--danger .pa-bar-list__bar::after {
|
|
14754
|
+
background: #dc3545;
|
|
14755
|
+
}
|
|
14756
|
+
|
|
14757
|
+
.pa-bar-list--info .pa-bar-list__bar::after {
|
|
14758
|
+
background: #17a2b8;
|
|
14759
|
+
}
|
|
14760
|
+
|
|
14761
|
+
.pa-bar-list--compact {
|
|
14762
|
+
gap: 0.8rem;
|
|
14763
|
+
}
|
|
14764
|
+
|
|
14765
|
+
.pa-bar-list--compact .pa-bar-list__item {
|
|
14766
|
+
gap: 0.2rem;
|
|
14767
|
+
}
|
|
14768
|
+
|
|
14769
|
+
.pa-bar-list--compact .pa-bar-list__label,
|
|
14770
|
+
.pa-bar-list--compact .pa-bar-list__value {
|
|
14771
|
+
font-size: 1.2rem;
|
|
14772
|
+
}
|
|
14773
|
+
|
|
14774
|
+
.pa-bar-list--compact .pa-bar-list__bar {
|
|
14775
|
+
height: 0.3rem;
|
|
14776
|
+
}
|
|
14777
|
+
|
|
13841
14778
|
/* ========================================
|
|
13842
14779
|
Utility Components
|
|
13843
14780
|
Font utilities, compact mode, component showcase
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-dark",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Dark theme for Pure Admin with color variants (blue, green, red) via CSS classes",
|
|
5
5
|
"style": "dist/dark.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": {
|