@keenmate/pure-admin-theme-minimal 1.0.0-rc01 → 1.0.0-rc02
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/minimal.css +260 -112
- package/package.json +3 -3
- package/src/scss/minimal.scss +122 -59
package/dist/minimal.css
CHANGED
|
@@ -107,6 +107,42 @@ label {
|
|
|
107
107
|
font-size: inherit;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
/* Webkit browsers (Chrome, Safari, Edge) */
|
|
111
|
+
*::-webkit-scrollbar {
|
|
112
|
+
width: 6px;
|
|
113
|
+
height: 6px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
*::-webkit-scrollbar-track {
|
|
117
|
+
background: var(--pa-primary-bg);
|
|
118
|
+
border-radius: 3px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
*::-webkit-scrollbar-thumb {
|
|
122
|
+
background: #e8e8e8;
|
|
123
|
+
border-radius: 3px;
|
|
124
|
+
border: 1px solid var(--pa-primary-bg);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
128
|
+
background: #555555;
|
|
129
|
+
border-color: rgba(85, 85, 85, 0.1);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
*::-webkit-scrollbar-thumb:active {
|
|
133
|
+
background: rgba(85, 85, 85, 0.1);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
*::-webkit-scrollbar-corner {
|
|
137
|
+
background: var(--pa-primary-bg);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/* Firefox */
|
|
141
|
+
* {
|
|
142
|
+
scrollbar-width: thin;
|
|
143
|
+
scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
|
|
144
|
+
}
|
|
145
|
+
|
|
110
146
|
/* ========================================
|
|
111
147
|
Layout V2 - Based on Testbench Structure
|
|
112
148
|
======================================== */
|
|
@@ -2439,8 +2475,8 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2439
2475
|
}
|
|
2440
2476
|
|
|
2441
2477
|
.pa-card__header {
|
|
2442
|
-
padding: 0.8rem
|
|
2443
|
-
min-height:
|
|
2478
|
+
padding: 0.8rem 1rem;
|
|
2479
|
+
min-height: 4rem;
|
|
2444
2480
|
border-top-left-radius: 8px;
|
|
2445
2481
|
border-top-right-radius: 8px;
|
|
2446
2482
|
border-bottom: 1px solid var(--pa-border-color);
|
|
@@ -2501,10 +2537,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2501
2537
|
color: var(--pa-text-primary);
|
|
2502
2538
|
font-size: 1.6rem;
|
|
2503
2539
|
font-weight: 600;
|
|
2540
|
+
line-height: 1;
|
|
2504
2541
|
}
|
|
2505
2542
|
|
|
2506
2543
|
.pa-card__body {
|
|
2507
|
-
padding: 1.6rem
|
|
2544
|
+
padding: 1.6rem 1rem;
|
|
2508
2545
|
flex: 1;
|
|
2509
2546
|
}
|
|
2510
2547
|
|
|
@@ -2517,7 +2554,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2517
2554
|
}
|
|
2518
2555
|
|
|
2519
2556
|
.pa-card__footer {
|
|
2520
|
-
padding: 1.2rem
|
|
2557
|
+
padding: 1.2rem 1rem;
|
|
2521
2558
|
border-top: 1px solid var(--pa-border-color);
|
|
2522
2559
|
border-bottom-left-radius: 8px;
|
|
2523
2560
|
border-bottom-right-radius: 8px;
|
|
@@ -2626,7 +2663,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2626
2663
|
}
|
|
2627
2664
|
|
|
2628
2665
|
.pa-card__tab {
|
|
2629
|
-
padding: 1.2rem
|
|
2666
|
+
padding: 1.2rem 1rem;
|
|
2630
2667
|
border: none;
|
|
2631
2668
|
background: none;
|
|
2632
2669
|
color: var(--pa-text-secondary);
|
|
@@ -2954,7 +2991,7 @@ a.pa-card p {
|
|
|
2954
2991
|
.pa-tabs__container--bordered {
|
|
2955
2992
|
border: 1px solid var(--pa-border-color);
|
|
2956
2993
|
border-radius: 8px;
|
|
2957
|
-
padding: 1.6rem;
|
|
2994
|
+
padding: 1.6rem 1rem;
|
|
2958
2995
|
background-color: var(--pa-card-bg);
|
|
2959
2996
|
}
|
|
2960
2997
|
|
|
@@ -2982,7 +3019,7 @@ a.pa-card p {
|
|
|
2982
3019
|
.pa-tabs__vertical-layout--bordered {
|
|
2983
3020
|
border: 1px solid var(--pa-border-color);
|
|
2984
3021
|
border-radius: 8px;
|
|
2985
|
-
padding: 1.6rem;
|
|
3022
|
+
padding: 1.6rem 1rem;
|
|
2986
3023
|
background-color: var(--pa-card-bg);
|
|
2987
3024
|
}
|
|
2988
3025
|
|
|
@@ -3149,7 +3186,7 @@ a.pa-card p {
|
|
|
3149
3186
|
font-size: 3.2rem;
|
|
3150
3187
|
font-weight: 700;
|
|
3151
3188
|
color: var(--pa-text-primary);
|
|
3152
|
-
line-height: 1;
|
|
3189
|
+
line-height: 1.1;
|
|
3153
3190
|
margin-bottom: 0.8rem;
|
|
3154
3191
|
}
|
|
3155
3192
|
|
|
@@ -3193,7 +3230,7 @@ a.pa-card p {
|
|
|
3193
3230
|
.pa-stat--square .pa-stat__number {
|
|
3194
3231
|
font-size: clamp(4.8rem, 8vw, 7.2rem);
|
|
3195
3232
|
font-weight: 700;
|
|
3196
|
-
line-height: 1;
|
|
3233
|
+
line-height: 1.1;
|
|
3197
3234
|
color: inherit;
|
|
3198
3235
|
z-index: 2px;
|
|
3199
3236
|
position: relative;
|
|
@@ -3206,7 +3243,7 @@ a.pa-card p {
|
|
|
3206
3243
|
.pa-stat--square .pa-stat__symbol {
|
|
3207
3244
|
font-size: clamp(6.4rem, 10vw, 9.6rem);
|
|
3208
3245
|
font-weight: 700;
|
|
3209
|
-
line-height: 1;
|
|
3246
|
+
line-height: 1.1;
|
|
3210
3247
|
opacity: 0.12;
|
|
3211
3248
|
color: inherit;
|
|
3212
3249
|
position: absolute;
|
|
@@ -3427,7 +3464,7 @@ a.pa-card p {
|
|
|
3427
3464
|
display: flex;
|
|
3428
3465
|
align-items: center;
|
|
3429
3466
|
gap: 1.2rem;
|
|
3430
|
-
padding: 1.2rem
|
|
3467
|
+
padding: 1.2rem 1rem;
|
|
3431
3468
|
border-bottom: 1px solid var(--pa-border-color);
|
|
3432
3469
|
}
|
|
3433
3470
|
|
|
@@ -3745,7 +3782,7 @@ a.pa-card p {
|
|
|
3745
3782
|
}
|
|
3746
3783
|
|
|
3747
3784
|
.pa-composite-badge--secondary .pa-composite-badge__label {
|
|
3748
|
-
background-color: #
|
|
3785
|
+
background-color: #fafafa;
|
|
3749
3786
|
color: var(--pa-text-secondary);
|
|
3750
3787
|
}
|
|
3751
3788
|
|
|
@@ -5381,7 +5418,7 @@ a.pa-card p {
|
|
|
5381
5418
|
align-items: center;
|
|
5382
5419
|
justify-content: space-between;
|
|
5383
5420
|
padding: 0.8rem 0.3rem 0.8rem 0.8rem;
|
|
5384
|
-
border-bottom: 1px solid #
|
|
5421
|
+
border-bottom: 1px solid #e8e8e8;
|
|
5385
5422
|
background-color: var(--pa-card-header-bg);
|
|
5386
5423
|
border-radius: 4px 4px 0 0;
|
|
5387
5424
|
}
|
|
@@ -5508,7 +5545,7 @@ a.pa-card p {
|
|
|
5508
5545
|
======================================== */
|
|
5509
5546
|
.pa-alert {
|
|
5510
5547
|
position: relative;
|
|
5511
|
-
padding: 1.2rem
|
|
5548
|
+
padding: 1.2rem 1rem;
|
|
5512
5549
|
margin-bottom: 1.6rem;
|
|
5513
5550
|
border: 1px solid transparent;
|
|
5514
5551
|
border-radius: 4px;
|
|
@@ -5610,12 +5647,12 @@ a.pa-card p {
|
|
|
5610
5647
|
}
|
|
5611
5648
|
|
|
5612
5649
|
.pa-alert--sm {
|
|
5613
|
-
padding: 1.2rem
|
|
5650
|
+
padding: 1.2rem 1rem;
|
|
5614
5651
|
font-size: 1.4rem;
|
|
5615
5652
|
}
|
|
5616
5653
|
|
|
5617
5654
|
.pa-alert--lg {
|
|
5618
|
-
padding: 1.2rem
|
|
5655
|
+
padding: 1.2rem 1rem;
|
|
5619
5656
|
font-size: 1.6rem;
|
|
5620
5657
|
}
|
|
5621
5658
|
|
|
@@ -5656,7 +5693,7 @@ a.pa-card p {
|
|
|
5656
5693
|
top: 0;
|
|
5657
5694
|
right: 0;
|
|
5658
5695
|
z-index: 2px;
|
|
5659
|
-
padding: 1.2rem
|
|
5696
|
+
padding: 1.2rem 1rem;
|
|
5660
5697
|
background: none;
|
|
5661
5698
|
border: none;
|
|
5662
5699
|
font-size: 2rem;
|
|
@@ -6713,7 +6750,7 @@ web-daterangepicker {
|
|
|
6713
6750
|
/* Input colors */
|
|
6714
6751
|
--drp-input-background: var(--pa-input-bg);
|
|
6715
6752
|
--drp-input-color: var(--pa-text-primary);
|
|
6716
|
-
--drp-input-border-color: #e8e8e8;
|
|
6753
|
+
--drp-input-border-color: 1px solid #e8e8e8;
|
|
6717
6754
|
--drp-input-border-color-hover: #555555;
|
|
6718
6755
|
--drp-input-border-color-focus: #555555;
|
|
6719
6756
|
--drp-input-placeholder-color: var(--pa-text-secondary);
|
|
@@ -8746,7 +8783,7 @@ code {
|
|
|
8746
8783
|
|
|
8747
8784
|
.pa-header__profile-name {
|
|
8748
8785
|
font-weight: 500;
|
|
8749
|
-
color: #
|
|
8786
|
+
color: #333333;
|
|
8750
8787
|
}
|
|
8751
8788
|
|
|
8752
8789
|
.pa-profile-panel {
|
|
@@ -8906,7 +8943,7 @@ code {
|
|
|
8906
8943
|
display: flex;
|
|
8907
8944
|
align-items: center;
|
|
8908
8945
|
gap: 1.2rem;
|
|
8909
|
-
padding:
|
|
8946
|
+
padding: 0.8rem 1.6rem;
|
|
8910
8947
|
color: var(--pa-text-primary);
|
|
8911
8948
|
text-decoration: none;
|
|
8912
8949
|
border-radius: 4px;
|
|
@@ -8925,7 +8962,7 @@ code {
|
|
|
8925
8962
|
}
|
|
8926
8963
|
|
|
8927
8964
|
.pa-profile-panel__nav-icon {
|
|
8928
|
-
font-size: 1.
|
|
8965
|
+
font-size: 1.6rem;
|
|
8929
8966
|
width: 2.4rem;
|
|
8930
8967
|
text-align: center;
|
|
8931
8968
|
}
|
|
@@ -8937,51 +8974,118 @@ code {
|
|
|
8937
8974
|
margin-top: auto;
|
|
8938
8975
|
}
|
|
8939
8976
|
|
|
8940
|
-
|
|
8941
|
-
.
|
|
8942
|
-
|
|
8943
|
-
|
|
8944
|
-
}
|
|
8945
|
-
.pa-header__profile-name {
|
|
8946
|
-
display: none;
|
|
8947
|
-
}
|
|
8977
|
+
.pa-profile-panel__tabs {
|
|
8978
|
+
padding: 0 2.4rem;
|
|
8979
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
8980
|
+
background-color: var(--pa-header-bg);
|
|
8948
8981
|
}
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8982
|
+
|
|
8983
|
+
.pa-profile-panel__tabs .pa-tabs {
|
|
8984
|
+
border-bottom: none;
|
|
8985
|
+
margin-bottom: 0;
|
|
8953
8986
|
}
|
|
8954
8987
|
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
border-
|
|
8988
|
+
.pa-profile-panel__tabs .pa-tabs__item {
|
|
8989
|
+
color: var(--pa-header-text-secondary);
|
|
8990
|
+
border-bottom-color: transparent;
|
|
8958
8991
|
}
|
|
8959
8992
|
|
|
8960
|
-
|
|
8961
|
-
|
|
8993
|
+
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
8994
|
+
color: var(--pa-header-text);
|
|
8995
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
8996
|
+
}
|
|
8997
|
+
|
|
8998
|
+
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
8999
|
+
color: var(--pa-header-text);
|
|
9000
|
+
border-bottom-color: var(--pa-accent);
|
|
9001
|
+
}
|
|
9002
|
+
|
|
9003
|
+
.pa-profile-panel__favorites {
|
|
9004
|
+
display: flex;
|
|
9005
|
+
flex-direction: column;
|
|
9006
|
+
gap: 0.8rem;
|
|
9007
|
+
}
|
|
9008
|
+
|
|
9009
|
+
.pa-profile-panel__favorites ul {
|
|
9010
|
+
list-style: none;
|
|
9011
|
+
margin: 0;
|
|
9012
|
+
padding: 0;
|
|
9013
|
+
}
|
|
9014
|
+
|
|
9015
|
+
.pa-profile-panel__favorites li {
|
|
9016
|
+
margin-bottom: 0.8rem;
|
|
9017
|
+
}
|
|
9018
|
+
|
|
9019
|
+
.pa-profile-panel__favorite-item {
|
|
9020
|
+
display: flex;
|
|
9021
|
+
align-items: center;
|
|
9022
|
+
gap: 1.2rem;
|
|
9023
|
+
padding: 0.8rem 1.6rem;
|
|
9024
|
+
color: var(--pa-text-primary);
|
|
9025
|
+
text-decoration: none;
|
|
8962
9026
|
border-radius: 4px;
|
|
8963
|
-
|
|
9027
|
+
cursor: pointer;
|
|
9028
|
+
transition: background-color 0.1s ease-out, color 0.1s ease-out;
|
|
9029
|
+
font-weight: 500;
|
|
8964
9030
|
}
|
|
8965
9031
|
|
|
8966
|
-
|
|
8967
|
-
background:
|
|
8968
|
-
|
|
9032
|
+
.pa-profile-panel__favorite-item:hover {
|
|
9033
|
+
background-color: var(--pa-accent-light);
|
|
9034
|
+
color: var(--pa-accent);
|
|
8969
9035
|
}
|
|
8970
9036
|
|
|
8971
|
-
|
|
8972
|
-
|
|
9037
|
+
.pa-profile-panel__favorite-item:focus {
|
|
9038
|
+
outline: 2px solid var(--pa-accent);
|
|
9039
|
+
outline-offset: 2px;
|
|
8973
9040
|
}
|
|
8974
9041
|
|
|
8975
|
-
|
|
8976
|
-
|
|
9042
|
+
.pa-profile-panel__favorite-icon {
|
|
9043
|
+
font-size: 1.6rem;
|
|
9044
|
+
width: 2.4rem;
|
|
9045
|
+
text-align: center;
|
|
8977
9046
|
}
|
|
8978
9047
|
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
scrollbar-width: auto;
|
|
8982
|
-
scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
|
|
9048
|
+
.pa-profile-panel__favorite-label {
|
|
9049
|
+
flex: 1;
|
|
8983
9050
|
}
|
|
8984
9051
|
|
|
9052
|
+
.pa-profile-panel__favorite-remove {
|
|
9053
|
+
opacity: 0;
|
|
9054
|
+
margin-left: auto;
|
|
9055
|
+
background: none;
|
|
9056
|
+
border: none;
|
|
9057
|
+
padding: 0.8rem;
|
|
9058
|
+
color: var(--pa-text-secondary);
|
|
9059
|
+
cursor: pointer;
|
|
9060
|
+
border-radius: 4px;
|
|
9061
|
+
font-size: 1.4rem;
|
|
9062
|
+
line-height: 1;
|
|
9063
|
+
transition: opacity 0.1s ease-out, color 0.1s ease-out, background-color 0.1s ease-out;
|
|
9064
|
+
}
|
|
9065
|
+
|
|
9066
|
+
.pa-profile-panel__favorite-remove:hover {
|
|
9067
|
+
color: var(--pa-danger);
|
|
9068
|
+
background-color: var(--pa-danger-bg-light);
|
|
9069
|
+
}
|
|
9070
|
+
|
|
9071
|
+
.pa-profile-panel__favorite-item:hover .pa-profile-panel__favorite-remove {
|
|
9072
|
+
opacity: 1;
|
|
9073
|
+
}
|
|
9074
|
+
|
|
9075
|
+
.pa-profile-panel__favorites-add {
|
|
9076
|
+
margin-top: auto;
|
|
9077
|
+
padding-top: 1.2rem;
|
|
9078
|
+
}
|
|
9079
|
+
|
|
9080
|
+
@media (max-width: 768px) {
|
|
9081
|
+
.pa-profile-panel__content {
|
|
9082
|
+
width: 85vw;
|
|
9083
|
+
max-width: 40rem;
|
|
9084
|
+
}
|
|
9085
|
+
.pa-header__profile-name {
|
|
9086
|
+
display: none;
|
|
9087
|
+
}
|
|
9088
|
+
}
|
|
8985
9089
|
/* ========================================
|
|
8986
9090
|
Modal Components
|
|
8987
9091
|
Modal windows with overlay, sizes, and themed headers
|
|
@@ -10175,7 +10279,7 @@ code {
|
|
|
10175
10279
|
flex-shrink: 0;
|
|
10176
10280
|
font-size: 1.2rem;
|
|
10177
10281
|
padding: 2px 0.4rem;
|
|
10178
|
-
background-color: #
|
|
10282
|
+
background-color: #e8e8e8;
|
|
10179
10283
|
color: var(--pa-text-secondary);
|
|
10180
10284
|
border-radius: 2px;
|
|
10181
10285
|
}
|
|
@@ -10197,7 +10301,7 @@ code {
|
|
|
10197
10301
|
|
|
10198
10302
|
.pa-command-palette__key {
|
|
10199
10303
|
padding: 2px 0.4rem;
|
|
10200
|
-
background-color: #
|
|
10304
|
+
background-color: #e8e8e8;
|
|
10201
10305
|
border: 1px solid var(--pa-border-color);
|
|
10202
10306
|
border-radius: 2px;
|
|
10203
10307
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
@@ -10334,7 +10438,7 @@ code {
|
|
|
10334
10438
|
font-size: 1rem;
|
|
10335
10439
|
font-weight: 500;
|
|
10336
10440
|
color: var(--pa-text-secondary);
|
|
10337
|
-
background-color: #
|
|
10441
|
+
background-color: #e8e8e8;
|
|
10338
10442
|
border: 1px solid var(--pa-border-color);
|
|
10339
10443
|
border-radius: 2px;
|
|
10340
10444
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -10407,7 +10511,7 @@ code {
|
|
|
10407
10511
|
font-size: 1rem;
|
|
10408
10512
|
font-weight: 500;
|
|
10409
10513
|
color: var(--pa-text-primary);
|
|
10410
|
-
background-color: #
|
|
10514
|
+
background-color: #e8e8e8;
|
|
10411
10515
|
border: 1px solid var(--pa-border-color);
|
|
10412
10516
|
border-radius: 2px;
|
|
10413
10517
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -12640,21 +12744,27 @@ html.font-size-4xl {
|
|
|
12640
12744
|
--base-accent-color-active: #888888;
|
|
12641
12745
|
--base-accent-color-light: rgba(85, 85, 85, 0.05);
|
|
12642
12746
|
--base-accent-color-light-hover: rgba(85, 85, 85, 0.08);
|
|
12747
|
+
--base-text-color-1: #333333;
|
|
12748
|
+
--base-text-color-2: #777777;
|
|
12749
|
+
--base-text-color-3: #e2e6ea;
|
|
12750
|
+
--base-text-color-4: #d8d8d8;
|
|
12751
|
+
--base-text-color-on-accent: #ffffff;
|
|
12752
|
+
--base-surface-1: #ffffff;
|
|
12753
|
+
--base-surface-2: #fafafa;
|
|
12754
|
+
--base-surface-3: #e8e8e8;
|
|
12755
|
+
--base-surface-inverse: #333333;
|
|
12756
|
+
--base-overlay-bg: rgba(0, 0, 0, 0.4);
|
|
12757
|
+
--base-shadow-color: rgba(0, 0, 0, 0.1);
|
|
12643
12758
|
--base-primary-bg: #ffffff;
|
|
12644
12759
|
--base-primary-bg-hover: rgb(242.25, 242.25, 242.25);
|
|
12645
|
-
--base-
|
|
12646
|
-
--base-
|
|
12647
|
-
--base-text-color-3: rgb(128.4, 139.2, 150);
|
|
12648
|
-
--base-text-color-4: rgb(170.6, 177.8, 185);
|
|
12649
|
-
--base-text-color-on-accent: #ffffff;
|
|
12650
|
-
--base-border-color: #e1e5e9;
|
|
12651
|
-
--base-border: 1px solid #e1e5e9;
|
|
12760
|
+
--base-border-color: #e8e8e8;
|
|
12761
|
+
--base-border: 1px solid #e8e8e8;
|
|
12652
12762
|
--base-input-bg: #ffffff;
|
|
12653
|
-
--base-input-color: #
|
|
12654
|
-
--base-input-border: 1px solid #
|
|
12655
|
-
--base-input-border-hover: 1px solid
|
|
12656
|
-
--base-input-border-focus: 1px solid #
|
|
12657
|
-
--base-input-placeholder-color:
|
|
12763
|
+
--base-input-color: #333333;
|
|
12764
|
+
--base-input-border: 1px solid #e8e8e8;
|
|
12765
|
+
--base-input-border-hover: 1px solid #777777;
|
|
12766
|
+
--base-input-border-focus: 1px solid #555555;
|
|
12767
|
+
--base-input-placeholder-color: #d8d8d8;
|
|
12658
12768
|
--base-input-bg-disabled: rgba(255, 255, 255, 0.5);
|
|
12659
12769
|
--base-input-size-xs-height: 3.1;
|
|
12660
12770
|
--base-input-size-sm-height: 3.3;
|
|
@@ -12662,11 +12772,48 @@ html.font-size-4xl {
|
|
|
12662
12772
|
--base-input-size-lg-height: 3.8;
|
|
12663
12773
|
--base-input-size-xl-height: 4.1;
|
|
12664
12774
|
--base-dropdown-bg: #ffffff;
|
|
12665
|
-
--base-dropdown-border:
|
|
12666
|
-
--base-dropdown-box-shadow: 0
|
|
12667
|
-
--base-tooltip-bg: #
|
|
12775
|
+
--base-dropdown-border: #e8e8e8;
|
|
12776
|
+
--base-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
12777
|
+
--base-tooltip-bg: #333333;
|
|
12668
12778
|
--base-tooltip-text-color: #ffffff;
|
|
12669
|
-
--base-
|
|
12779
|
+
--base-success-color: #28a745;
|
|
12780
|
+
--base-success-color-hover: #218838;
|
|
12781
|
+
--base-success-bg-light: rgba(40, 167, 69, 0.1);
|
|
12782
|
+
--base-success-bg-subtle: rgba(40, 167, 69, 0.08);
|
|
12783
|
+
--base-success-border: rgba(40, 167, 69, 0.2);
|
|
12784
|
+
--base-success-text: #155724;
|
|
12785
|
+
--base-success-text-light: #d4edda;
|
|
12786
|
+
--base-text-on-success: #ffffff;
|
|
12787
|
+
--base-danger-color: #dc3545;
|
|
12788
|
+
--base-danger-color-hover: #c82333;
|
|
12789
|
+
--base-danger-bg-light: rgba(220, 53, 69, 0.1);
|
|
12790
|
+
--base-danger-bg-subtle: rgba(220, 53, 69, 0.08);
|
|
12791
|
+
--base-danger-border: rgba(220, 53, 69, 0.2);
|
|
12792
|
+
--base-danger-text: #721c24;
|
|
12793
|
+
--base-danger-text-light: #f8d7da;
|
|
12794
|
+
--base-text-on-danger: #ffffff;
|
|
12795
|
+
--base-warning-color: #ffc107;
|
|
12796
|
+
--base-warning-color-hover: #e0a800;
|
|
12797
|
+
--base-warning-bg-light: rgba(255, 193, 7, 0.1);
|
|
12798
|
+
--base-warning-bg-subtle: rgba(255, 193, 7, 0.08);
|
|
12799
|
+
--base-warning-border: rgba(255, 193, 7, 0.2);
|
|
12800
|
+
--base-warning-text: #856404;
|
|
12801
|
+
--base-warning-text-light: #fff3cd;
|
|
12802
|
+
--base-text-on-warning: #212529;
|
|
12803
|
+
--base-info-color: #17a2b8;
|
|
12804
|
+
--base-info-color-hover: #138496;
|
|
12805
|
+
--base-info-bg-light: rgba(23, 162, 184, 0.1);
|
|
12806
|
+
--base-info-bg-subtle: rgba(23, 162, 184, 0.08);
|
|
12807
|
+
--base-info-border: rgba(23, 162, 184, 0.2);
|
|
12808
|
+
--base-info-text: #0c5460;
|
|
12809
|
+
--base-info-text-light: #d1ecf1;
|
|
12810
|
+
--base-text-on-info: #ffffff;
|
|
12811
|
+
--base-hover-overlay: rgba(0, 0, 0, 0.04);
|
|
12812
|
+
--base-active-overlay: rgba(0, 0, 0, 0.08);
|
|
12813
|
+
--base-focus-ring-color: rgba(85, 85, 85, 0.25);
|
|
12814
|
+
--base-focus-ring-width: 3px;
|
|
12815
|
+
--base-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
|
|
12816
|
+
--base-font-family-mono: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
12670
12817
|
--base-font-size-2xs: 1;
|
|
12671
12818
|
--base-font-size-xs: 1.2;
|
|
12672
12819
|
--base-font-size-sm: 1.4;
|
|
@@ -12677,14 +12824,15 @@ html.font-size-4xl {
|
|
|
12677
12824
|
--base-font-weight-normal: 400;
|
|
12678
12825
|
--base-font-weight-medium: 500;
|
|
12679
12826
|
--base-font-weight-semibold: 600;
|
|
12680
|
-
--base-
|
|
12827
|
+
--base-font-weight-bold: 700;
|
|
12828
|
+
--base-line-height-tight: 1.25;
|
|
12681
12829
|
--base-line-height-normal: 1.5;
|
|
12682
|
-
--base-line-height-relaxed: 1.
|
|
12830
|
+
--base-line-height-relaxed: 1.75;
|
|
12683
12831
|
--base-border-radius-sm: 0.4;
|
|
12684
12832
|
--base-border-radius-md: 0.6;
|
|
12685
12833
|
--base-border-radius-lg: 0.8;
|
|
12686
12834
|
--pa-primary-bg: #ffffff;
|
|
12687
|
-
--pa-bg-secondary: #
|
|
12835
|
+
--pa-bg-secondary: #fafafa;
|
|
12688
12836
|
--pa-content-bg: #ffffff;
|
|
12689
12837
|
--pa-text-primary: #333333;
|
|
12690
12838
|
--pa-text-secondary: #777777;
|
|
@@ -12693,18 +12841,18 @@ html.font-size-4xl {
|
|
|
12693
12841
|
--pa-accent-light: rgba(85, 85, 85, 0.05);
|
|
12694
12842
|
--pa-border-color: #e8e8e8;
|
|
12695
12843
|
--pa-header-bg: #fafafa;
|
|
12696
|
-
--pa-header-border-color: #
|
|
12697
|
-
--pa-header-text: #
|
|
12698
|
-
--pa-header-text-secondary: #
|
|
12699
|
-
--pa-header-profile-name-color: #
|
|
12844
|
+
--pa-header-border-color: #e8e8e8;
|
|
12845
|
+
--pa-header-text: #333333;
|
|
12846
|
+
--pa-header-text-secondary: #777777;
|
|
12847
|
+
--pa-header-profile-name-color: #333333;
|
|
12700
12848
|
--pa-sidebar-bg: #f8f8f8;
|
|
12701
|
-
--pa-sidebar-text: #
|
|
12702
|
-
--pa-sidebar-text-secondary: #
|
|
12849
|
+
--pa-sidebar-text: #333333;
|
|
12850
|
+
--pa-sidebar-text-secondary: #777777;
|
|
12703
12851
|
--pa-sidebar-submenu-bg: #e8e8e8;
|
|
12704
|
-
--pa-sidebar-submenu-hover-bg:
|
|
12705
|
-
--pa-sidebar-submenu-active-bg:
|
|
12852
|
+
--pa-sidebar-submenu-hover-bg: rgb(219.25, 219.25, 219.25);
|
|
12853
|
+
--pa-sidebar-submenu-active-bg: rgb(206.5, 206.5, 206.5);
|
|
12706
12854
|
--pa-footer-bg: #fafafa;
|
|
12707
|
-
--pa-footer-border-color: #
|
|
12855
|
+
--pa-footer-border-color: #e8e8e8;
|
|
12708
12856
|
--pa-btn-primary-bg: #555555;
|
|
12709
12857
|
--pa-btn-primary-bg-hover: #444444;
|
|
12710
12858
|
--pa-btn-primary-bg-light: rgba(85, 85, 85, 0.05);
|
|
@@ -12731,7 +12879,7 @@ html.font-size-4xl {
|
|
|
12731
12879
|
--pa-btn-dark-bg-hover: #23272b;
|
|
12732
12880
|
--pa-btn-dark-text: #ffffff;
|
|
12733
12881
|
--pa-success-bg: #28a745;
|
|
12734
|
-
--pa-success-bg-hover: #
|
|
12882
|
+
--pa-success-bg-hover: #218838;
|
|
12735
12883
|
--pa-success-bg-light: rgba(40, 167, 69, 0.1);
|
|
12736
12884
|
--pa-success-bg-subtle: rgba(40, 167, 69, 0.08);
|
|
12737
12885
|
--pa-success-border: rgba(40, 167, 69, 0.2);
|
|
@@ -12752,7 +12900,7 @@ html.font-size-4xl {
|
|
|
12752
12900
|
--pa-warning-text: #856404;
|
|
12753
12901
|
--pa-warning-text-light: #fff3cd;
|
|
12754
12902
|
--pa-info-bg: #17a2b8;
|
|
12755
|
-
--pa-info-bg-hover: #
|
|
12903
|
+
--pa-info-bg-hover: #138496;
|
|
12756
12904
|
--pa-info-bg-light: rgba(23, 162, 184, 0.1);
|
|
12757
12905
|
--pa-info-bg-subtle: rgba(23, 162, 184, 0.08);
|
|
12758
12906
|
--pa-info-border: rgba(23, 162, 184, 0.2);
|
|
@@ -12763,12 +12911,12 @@ html.font-size-4xl {
|
|
|
12763
12911
|
--pa-card-footer-bg: #fafafa;
|
|
12764
12912
|
--pa-card-tabs-bg: #f8f8f8;
|
|
12765
12913
|
--pa-input-bg: #ffffff;
|
|
12766
|
-
--pa-input-border: #e8e8e8;
|
|
12914
|
+
--pa-input-border: 1px solid #e8e8e8;
|
|
12767
12915
|
--pa-input-text: #333333;
|
|
12768
12916
|
--pa-input-focus-border-color: #555555;
|
|
12769
12917
|
--pa-select-focus-border-color: #555555;
|
|
12770
12918
|
--pa-textarea-focus-border-color: #555555;
|
|
12771
|
-
--pa-checkbox-border-color: #
|
|
12919
|
+
--pa-checkbox-border-color: #e8e8e8;
|
|
12772
12920
|
--pa-checkbox-border-color-hover: #555555;
|
|
12773
12921
|
--pa-checkbox-border-color-checked: #555555;
|
|
12774
12922
|
--pa-checkbox-bg: #ffffff;
|
|
@@ -12776,15 +12924,15 @@ html.font-size-4xl {
|
|
|
12776
12924
|
--pa-checkbox-bg-indeterminate: #555555;
|
|
12777
12925
|
--pa-checkbox-checkmark-color: white;
|
|
12778
12926
|
--pa-checkbox-focus-shadow: 0 0 0 2px rgba(85, 85, 85, 0.25);
|
|
12779
|
-
--pa-input-group-prepend-bg: #
|
|
12780
|
-
--pa-input-group-prepend-text: #
|
|
12781
|
-
--pa-input-group-append-bg: #
|
|
12782
|
-
--pa-input-group-append-text: #
|
|
12927
|
+
--pa-input-group-prepend-bg: #fafafa;
|
|
12928
|
+
--pa-input-group-prepend-text: #777777;
|
|
12929
|
+
--pa-input-group-append-bg: #fafafa;
|
|
12930
|
+
--pa-input-group-append-text: #777777;
|
|
12783
12931
|
--pa-table-bg: #ffffff;
|
|
12784
12932
|
--pa-table-header-bg: #f8f9fa;
|
|
12785
12933
|
--pa-table-stripe: #fcfcfc;
|
|
12786
12934
|
--pa-table-hover-bg: #f8f9fa;
|
|
12787
|
-
--pa-table-hover-accent-color: #
|
|
12935
|
+
--pa-table-hover-accent-color: #555555;
|
|
12788
12936
|
--pa-modal-overlay-bg: rgba(0, 0, 0, 0.4);
|
|
12789
12937
|
--pa-modal-content-bg: #ffffff;
|
|
12790
12938
|
--pa-alert-success-bg: rgba(40, 167, 69, 0.08);
|
|
@@ -12808,10 +12956,10 @@ html.font-size-4xl {
|
|
|
12808
12956
|
--pa-badge-danger-bg: #f8d7da;
|
|
12809
12957
|
--pa-badge-danger-text: #721c24;
|
|
12810
12958
|
--pa-composite-badge-icon-bg: #6c757d;
|
|
12811
|
-
--pa-composite-badge-label-bg: #
|
|
12812
|
-
--pa-composite-badge-label-text: #
|
|
12813
|
-
--pa-composite-badge-label-hover-bg: #
|
|
12814
|
-
--pa-tooltip-bg: #
|
|
12959
|
+
--pa-composite-badge-label-bg: #e8e8e8;
|
|
12960
|
+
--pa-composite-badge-label-text: #333333;
|
|
12961
|
+
--pa-composite-badge-label-hover-bg: #e8e8e8;
|
|
12962
|
+
--pa-tooltip-bg: #333333;
|
|
12815
12963
|
--pa-tooltip-text: #ffffff;
|
|
12816
12964
|
--pa-popover-content-bg: #ffffff;
|
|
12817
12965
|
--pa-popover-text-light: #ffffff;
|
|
@@ -12819,18 +12967,18 @@ html.font-size-4xl {
|
|
|
12819
12967
|
--pa-loader-overlay-bg: rgba(255, 255, 255, 0.8);
|
|
12820
12968
|
--pa-profile-overlay-bg: rgba(0, 0, 0, 0.3);
|
|
12821
12969
|
--pa-command-palette-backdrop-bg: rgba(0, 0, 0, 0.5);
|
|
12822
|
-
--pa-command-palette-item-hover-bg: rgba(
|
|
12823
|
-
--pa-command-palette-item-active-bg: rgba(
|
|
12824
|
-
--pa-command-palette-highlight-bg: rgba(
|
|
12825
|
-
--pa-command-palette-highlight-text: #
|
|
12970
|
+
--pa-command-palette-item-hover-bg: rgba(85, 85, 85, 0.05);
|
|
12971
|
+
--pa-command-palette-item-active-bg: rgba(85, 85, 85, 0.1);
|
|
12972
|
+
--pa-command-palette-highlight-bg: rgba(85, 85, 85, 0.2);
|
|
12973
|
+
--pa-command-palette-highlight-text: #555555;
|
|
12826
12974
|
--pa-multiselect-dropdown-bg: #ffffff;
|
|
12827
|
-
--pa-multiselect-dropdown-border: #
|
|
12828
|
-
--pa-multiselect-dropdown-text: #
|
|
12829
|
-
--pa-multiselect-hint-bg: #
|
|
12830
|
-
--pa-multiselect-hint-border: #
|
|
12831
|
-
--pa-multiselect-option-hover-bg: #
|
|
12832
|
-
--pa-multiselect-pill-bg: rgba(
|
|
12833
|
-
--pa-multiselect-pill-border: #
|
|
12975
|
+
--pa-multiselect-dropdown-border: #e8e8e8;
|
|
12976
|
+
--pa-multiselect-dropdown-text: #333333;
|
|
12977
|
+
--pa-multiselect-hint-bg: #fafafa;
|
|
12978
|
+
--pa-multiselect-hint-border: #e8e8e8;
|
|
12979
|
+
--pa-multiselect-option-hover-bg: #fafafa;
|
|
12980
|
+
--pa-multiselect-pill-bg: rgba(85, 85, 85, 0.05);
|
|
12981
|
+
--pa-multiselect-pill-border: #555555;
|
|
12834
12982
|
--drp-dropdown-bg: #ffffff;
|
|
12835
12983
|
--drp-border-color: #e8e8e8;
|
|
12836
12984
|
--drp-primary-bg: #fafafa;
|
|
@@ -12951,19 +13099,19 @@ html.font-size-4xl {
|
|
|
12951
13099
|
--pa-danger-bg-light: rgba(220, 53, 69, 0.2);
|
|
12952
13100
|
--pa-info-bg: #17a2b8;
|
|
12953
13101
|
--pa-info-bg-light: rgba(23, 162, 184, 0.2);
|
|
12954
|
-
--base-
|
|
12955
|
-
--base-
|
|
13102
|
+
--base-surface-1: #242424;
|
|
13103
|
+
--base-surface-2: #1a1a1a;
|
|
13104
|
+
--base-surface-3: #2e2e2e;
|
|
12956
13105
|
--base-text-color-1: #e8e8e8;
|
|
12957
13106
|
--base-text-color-2: #a0a0a0;
|
|
13107
|
+
--base-text-color-3: #707070;
|
|
13108
|
+
--base-text-color-4: #505050;
|
|
12958
13109
|
--base-accent-color: #e8e8e8;
|
|
12959
13110
|
--base-accent-color-hover: #ffffff;
|
|
12960
13111
|
--base-accent-color-active: #ffffff;
|
|
12961
13112
|
--base-accent-color-light: rgba(232, 232, 232, 0.15);
|
|
12962
13113
|
--base-accent-color-light-hover: rgba(232, 232, 232, 0.2);
|
|
12963
|
-
--base-text-color-3: #707070;
|
|
12964
|
-
--base-text-color-4: #505050;
|
|
12965
13114
|
--base-border-color: #404040;
|
|
12966
|
-
--base-border: 1px solid #404040;
|
|
12967
13115
|
--base-input-bg: #2e2e2e;
|
|
12968
13116
|
--base-input-color: #e8e8e8;
|
|
12969
13117
|
--base-input-border: 1px solid #404040;
|
|
@@ -12971,7 +13119,7 @@ html.font-size-4xl {
|
|
|
12971
13119
|
--base-input-border-focus: 1px solid #e8e8e8;
|
|
12972
13120
|
--base-input-placeholder-color: #606060;
|
|
12973
13121
|
--base-dropdown-bg: #242424;
|
|
12974
|
-
--base-dropdown-border:
|
|
13122
|
+
--base-dropdown-border: #404040;
|
|
12975
13123
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
12976
13124
|
--base-tooltip-bg: #404040;
|
|
12977
13125
|
--base-tooltip-text-color: #e8e8e8;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-minimal",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc02",
|
|
4
4
|
"description": "Minimal theme for Pure Admin",
|
|
5
5
|
"style": "dist/minimal.css",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "KeenMate",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
22
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02",
|
|
26
26
|
"sass": "^1.70.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
package/src/scss/minimal.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* Minimal Theme for Pure Admin Visual - Ultra clean, monochrome approach */
|
|
2
2
|
@use 'sass:color';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
//
|
|
4
|
+
// ============================================================================
|
|
5
|
+
// MINIMAL COLOR PALETTE - Grayscale focused
|
|
6
|
+
// ============================================================================
|
|
7
7
|
$minimal-white: #ffffff;
|
|
8
8
|
$minimal-gray-50: #fafafa;
|
|
9
9
|
$minimal-gray-100: #f8f9fa;
|
|
@@ -22,41 +22,100 @@ $minimal-dark-500: #343a40;
|
|
|
22
22
|
$minimal-dark-700: #23272b;
|
|
23
23
|
$minimal-dark-900: #212529;
|
|
24
24
|
|
|
25
|
+
// ============================================================================
|
|
26
|
+
// BASE VARIABLES - Single Source of Truth
|
|
27
|
+
// ============================================================================
|
|
28
|
+
// All framework variables will derive from these
|
|
29
|
+
|
|
30
|
+
// Accent colors (Minimal uses dark gray as accent)
|
|
31
|
+
$base-accent-color: $minimal-gray-800;
|
|
32
|
+
$base-accent-color-hover: color.adjust($minimal-gray-800, $lightness: 10%);
|
|
33
|
+
$base-accent-color-active: color.adjust($minimal-gray-800, $lightness: 20%);
|
|
34
|
+
$base-accent-color-light: rgba($minimal-gray-800, 0.05);
|
|
35
|
+
$base-accent-color-light-hover: rgba($minimal-gray-800, 0.08);
|
|
36
|
+
|
|
37
|
+
// Text colors
|
|
38
|
+
$base-text-color-1: $minimal-gray-900;
|
|
39
|
+
$base-text-color-2: $minimal-gray-700;
|
|
40
|
+
$base-text-color-3: $minimal-gray-600;
|
|
41
|
+
$base-text-color-4: $minimal-gray-500;
|
|
42
|
+
$base-text-color-on-accent: $minimal-white;
|
|
43
|
+
|
|
44
|
+
// Surface colors
|
|
45
|
+
$base-surface-1: $minimal-white; // Cards, modals
|
|
46
|
+
$base-surface-2: $minimal-gray-50; // Page background
|
|
47
|
+
$base-surface-3: $minimal-gray-400; // Dividers
|
|
48
|
+
$base-surface-inverse: $minimal-gray-900;
|
|
49
|
+
$base-overlay-bg: rgba(0, 0, 0, 0.4);
|
|
50
|
+
$base-shadow-color: rgba(0, 0, 0, 0.1);
|
|
51
|
+
|
|
52
|
+
// Border
|
|
53
|
+
$base-border-color: $minimal-gray-400;
|
|
54
|
+
|
|
55
|
+
// Input fields
|
|
56
|
+
$base-input-bg: $minimal-white;
|
|
57
|
+
$base-input-color: $minimal-gray-900;
|
|
58
|
+
$base-input-border: 1px solid $minimal-gray-400;
|
|
59
|
+
$base-input-border-hover: 1px solid $minimal-gray-700;
|
|
60
|
+
$base-input-border-focus: 1px solid $minimal-gray-800;
|
|
61
|
+
$base-input-placeholder-color: $minimal-gray-500;
|
|
62
|
+
|
|
63
|
+
// Dropdown/Popover
|
|
64
|
+
$base-dropdown-bg: $minimal-white;
|
|
65
|
+
$base-dropdown-border: $minimal-gray-400;
|
|
66
|
+
$base-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
67
|
+
|
|
68
|
+
// Tooltip
|
|
69
|
+
$base-tooltip-bg: $minimal-gray-900;
|
|
70
|
+
$base-tooltip-text-color: $minimal-white;
|
|
71
|
+
|
|
72
|
+
// Contextual colors (kept colorful for visibility in minimal theme)
|
|
73
|
+
$base-success-color: #28a745;
|
|
74
|
+
$base-success-color-hover: #218838;
|
|
75
|
+
$base-success-bg-light: rgba(40, 167, 69, 0.1);
|
|
76
|
+
$base-success-text: #155724;
|
|
77
|
+
$base-text-on-success: $minimal-white;
|
|
78
|
+
|
|
79
|
+
$base-danger-color: #dc3545;
|
|
80
|
+
$base-danger-color-hover: #c82333;
|
|
81
|
+
$base-danger-bg-light: rgba(220, 53, 69, 0.1);
|
|
82
|
+
$base-danger-text: #721c24;
|
|
83
|
+
$base-text-on-danger: $minimal-white;
|
|
84
|
+
|
|
85
|
+
$base-warning-color: #ffc107;
|
|
86
|
+
$base-warning-color-hover: #e0a800;
|
|
87
|
+
$base-warning-bg-light: rgba(255, 193, 7, 0.1);
|
|
88
|
+
$base-warning-text: #856404;
|
|
89
|
+
$base-text-on-warning: $minimal-dark-900;
|
|
90
|
+
|
|
91
|
+
$base-info-color: #17a2b8;
|
|
92
|
+
$base-info-color-hover: #138496;
|
|
93
|
+
$base-info-bg-light: rgba(23, 162, 184, 0.1);
|
|
94
|
+
$base-info-text: #0c5460;
|
|
95
|
+
$base-text-on-info: $minimal-white;
|
|
96
|
+
|
|
97
|
+
// Interactive states
|
|
98
|
+
$base-focus-ring-color: rgba($minimal-gray-800, 0.25);
|
|
99
|
+
|
|
100
|
+
// ============================================================================
|
|
101
|
+
// FRAMEWORK VARIABLES - Import and let them derive from base
|
|
102
|
+
// ============================================================================
|
|
103
|
+
@import '@keenmate/pure-admin-core/src/scss/variables/index';
|
|
104
|
+
|
|
25
105
|
// Layout overrides
|
|
26
|
-
$footer-height: 3.2rem; // 32px (10px base)
|
|
27
|
-
$sidebar-width: 29rem;
|
|
106
|
+
$footer-height: 3.2rem; // 32px (10px base)
|
|
107
|
+
$sidebar-width: 29rem; // 290px (10px base)
|
|
28
108
|
|
|
29
|
-
//
|
|
109
|
+
// Layout-specific overrides
|
|
30
110
|
$primary-bg: $minimal-white;
|
|
31
111
|
$content-background-color: $minimal-white;
|
|
32
112
|
$header-bg: $minimal-gray-50;
|
|
33
113
|
$sidebar-bg: $minimal-gray-150;
|
|
34
114
|
$footer-bg: $minimal-gray-50;
|
|
35
|
-
$
|
|
36
|
-
$text-
|
|
37
|
-
$
|
|
38
|
-
$accent-
|
|
39
|
-
$accent-hover: rgba(85, 85, 85, 0.1);
|
|
40
|
-
$accent-light: rgba(85, 85, 85, 0.05);
|
|
41
|
-
|
|
42
|
-
// Sync base variables with theme colors
|
|
43
|
-
$base-accent-color: $accent-color;
|
|
44
|
-
$base-accent-color-hover: color.adjust($base-accent-color, $lightness: 10%);
|
|
45
|
-
$base-accent-color-active: color.adjust($base-accent-color, $lightness: 20%);
|
|
46
|
-
$base-accent-color-light: $accent-light;
|
|
47
|
-
$base-accent-color-light-hover: rgba($base-accent-color, 0.08);
|
|
48
|
-
|
|
49
|
-
// Form focus colors - must match accent color
|
|
50
|
-
$input-focus-border-color: $accent-color;
|
|
51
|
-
$select-focus-border-color: $accent-color;
|
|
52
|
-
$textarea-focus-border-color: $accent-color;
|
|
53
|
-
|
|
54
|
-
// Checkbox colors - must match accent color
|
|
55
|
-
$checkbox-border-color-hover: $accent-color;
|
|
56
|
-
$checkbox-border-color-checked: $accent-color;
|
|
57
|
-
$checkbox-bg-checked: $accent-color;
|
|
58
|
-
$checkbox-bg-indeterminate: $accent-color;
|
|
59
|
-
$checkbox-focus-shadow: 0 0 0 2px rgba($accent-color, 0.25);
|
|
115
|
+
$text-primary: $base-text-color-1;
|
|
116
|
+
$text-secondary: $base-text-color-2;
|
|
117
|
+
$accent-hover: rgba($minimal-gray-800, 0.1);
|
|
118
|
+
$accent-light: rgba($minimal-gray-800, 0.05);
|
|
60
119
|
|
|
61
120
|
// Card colors
|
|
62
121
|
$card-bg: $minimal-white;
|
|
@@ -65,9 +124,21 @@ $card-footer-bg: $minimal-gray-50;
|
|
|
65
124
|
$card-tabs-bg: $minimal-gray-150;
|
|
66
125
|
|
|
67
126
|
// Input colors
|
|
68
|
-
$input-bg: $
|
|
69
|
-
$input-border: $
|
|
70
|
-
$input-text: $
|
|
127
|
+
$input-bg: $base-input-bg;
|
|
128
|
+
$input-border: $base-input-border;
|
|
129
|
+
$input-text: $base-input-color;
|
|
130
|
+
|
|
131
|
+
// Form focus colors
|
|
132
|
+
$input-focus-border-color: $base-accent-color;
|
|
133
|
+
$select-focus-border-color: $base-accent-color;
|
|
134
|
+
$textarea-focus-border-color: $base-accent-color;
|
|
135
|
+
|
|
136
|
+
// Checkbox colors
|
|
137
|
+
$checkbox-border-color-hover: $base-accent-color;
|
|
138
|
+
$checkbox-border-color-checked: $base-accent-color;
|
|
139
|
+
$checkbox-bg-checked: $base-accent-color;
|
|
140
|
+
$checkbox-bg-indeterminate: $base-accent-color;
|
|
141
|
+
$checkbox-focus-shadow: 0 0 0 2px $base-focus-ring-color;
|
|
71
142
|
|
|
72
143
|
// Table colors
|
|
73
144
|
$table-bg: $minimal-white;
|
|
@@ -80,32 +151,24 @@ $btn-primary-bg: $minimal-gray-800;
|
|
|
80
151
|
$btn-primary-bg-hover: $minimal-gray-850;
|
|
81
152
|
$btn-secondary-bg: $minimal-gray-400;
|
|
82
153
|
$btn-secondary-bg-hover: $minimal-gray-500;
|
|
83
|
-
$btn-success-bg: #28a745;
|
|
84
|
-
$btn-success-bg-hover: #218838;
|
|
85
|
-
$btn-warning-bg: #ffc107;
|
|
86
|
-
$btn-warning-text: $minimal-dark-900;
|
|
87
|
-
$btn-danger-bg: #dc3545;
|
|
88
|
-
$btn-danger-bg-hover: #c82333;
|
|
89
|
-
$btn-info-bg: #17a2b8;
|
|
90
|
-
$btn-info-bg-hover: #138496;
|
|
91
154
|
$btn-light-bg: $minimal-gray-100;
|
|
92
155
|
$btn-light-text: $minimal-gray-900;
|
|
93
156
|
$btn-light-bg-hover: $minimal-gray-600;
|
|
94
157
|
$btn-dark-bg: $minimal-dark-500;
|
|
95
158
|
$btn-dark-bg-hover: $minimal-dark-700;
|
|
96
159
|
|
|
97
|
-
// Validation shadow colors
|
|
98
|
-
$success-bg: $
|
|
99
|
-
$
|
|
100
|
-
$
|
|
101
|
-
$warning-bg-light: rgba(255, 193, 7, 0.1);
|
|
102
|
-
$danger-bg: $btn-danger-bg;
|
|
103
|
-
$danger-bg-light: rgba(220, 53, 69, 0.1);
|
|
160
|
+
// Validation shadow colors
|
|
161
|
+
$success-bg-light: $base-success-bg-light;
|
|
162
|
+
$warning-bg-light: $base-warning-bg-light;
|
|
163
|
+
$danger-bg-light: $base-danger-bg-light;
|
|
104
164
|
|
|
105
165
|
// Modal colors
|
|
106
|
-
$modal-overlay-bg:
|
|
166
|
+
$modal-overlay-bg: $base-overlay-bg;
|
|
107
167
|
$modal-content-bg: $minimal-white;
|
|
108
168
|
|
|
169
|
+
// ============================================================================
|
|
170
|
+
// CORE IMPORTS
|
|
171
|
+
// ============================================================================
|
|
109
172
|
@import '@keenmate/pure-admin-core/src/scss/core';
|
|
110
173
|
@import '@keenmate/pure-admin-core/src/scss/utilities';
|
|
111
174
|
@import '@keenmate/pure-admin-core/src/scss/base-css-variables';
|
|
@@ -118,10 +181,10 @@ $modal-content-bg: $minimal-white;
|
|
|
118
181
|
--page-loader-spinner-border: #e0e0e0;
|
|
119
182
|
--page-loader-spinner-accent: #{$minimal-gray-800};
|
|
120
183
|
|
|
121
|
-
// Base CSS variables for web components
|
|
184
|
+
// Base CSS variables for web components
|
|
122
185
|
@include output-base-css-variables;
|
|
123
186
|
|
|
124
|
-
// Pure Admin theme CSS variables
|
|
187
|
+
// Pure Admin theme CSS variables
|
|
125
188
|
@include output-pa-css-variables;
|
|
126
189
|
|
|
127
190
|
// Web component overrides (light mode)
|
|
@@ -298,19 +361,19 @@ $modal-content-bg: $minimal-white;
|
|
|
298
361
|
--pa-info-bg-light: rgba(23, 162, 184, 0.2);
|
|
299
362
|
|
|
300
363
|
// Base variables for web components (dark mode)
|
|
301
|
-
--base-
|
|
302
|
-
--base-
|
|
364
|
+
--base-surface-1: #{$dark-card};
|
|
365
|
+
--base-surface-2: #{$dark-bg};
|
|
366
|
+
--base-surface-3: #{$dark-surface};
|
|
303
367
|
--base-text-color-1: #{$dark-text};
|
|
304
368
|
--base-text-color-2: #{$dark-text-secondary};
|
|
369
|
+
--base-text-color-3: #707070;
|
|
370
|
+
--base-text-color-4: #505050;
|
|
305
371
|
--base-accent-color: #{$dark-text};
|
|
306
372
|
--base-accent-color-hover: #ffffff;
|
|
307
373
|
--base-accent-color-active: #ffffff;
|
|
308
374
|
--base-accent-color-light: rgba(232, 232, 232, 0.15);
|
|
309
375
|
--base-accent-color-light-hover: rgba(232, 232, 232, 0.2);
|
|
310
|
-
--base-text-color-3: #707070;
|
|
311
|
-
--base-text-color-4: #505050;
|
|
312
376
|
--base-border-color: #{$dark-border};
|
|
313
|
-
--base-border: 1px solid #{$dark-border};
|
|
314
377
|
--base-input-bg: #{$dark-surface};
|
|
315
378
|
--base-input-color: #{$dark-text};
|
|
316
379
|
--base-input-border: 1px solid #{$dark-border};
|
|
@@ -318,7 +381,7 @@ $modal-content-bg: $minimal-white;
|
|
|
318
381
|
--base-input-border-focus: 1px solid #{$dark-text};
|
|
319
382
|
--base-input-placeholder-color: #606060;
|
|
320
383
|
--base-dropdown-bg: #{$dark-card};
|
|
321
|
-
--base-dropdown-border:
|
|
384
|
+
--base-dropdown-border: #{$dark-border};
|
|
322
385
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
323
386
|
--base-tooltip-bg: #{$dark-border};
|
|
324
387
|
--base-tooltip-text-color: #{$dark-text};
|
|
@@ -397,4 +460,4 @@ $modal-content-bg: $minimal-white;
|
|
|
397
460
|
color: #e8e8e8 !important;
|
|
398
461
|
}
|
|
399
462
|
}
|
|
400
|
-
}
|
|
463
|
+
}
|