@keenmate/pure-admin-theme-audi 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/audi.css +278 -121
- package/package.json +3 -3
- package/src/scss/audi.scss +142 -135
package/dist/audi.css
CHANGED
|
@@ -171,6 +171,42 @@ label {
|
|
|
171
171
|
font-size: inherit;
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
/* Webkit browsers (Chrome, Safari, Edge) */
|
|
175
|
+
*::-webkit-scrollbar {
|
|
176
|
+
width: 6px;
|
|
177
|
+
height: 6px;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
*::-webkit-scrollbar-track {
|
|
181
|
+
background: var(--pa-primary-bg);
|
|
182
|
+
border-radius: 3px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
*::-webkit-scrollbar-thumb {
|
|
186
|
+
background: #333333;
|
|
187
|
+
border-radius: 3px;
|
|
188
|
+
border: 1px solid var(--pa-primary-bg);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
192
|
+
background: #ff0000;
|
|
193
|
+
border-color: rgba(255, 0, 0, 0.3);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
*::-webkit-scrollbar-thumb:active {
|
|
197
|
+
background: rgba(255, 0, 0, 0.3);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
*::-webkit-scrollbar-corner {
|
|
201
|
+
background: var(--pa-primary-bg);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/* Firefox */
|
|
205
|
+
* {
|
|
206
|
+
scrollbar-width: thin;
|
|
207
|
+
scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
|
|
208
|
+
}
|
|
209
|
+
|
|
174
210
|
/* ========================================
|
|
175
211
|
Layout V2 - Based on Testbench Structure
|
|
176
212
|
======================================== */
|
|
@@ -2503,8 +2539,8 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2503
2539
|
}
|
|
2504
2540
|
|
|
2505
2541
|
.pa-card__header {
|
|
2506
|
-
padding: 0.8rem
|
|
2507
|
-
min-height:
|
|
2542
|
+
padding: 0.8rem 1rem;
|
|
2543
|
+
min-height: 4rem;
|
|
2508
2544
|
border-top-left-radius: 2px;
|
|
2509
2545
|
border-top-right-radius: 2px;
|
|
2510
2546
|
border-bottom: 1px solid var(--pa-border-color);
|
|
@@ -2565,10 +2601,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2565
2601
|
color: var(--pa-text-primary);
|
|
2566
2602
|
font-size: 1.6rem;
|
|
2567
2603
|
font-weight: 600;
|
|
2604
|
+
line-height: 1;
|
|
2568
2605
|
}
|
|
2569
2606
|
|
|
2570
2607
|
.pa-card__body {
|
|
2571
|
-
padding: 1.6rem
|
|
2608
|
+
padding: 1.6rem 1rem;
|
|
2572
2609
|
flex: 1;
|
|
2573
2610
|
}
|
|
2574
2611
|
|
|
@@ -2581,7 +2618,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2581
2618
|
}
|
|
2582
2619
|
|
|
2583
2620
|
.pa-card__footer {
|
|
2584
|
-
padding: 1.2rem
|
|
2621
|
+
padding: 1.2rem 1rem;
|
|
2585
2622
|
border-top: 1px solid var(--pa-border-color);
|
|
2586
2623
|
border-bottom-left-radius: 2px;
|
|
2587
2624
|
border-bottom-right-radius: 2px;
|
|
@@ -2690,7 +2727,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2690
2727
|
}
|
|
2691
2728
|
|
|
2692
2729
|
.pa-card__tab {
|
|
2693
|
-
padding: 1.2rem
|
|
2730
|
+
padding: 1.2rem 1rem;
|
|
2694
2731
|
border: none;
|
|
2695
2732
|
background: none;
|
|
2696
2733
|
color: var(--pa-text-secondary);
|
|
@@ -3018,7 +3055,7 @@ a.pa-card p {
|
|
|
3018
3055
|
.pa-tabs__container--bordered {
|
|
3019
3056
|
border: 1px solid var(--pa-border-color);
|
|
3020
3057
|
border-radius: 2px;
|
|
3021
|
-
padding: 1.6rem;
|
|
3058
|
+
padding: 1.6rem 1rem;
|
|
3022
3059
|
background-color: var(--pa-card-bg);
|
|
3023
3060
|
}
|
|
3024
3061
|
|
|
@@ -3046,7 +3083,7 @@ a.pa-card p {
|
|
|
3046
3083
|
.pa-tabs__vertical-layout--bordered {
|
|
3047
3084
|
border: 1px solid var(--pa-border-color);
|
|
3048
3085
|
border-radius: 2px;
|
|
3049
|
-
padding: 1.6rem;
|
|
3086
|
+
padding: 1.6rem 1rem;
|
|
3050
3087
|
background-color: var(--pa-card-bg);
|
|
3051
3088
|
}
|
|
3052
3089
|
|
|
@@ -3174,8 +3211,8 @@ a.pa-card p {
|
|
|
3174
3211
|
}
|
|
3175
3212
|
|
|
3176
3213
|
.pa-stat__icon--info {
|
|
3177
|
-
background-color: rgba(
|
|
3178
|
-
color: #
|
|
3214
|
+
background-color: rgba(0, 153, 255, 0.25);
|
|
3215
|
+
color: #0099ff;
|
|
3179
3216
|
}
|
|
3180
3217
|
|
|
3181
3218
|
.pa-stat__content {
|
|
@@ -3213,7 +3250,7 @@ a.pa-card p {
|
|
|
3213
3250
|
font-size: 3.2rem;
|
|
3214
3251
|
font-weight: 700;
|
|
3215
3252
|
color: var(--pa-text-primary);
|
|
3216
|
-
line-height: 1;
|
|
3253
|
+
line-height: 1.1;
|
|
3217
3254
|
margin-bottom: 0.8rem;
|
|
3218
3255
|
}
|
|
3219
3256
|
|
|
@@ -3257,7 +3294,7 @@ a.pa-card p {
|
|
|
3257
3294
|
.pa-stat--square .pa-stat__number {
|
|
3258
3295
|
font-size: clamp(4.8rem, 8vw, 7.2rem);
|
|
3259
3296
|
font-weight: 700;
|
|
3260
|
-
line-height: 1;
|
|
3297
|
+
line-height: 1.1;
|
|
3261
3298
|
color: inherit;
|
|
3262
3299
|
z-index: 2px;
|
|
3263
3300
|
position: relative;
|
|
@@ -3270,7 +3307,7 @@ a.pa-card p {
|
|
|
3270
3307
|
.pa-stat--square .pa-stat__symbol {
|
|
3271
3308
|
font-size: clamp(6.4rem, 10vw, 9.6rem);
|
|
3272
3309
|
font-weight: 700;
|
|
3273
|
-
line-height: 1;
|
|
3310
|
+
line-height: 1.1;
|
|
3274
3311
|
opacity: 0.12;
|
|
3275
3312
|
color: inherit;
|
|
3276
3313
|
position: absolute;
|
|
@@ -3308,13 +3345,13 @@ a.pa-card p {
|
|
|
3308
3345
|
}
|
|
3309
3346
|
|
|
3310
3347
|
.pa-stat--square.pa-stat--info {
|
|
3311
|
-
background-color: #
|
|
3348
|
+
background-color: #0099ff;
|
|
3312
3349
|
color: #ffffff;
|
|
3313
3350
|
}
|
|
3314
3351
|
|
|
3315
3352
|
.pa-stat--square.pa-stat--warning {
|
|
3316
3353
|
background-color: #ff6600;
|
|
3317
|
-
color: #
|
|
3354
|
+
color: #ffffff;
|
|
3318
3355
|
}
|
|
3319
3356
|
|
|
3320
3357
|
.pa-stat--square.pa-stat--danger {
|
|
@@ -3418,7 +3455,7 @@ a.pa-card p {
|
|
|
3418
3455
|
|
|
3419
3456
|
.pa-list-basic--icon.pa-list-basic--info li::before {
|
|
3420
3457
|
content: "→";
|
|
3421
|
-
color: #
|
|
3458
|
+
color: #0099ff;
|
|
3422
3459
|
}
|
|
3423
3460
|
|
|
3424
3461
|
.pa-list-basic--icon.pa-list-basic--warning li::before {
|
|
@@ -3491,7 +3528,7 @@ a.pa-card p {
|
|
|
3491
3528
|
display: flex;
|
|
3492
3529
|
align-items: center;
|
|
3493
3530
|
gap: 1.2rem;
|
|
3494
|
-
padding: 1.2rem
|
|
3531
|
+
padding: 1.2rem 1rem;
|
|
3495
3532
|
border-bottom: 1px solid var(--pa-border-color);
|
|
3496
3533
|
}
|
|
3497
3534
|
|
|
@@ -3796,7 +3833,7 @@ a.pa-card p {
|
|
|
3796
3833
|
}
|
|
3797
3834
|
|
|
3798
3835
|
.pa-composite-badge--primary .pa-composite-badge__button:hover {
|
|
3799
|
-
background-color: #
|
|
3836
|
+
background-color: #ff3333;
|
|
3800
3837
|
}
|
|
3801
3838
|
|
|
3802
3839
|
.pa-composite-badge--primary .pa-composite-badge__button:focus {
|
|
@@ -4010,7 +4047,7 @@ a.pa-card p {
|
|
|
4010
4047
|
|
|
4011
4048
|
.pa-composite-badge--warning .pa-composite-badge__icon {
|
|
4012
4049
|
background-color: #ff6600;
|
|
4013
|
-
color: #
|
|
4050
|
+
color: #ffffff;
|
|
4014
4051
|
}
|
|
4015
4052
|
|
|
4016
4053
|
.pa-composite-badge--info .pa-composite-badge__icon {
|
|
@@ -4103,7 +4140,7 @@ a.pa-card p {
|
|
|
4103
4140
|
}
|
|
4104
4141
|
|
|
4105
4142
|
.pa-composite-badge--btn-primary .pa-composite-badge__button:hover {
|
|
4106
|
-
background-color: #
|
|
4143
|
+
background-color: #ff3333;
|
|
4107
4144
|
}
|
|
4108
4145
|
|
|
4109
4146
|
.pa-composite-badge--btn-primary .pa-composite-badge__button:focus {
|
|
@@ -4136,7 +4173,7 @@ a.pa-card p {
|
|
|
4136
4173
|
|
|
4137
4174
|
.pa-composite-badge--btn-warning .pa-composite-badge__button {
|
|
4138
4175
|
background-color: #ff6600;
|
|
4139
|
-
color: #
|
|
4176
|
+
color: #ffffff;
|
|
4140
4177
|
}
|
|
4141
4178
|
|
|
4142
4179
|
.pa-composite-badge--btn-warning .pa-composite-badge__button:hover {
|
|
@@ -5445,7 +5482,7 @@ a.pa-card p {
|
|
|
5445
5482
|
align-items: center;
|
|
5446
5483
|
justify-content: space-between;
|
|
5447
5484
|
padding: 0.8rem 0.3rem 0.8rem 0.8rem;
|
|
5448
|
-
border-bottom: 1px solid #
|
|
5485
|
+
border-bottom: 1px solid #333333;
|
|
5449
5486
|
background-color: var(--pa-card-header-bg);
|
|
5450
5487
|
border-radius: 4px 4px 0 0;
|
|
5451
5488
|
}
|
|
@@ -5572,7 +5609,7 @@ a.pa-card p {
|
|
|
5572
5609
|
======================================== */
|
|
5573
5610
|
.pa-alert {
|
|
5574
5611
|
position: relative;
|
|
5575
|
-
padding: 1.2rem
|
|
5612
|
+
padding: 1.2rem 1rem;
|
|
5576
5613
|
margin-bottom: 1.6rem;
|
|
5577
5614
|
border: 1px solid transparent;
|
|
5578
5615
|
border-radius: 1px;
|
|
@@ -5674,12 +5711,12 @@ a.pa-card p {
|
|
|
5674
5711
|
}
|
|
5675
5712
|
|
|
5676
5713
|
.pa-alert--sm {
|
|
5677
|
-
padding: 1.2rem
|
|
5714
|
+
padding: 1.2rem 1rem;
|
|
5678
5715
|
font-size: 1.4rem;
|
|
5679
5716
|
}
|
|
5680
5717
|
|
|
5681
5718
|
.pa-alert--lg {
|
|
5682
|
-
padding: 1.2rem
|
|
5719
|
+
padding: 1.2rem 1rem;
|
|
5683
5720
|
font-size: 1.6rem;
|
|
5684
5721
|
}
|
|
5685
5722
|
|
|
@@ -5720,7 +5757,7 @@ a.pa-card p {
|
|
|
5720
5757
|
top: 0;
|
|
5721
5758
|
right: 0;
|
|
5722
5759
|
z-index: 2px;
|
|
5723
|
-
padding: 1.2rem
|
|
5760
|
+
padding: 1.2rem 1rem;
|
|
5724
5761
|
background: none;
|
|
5725
5762
|
border: none;
|
|
5726
5763
|
font-size: 2rem;
|
|
@@ -6735,7 +6772,7 @@ web-daterangepicker {
|
|
|
6735
6772
|
/* Colors */
|
|
6736
6773
|
--drp-accent-color: #ff0000;
|
|
6737
6774
|
--drp-primary-bg: #ff0000;
|
|
6738
|
-
--drp-primary-bg-hover: #
|
|
6775
|
+
--drp-primary-bg-hover: #ff3333;
|
|
6739
6776
|
--drp-text-primary: var(--pa-text-primary);
|
|
6740
6777
|
--drp-text-secondary: var(--pa-text-secondary);
|
|
6741
6778
|
--drp-border-color: #333333;
|
|
@@ -6878,7 +6915,7 @@ web-daterangepicker {
|
|
|
6878
6915
|
--drp-badge-success: #00cc44;
|
|
6879
6916
|
--drp-badge-warning: #ff6600;
|
|
6880
6917
|
--drp-badge-danger: #ff0000;
|
|
6881
|
-
--drp-badge-info: #
|
|
6918
|
+
--drp-badge-info: #0099ff;
|
|
6882
6919
|
/* Number badges */
|
|
6883
6920
|
--drp-badge-number-bg: #ff0000;
|
|
6884
6921
|
--drp-badge-number-color: #ffffff;
|
|
@@ -6914,7 +6951,7 @@ web-daterangepicker {
|
|
|
6914
6951
|
--drp-button-cancel-border: #333333;
|
|
6915
6952
|
/* Apply button */
|
|
6916
6953
|
--drp-button-apply-bg: #ff0000;
|
|
6917
|
-
--drp-button-apply-bg-hover: #
|
|
6954
|
+
--drp-button-apply-bg-hover: #ff3333;
|
|
6918
6955
|
--drp-button-apply-color: #ffffff;
|
|
6919
6956
|
--drp-button-apply-border: #ff0000;
|
|
6920
6957
|
/* Button sizing */
|
|
@@ -8980,7 +9017,7 @@ code {
|
|
|
8980
9017
|
display: flex;
|
|
8981
9018
|
align-items: center;
|
|
8982
9019
|
gap: 1.2rem;
|
|
8983
|
-
padding:
|
|
9020
|
+
padding: 0.8rem 1.6rem;
|
|
8984
9021
|
color: var(--pa-text-primary);
|
|
8985
9022
|
text-decoration: none;
|
|
8986
9023
|
border-radius: 1px;
|
|
@@ -8999,7 +9036,7 @@ code {
|
|
|
8999
9036
|
}
|
|
9000
9037
|
|
|
9001
9038
|
.pa-profile-panel__nav-icon {
|
|
9002
|
-
font-size: 1.
|
|
9039
|
+
font-size: 1.6rem;
|
|
9003
9040
|
width: 2.4rem;
|
|
9004
9041
|
text-align: center;
|
|
9005
9042
|
}
|
|
@@ -9011,51 +9048,118 @@ code {
|
|
|
9011
9048
|
margin-top: auto;
|
|
9012
9049
|
}
|
|
9013
9050
|
|
|
9014
|
-
|
|
9015
|
-
.
|
|
9016
|
-
|
|
9017
|
-
|
|
9018
|
-
}
|
|
9019
|
-
.pa-header__profile-name {
|
|
9020
|
-
display: none;
|
|
9021
|
-
}
|
|
9051
|
+
.pa-profile-panel__tabs {
|
|
9052
|
+
padding: 0 2.4rem;
|
|
9053
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
9054
|
+
background-color: var(--pa-header-bg);
|
|
9022
9055
|
}
|
|
9023
|
-
|
|
9024
|
-
|
|
9025
|
-
|
|
9026
|
-
|
|
9056
|
+
|
|
9057
|
+
.pa-profile-panel__tabs .pa-tabs {
|
|
9058
|
+
border-bottom: none;
|
|
9059
|
+
margin-bottom: 0;
|
|
9027
9060
|
}
|
|
9028
9061
|
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
border-
|
|
9062
|
+
.pa-profile-panel__tabs .pa-tabs__item {
|
|
9063
|
+
color: var(--pa-header-text-secondary);
|
|
9064
|
+
border-bottom-color: transparent;
|
|
9032
9065
|
}
|
|
9033
9066
|
|
|
9034
|
-
|
|
9035
|
-
|
|
9067
|
+
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
9068
|
+
color: var(--pa-header-text);
|
|
9069
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
9070
|
+
}
|
|
9071
|
+
|
|
9072
|
+
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
9073
|
+
color: var(--pa-header-text);
|
|
9074
|
+
border-bottom-color: var(--pa-accent);
|
|
9075
|
+
}
|
|
9076
|
+
|
|
9077
|
+
.pa-profile-panel__favorites {
|
|
9078
|
+
display: flex;
|
|
9079
|
+
flex-direction: column;
|
|
9080
|
+
gap: 0.8rem;
|
|
9081
|
+
}
|
|
9082
|
+
|
|
9083
|
+
.pa-profile-panel__favorites ul {
|
|
9084
|
+
list-style: none;
|
|
9085
|
+
margin: 0;
|
|
9086
|
+
padding: 0;
|
|
9087
|
+
}
|
|
9088
|
+
|
|
9089
|
+
.pa-profile-panel__favorites li {
|
|
9090
|
+
margin-bottom: 0.8rem;
|
|
9091
|
+
}
|
|
9092
|
+
|
|
9093
|
+
.pa-profile-panel__favorite-item {
|
|
9094
|
+
display: flex;
|
|
9095
|
+
align-items: center;
|
|
9096
|
+
gap: 1.2rem;
|
|
9097
|
+
padding: 0.8rem 1.6rem;
|
|
9098
|
+
color: var(--pa-text-primary);
|
|
9099
|
+
text-decoration: none;
|
|
9036
9100
|
border-radius: 1px;
|
|
9037
|
-
|
|
9101
|
+
cursor: pointer;
|
|
9102
|
+
transition: background-color 0.1s ease-out, color 0.1s ease-out;
|
|
9103
|
+
font-weight: 500;
|
|
9038
9104
|
}
|
|
9039
9105
|
|
|
9040
|
-
|
|
9041
|
-
background:
|
|
9042
|
-
|
|
9106
|
+
.pa-profile-panel__favorite-item:hover {
|
|
9107
|
+
background-color: var(--pa-accent-light);
|
|
9108
|
+
color: var(--pa-accent);
|
|
9043
9109
|
}
|
|
9044
9110
|
|
|
9045
|
-
|
|
9046
|
-
|
|
9111
|
+
.pa-profile-panel__favorite-item:focus {
|
|
9112
|
+
outline: 2px solid var(--pa-accent);
|
|
9113
|
+
outline-offset: 2px;
|
|
9047
9114
|
}
|
|
9048
9115
|
|
|
9049
|
-
|
|
9050
|
-
|
|
9116
|
+
.pa-profile-panel__favorite-icon {
|
|
9117
|
+
font-size: 1.6rem;
|
|
9118
|
+
width: 2.4rem;
|
|
9119
|
+
text-align: center;
|
|
9051
9120
|
}
|
|
9052
9121
|
|
|
9053
|
-
|
|
9054
|
-
|
|
9055
|
-
scrollbar-width: auto;
|
|
9056
|
-
scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
|
|
9122
|
+
.pa-profile-panel__favorite-label {
|
|
9123
|
+
flex: 1;
|
|
9057
9124
|
}
|
|
9058
9125
|
|
|
9126
|
+
.pa-profile-panel__favorite-remove {
|
|
9127
|
+
opacity: 0;
|
|
9128
|
+
margin-left: auto;
|
|
9129
|
+
background: none;
|
|
9130
|
+
border: none;
|
|
9131
|
+
padding: 0.8rem;
|
|
9132
|
+
color: var(--pa-text-secondary);
|
|
9133
|
+
cursor: pointer;
|
|
9134
|
+
border-radius: 1px;
|
|
9135
|
+
font-size: 1.4rem;
|
|
9136
|
+
line-height: 1;
|
|
9137
|
+
transition: opacity 0.1s ease-out, color 0.1s ease-out, background-color 0.1s ease-out;
|
|
9138
|
+
}
|
|
9139
|
+
|
|
9140
|
+
.pa-profile-panel__favorite-remove:hover {
|
|
9141
|
+
color: var(--pa-danger);
|
|
9142
|
+
background-color: var(--pa-danger-bg-light);
|
|
9143
|
+
}
|
|
9144
|
+
|
|
9145
|
+
.pa-profile-panel__favorite-item:hover .pa-profile-panel__favorite-remove {
|
|
9146
|
+
opacity: 1;
|
|
9147
|
+
}
|
|
9148
|
+
|
|
9149
|
+
.pa-profile-panel__favorites-add {
|
|
9150
|
+
margin-top: auto;
|
|
9151
|
+
padding-top: 1.2rem;
|
|
9152
|
+
}
|
|
9153
|
+
|
|
9154
|
+
@media (max-width: 768px) {
|
|
9155
|
+
.pa-profile-panel__content {
|
|
9156
|
+
width: 85vw;
|
|
9157
|
+
max-width: 40rem;
|
|
9158
|
+
}
|
|
9159
|
+
.pa-header__profile-name {
|
|
9160
|
+
display: none;
|
|
9161
|
+
}
|
|
9162
|
+
}
|
|
9059
9163
|
/* ========================================
|
|
9060
9164
|
Modal Components
|
|
9061
9165
|
Modal windows with overlay, sizes, and themed headers
|
|
@@ -9542,8 +9646,8 @@ code {
|
|
|
9542
9646
|
}
|
|
9543
9647
|
|
|
9544
9648
|
.pa-timeline--simple .pa-timeline__item--info::before {
|
|
9545
|
-
border-color: #
|
|
9546
|
-
box-shadow: 3px 3px 0 rgba(
|
|
9649
|
+
border-color: #0099ff;
|
|
9650
|
+
box-shadow: 3px 3px 0 rgba(0, 153, 255, 0.3);
|
|
9547
9651
|
}
|
|
9548
9652
|
|
|
9549
9653
|
.pa-timeline--simple .pa-timeline__item--secondary::before {
|
|
@@ -9572,7 +9676,7 @@ code {
|
|
|
9572
9676
|
}
|
|
9573
9677
|
|
|
9574
9678
|
.pa-timeline--simple .pa-timeline__item--filled.pa-timeline__item--info::before {
|
|
9575
|
-
background: #
|
|
9679
|
+
background: #0099ff;
|
|
9576
9680
|
}
|
|
9577
9681
|
|
|
9578
9682
|
.pa-timeline--simple .pa-timeline__item--filled.pa-timeline__item--secondary::before {
|
|
@@ -10249,7 +10353,7 @@ code {
|
|
|
10249
10353
|
flex-shrink: 0;
|
|
10250
10354
|
font-size: 1.2rem;
|
|
10251
10355
|
padding: 2px 0.4rem;
|
|
10252
|
-
background-color: #
|
|
10356
|
+
background-color: #333333;
|
|
10253
10357
|
color: var(--pa-text-secondary);
|
|
10254
10358
|
border-radius: 2px;
|
|
10255
10359
|
}
|
|
@@ -10271,7 +10375,7 @@ code {
|
|
|
10271
10375
|
|
|
10272
10376
|
.pa-command-palette__key {
|
|
10273
10377
|
padding: 2px 0.4rem;
|
|
10274
|
-
background-color: #
|
|
10378
|
+
background-color: #333333;
|
|
10275
10379
|
border: 1px solid var(--pa-border-color);
|
|
10276
10380
|
border-radius: 2px;
|
|
10277
10381
|
font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
@@ -10408,7 +10512,7 @@ code {
|
|
|
10408
10512
|
font-size: 1rem;
|
|
10409
10513
|
font-weight: 500;
|
|
10410
10514
|
color: var(--pa-text-secondary);
|
|
10411
|
-
background-color: #
|
|
10515
|
+
background-color: #333333;
|
|
10412
10516
|
border: 1px solid var(--pa-border-color);
|
|
10413
10517
|
border-radius: 2px;
|
|
10414
10518
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -10481,7 +10585,7 @@ code {
|
|
|
10481
10585
|
font-size: 1rem;
|
|
10482
10586
|
font-weight: 500;
|
|
10483
10587
|
color: var(--pa-text-primary);
|
|
10484
|
-
background-color: #
|
|
10588
|
+
background-color: #333333;
|
|
10485
10589
|
border: 1px solid var(--pa-border-color);
|
|
10486
10590
|
border-radius: 2px;
|
|
10487
10591
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -10570,7 +10674,7 @@ code {
|
|
|
10570
10674
|
}
|
|
10571
10675
|
|
|
10572
10676
|
.pa-logic-tree__block--or {
|
|
10573
|
-
border-color: #
|
|
10677
|
+
border-color: #0099ff;
|
|
10574
10678
|
background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
|
|
10575
10679
|
}
|
|
10576
10680
|
|
|
@@ -12761,22 +12865,28 @@ html.font-size-4xl {
|
|
|
12761
12865
|
--base-accent-color-active: #ff6666;
|
|
12762
12866
|
--base-accent-color-light: rgba(255, 0, 0, 0.25);
|
|
12763
12867
|
--base-accent-color-light-hover: rgba(255, 0, 0, 0.3);
|
|
12764
|
-
--base-primary-bg: #1a1a1a;
|
|
12765
|
-
--base-primary-bg-hover: #2a2a2a;
|
|
12766
12868
|
--base-text-color-1: #ffffff;
|
|
12767
12869
|
--base-text-color-2: #cccccc;
|
|
12768
12870
|
--base-text-color-3: #999999;
|
|
12769
12871
|
--base-text-color-4: #666666;
|
|
12770
12872
|
--base-text-color-on-accent: #ffffff;
|
|
12873
|
+
--base-surface-1: #1a1a1a;
|
|
12874
|
+
--base-surface-2: #0a0a0a;
|
|
12875
|
+
--base-surface-3: #333333;
|
|
12876
|
+
--base-surface-inverse: #ffffff;
|
|
12877
|
+
--base-overlay-bg: rgba(0, 0, 0, 0.8);
|
|
12878
|
+
--base-shadow-color: rgba(0, 0, 0, 0.15);
|
|
12879
|
+
--base-primary-bg: #1a1a1a;
|
|
12880
|
+
--base-primary-bg-hover: rgb(13.25, 13.25, 13.25);
|
|
12771
12881
|
--base-border-color: #333333;
|
|
12772
12882
|
--base-border: 1px solid #333333;
|
|
12773
12883
|
--base-input-bg: #000000;
|
|
12774
12884
|
--base-input-color: #ffffff;
|
|
12775
12885
|
--base-input-border: 1px solid #333333;
|
|
12776
|
-
--base-input-border-hover: 1px solid #
|
|
12886
|
+
--base-input-border-hover: 1px solid #4d4d4d;
|
|
12777
12887
|
--base-input-border-focus: 1px solid #ff0000;
|
|
12778
12888
|
--base-input-placeholder-color: #666666;
|
|
12779
|
-
--base-input-bg-disabled: rgba(
|
|
12889
|
+
--base-input-bg-disabled: rgba(0, 0, 0, 0.5);
|
|
12780
12890
|
--base-input-size-xs-height: 3.1;
|
|
12781
12891
|
--base-input-size-sm-height: 3.3;
|
|
12782
12892
|
--base-input-size-md-height: 3.5;
|
|
@@ -12787,7 +12897,44 @@ html.font-size-4xl {
|
|
|
12787
12897
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
12788
12898
|
--base-tooltip-bg: #333333;
|
|
12789
12899
|
--base-tooltip-text-color: #ffffff;
|
|
12790
|
-
--base-
|
|
12900
|
+
--base-success-color: #00cc44;
|
|
12901
|
+
--base-success-color-hover: #009933;
|
|
12902
|
+
--base-success-bg-light: rgba(0, 204, 68, 0.25);
|
|
12903
|
+
--base-success-bg-subtle: rgba(0, 204, 68, 0.08);
|
|
12904
|
+
--base-success-border: rgba(0, 204, 68, 0.2);
|
|
12905
|
+
--base-success-text: #155724;
|
|
12906
|
+
--base-success-text-light: #d4edda;
|
|
12907
|
+
--base-text-on-success: #ffffff;
|
|
12908
|
+
--base-danger-color: #ff0000;
|
|
12909
|
+
--base-danger-color-hover: #cc0000;
|
|
12910
|
+
--base-danger-bg-light: rgba(255, 0, 0, 0.25);
|
|
12911
|
+
--base-danger-bg-subtle: rgba(255, 0, 0, 0.08);
|
|
12912
|
+
--base-danger-border: rgba(255, 0, 0, 0.2);
|
|
12913
|
+
--base-danger-text: #721c24;
|
|
12914
|
+
--base-danger-text-light: #f8d7da;
|
|
12915
|
+
--base-text-on-danger: #ffffff;
|
|
12916
|
+
--base-warning-color: #ff6600;
|
|
12917
|
+
--base-warning-color-hover: #e55a00;
|
|
12918
|
+
--base-warning-bg-light: rgba(255, 102, 0, 0.25);
|
|
12919
|
+
--base-warning-bg-subtle: rgba(255, 102, 0, 0.08);
|
|
12920
|
+
--base-warning-border: rgba(255, 102, 0, 0.2);
|
|
12921
|
+
--base-warning-text: #856404;
|
|
12922
|
+
--base-warning-text-light: #fff3cd;
|
|
12923
|
+
--base-text-on-warning: #ffffff;
|
|
12924
|
+
--base-info-color: #0099ff;
|
|
12925
|
+
--base-info-color-hover: #0077cc;
|
|
12926
|
+
--base-info-bg-light: rgba(0, 153, 255, 0.25);
|
|
12927
|
+
--base-info-bg-subtle: rgba(0, 153, 255, 0.08);
|
|
12928
|
+
--base-info-border: rgba(0, 153, 255, 0.2);
|
|
12929
|
+
--base-info-text: #0c5460;
|
|
12930
|
+
--base-info-text-light: #d1ecf1;
|
|
12931
|
+
--base-text-on-info: #ffffff;
|
|
12932
|
+
--base-hover-overlay: rgba(0, 0, 0, 0.04);
|
|
12933
|
+
--base-active-overlay: rgba(0, 0, 0, 0.08);
|
|
12934
|
+
--base-focus-ring-color: #ff0000;
|
|
12935
|
+
--base-focus-ring-width: 3px;
|
|
12936
|
+
--base-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
|
|
12937
|
+
--base-font-family-mono: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
12791
12938
|
--base-font-size-2xs: 1;
|
|
12792
12939
|
--base-font-size-xs: 1.2;
|
|
12793
12940
|
--base-font-size-sm: 1.4;
|
|
@@ -12798,9 +12945,10 @@ html.font-size-4xl {
|
|
|
12798
12945
|
--base-font-weight-normal: 400;
|
|
12799
12946
|
--base-font-weight-medium: 500;
|
|
12800
12947
|
--base-font-weight-semibold: 600;
|
|
12801
|
-
--base-
|
|
12948
|
+
--base-font-weight-bold: 700;
|
|
12949
|
+
--base-line-height-tight: 1.25;
|
|
12802
12950
|
--base-line-height-normal: 1.5;
|
|
12803
|
-
--base-line-height-relaxed: 1.
|
|
12951
|
+
--base-line-height-relaxed: 1.75;
|
|
12804
12952
|
--base-border-radius-sm: 0;
|
|
12805
12953
|
--base-border-radius-md: 0;
|
|
12806
12954
|
--base-border-radius-lg: 0;
|
|
@@ -12827,7 +12975,7 @@ html.font-size-4xl {
|
|
|
12827
12975
|
--pa-footer-bg: #000000;
|
|
12828
12976
|
--pa-footer-border-color: #333333;
|
|
12829
12977
|
--pa-btn-primary-bg: #ff0000;
|
|
12830
|
-
--pa-btn-primary-bg-hover: #
|
|
12978
|
+
--pa-btn-primary-bg-hover: #ff3333;
|
|
12831
12979
|
--pa-btn-primary-bg-light: rgba(255, 0, 0, 0.25);
|
|
12832
12980
|
--pa-btn-primary-text: #ffffff;
|
|
12833
12981
|
--pa-btn-secondary-bg: #333333;
|
|
@@ -12852,31 +13000,31 @@ html.font-size-4xl {
|
|
|
12852
13000
|
--pa-btn-dark-bg-hover: #1a1a1a;
|
|
12853
13001
|
--pa-btn-dark-text: #ffffff;
|
|
12854
13002
|
--pa-success-bg: #00cc44;
|
|
12855
|
-
--pa-success-bg-hover: #
|
|
13003
|
+
--pa-success-bg-hover: #009933;
|
|
12856
13004
|
--pa-success-bg-light: rgba(0, 204, 68, 0.25);
|
|
12857
|
-
--pa-success-bg-subtle: rgba(
|
|
12858
|
-
--pa-success-border: rgba(
|
|
13005
|
+
--pa-success-bg-subtle: rgba(0, 204, 68, 0.08);
|
|
13006
|
+
--pa-success-border: rgba(0, 204, 68, 0.2);
|
|
12859
13007
|
--pa-success-text: #155724;
|
|
12860
13008
|
--pa-success-text-light: #d4edda;
|
|
12861
13009
|
--pa-danger-bg: #ff0000;
|
|
12862
|
-
--pa-danger-bg-hover: #
|
|
13010
|
+
--pa-danger-bg-hover: #cc0000;
|
|
12863
13011
|
--pa-danger-bg-light: rgba(255, 0, 0, 0.25);
|
|
12864
|
-
--pa-danger-bg-subtle: rgba(
|
|
12865
|
-
--pa-danger-border: rgba(
|
|
13012
|
+
--pa-danger-bg-subtle: rgba(255, 0, 0, 0.08);
|
|
13013
|
+
--pa-danger-border: rgba(255, 0, 0, 0.2);
|
|
12866
13014
|
--pa-danger-text: #721c24;
|
|
12867
13015
|
--pa-danger-text-light: #f8d7da;
|
|
12868
13016
|
--pa-warning-bg: #ff6600;
|
|
12869
|
-
--pa-warning-bg-hover: #
|
|
13017
|
+
--pa-warning-bg-hover: #e55a00;
|
|
12870
13018
|
--pa-warning-bg-light: rgba(255, 102, 0, 0.25);
|
|
12871
|
-
--pa-warning-bg-subtle: rgba(255,
|
|
12872
|
-
--pa-warning-border: rgba(255,
|
|
13019
|
+
--pa-warning-bg-subtle: rgba(255, 102, 0, 0.08);
|
|
13020
|
+
--pa-warning-border: rgba(255, 102, 0, 0.2);
|
|
12873
13021
|
--pa-warning-text: #856404;
|
|
12874
13022
|
--pa-warning-text-light: #fff3cd;
|
|
12875
|
-
--pa-info-bg: #
|
|
12876
|
-
--pa-info-bg-hover: #
|
|
12877
|
-
--pa-info-bg-light: rgba(
|
|
12878
|
-
--pa-info-bg-subtle: rgba(
|
|
12879
|
-
--pa-info-border: rgba(
|
|
13023
|
+
--pa-info-bg: #0099ff;
|
|
13024
|
+
--pa-info-bg-hover: #0077cc;
|
|
13025
|
+
--pa-info-bg-light: rgba(0, 153, 255, 0.25);
|
|
13026
|
+
--pa-info-bg-subtle: rgba(0, 153, 255, 0.08);
|
|
13027
|
+
--pa-info-border: rgba(0, 153, 255, 0.2);
|
|
12880
13028
|
--pa-info-text: #0c5460;
|
|
12881
13029
|
--pa-info-text-light: #d1ecf1;
|
|
12882
13030
|
--pa-card-bg: #1a1a1a;
|
|
@@ -12889,18 +13037,18 @@ html.font-size-4xl {
|
|
|
12889
13037
|
--pa-input-focus-border-color: #ff0000;
|
|
12890
13038
|
--pa-select-focus-border-color: #ff0000;
|
|
12891
13039
|
--pa-textarea-focus-border-color: #ff0000;
|
|
12892
|
-
--pa-checkbox-border-color: #
|
|
13040
|
+
--pa-checkbox-border-color: #333333;
|
|
12893
13041
|
--pa-checkbox-border-color-hover: #ff0000;
|
|
12894
13042
|
--pa-checkbox-border-color-checked: #ff0000;
|
|
12895
|
-
--pa-checkbox-bg: #
|
|
13043
|
+
--pa-checkbox-bg: #1a1a1a;
|
|
12896
13044
|
--pa-checkbox-bg-checked: #ff0000;
|
|
12897
13045
|
--pa-checkbox-bg-indeterminate: #ff0000;
|
|
12898
13046
|
--pa-checkbox-checkmark-color: white;
|
|
12899
13047
|
--pa-checkbox-focus-shadow: 0 0 0 2px rgba(255, 0, 0, 0.25);
|
|
12900
|
-
--pa-input-group-prepend-bg: #
|
|
12901
|
-
--pa-input-group-prepend-text: #
|
|
12902
|
-
--pa-input-group-append-bg: #
|
|
12903
|
-
--pa-input-group-append-text: #
|
|
13048
|
+
--pa-input-group-prepend-bg: #0a0a0a;
|
|
13049
|
+
--pa-input-group-prepend-text: #cccccc;
|
|
13050
|
+
--pa-input-group-append-bg: #0a0a0a;
|
|
13051
|
+
--pa-input-group-append-text: #cccccc;
|
|
12904
13052
|
--pa-table-bg: #1a1a1a;
|
|
12905
13053
|
--pa-table-header-bg: #000000;
|
|
12906
13054
|
--pa-table-stripe: #2a2a2a;
|
|
@@ -12908,18 +13056,18 @@ html.font-size-4xl {
|
|
|
12908
13056
|
--pa-table-hover-accent-color: #ff0000;
|
|
12909
13057
|
--pa-modal-overlay-bg: rgba(0, 0, 0, 0.8);
|
|
12910
13058
|
--pa-modal-content-bg: #1a1a1a;
|
|
12911
|
-
--pa-alert-success-bg: rgba(
|
|
12912
|
-
--pa-alert-success-border: rgba(
|
|
12913
|
-
--pa-alert-success-text: #
|
|
12914
|
-
--pa-alert-danger-bg: rgba(
|
|
12915
|
-
--pa-alert-danger-border: rgba(
|
|
12916
|
-
--pa-alert-danger-text: #
|
|
12917
|
-
--pa-alert-warning-bg: rgba(255,
|
|
12918
|
-
--pa-alert-warning-border: rgba(255,
|
|
12919
|
-
--pa-alert-warning-text: #
|
|
12920
|
-
--pa-alert-info-bg: rgba(
|
|
12921
|
-
--pa-alert-info-border: rgba(
|
|
12922
|
-
--pa-alert-info-text: #
|
|
13059
|
+
--pa-alert-success-bg: rgba(0, 204, 68, 0.08);
|
|
13060
|
+
--pa-alert-success-border: rgba(0, 204, 68, 0.2);
|
|
13061
|
+
--pa-alert-success-text: #00cc44;
|
|
13062
|
+
--pa-alert-danger-bg: rgba(255, 0, 0, 0.08);
|
|
13063
|
+
--pa-alert-danger-border: rgba(255, 0, 0, 0.2);
|
|
13064
|
+
--pa-alert-danger-text: #ff0000;
|
|
13065
|
+
--pa-alert-warning-bg: rgba(255, 102, 0, 0.08);
|
|
13066
|
+
--pa-alert-warning-border: rgba(255, 102, 0, 0.2);
|
|
13067
|
+
--pa-alert-warning-text: #ff6600;
|
|
13068
|
+
--pa-alert-info-bg: rgba(0, 153, 255, 0.08);
|
|
13069
|
+
--pa-alert-info-border: rgba(0, 153, 255, 0.2);
|
|
13070
|
+
--pa-alert-info-text: #0099ff;
|
|
12923
13071
|
--pa-badge-success-bg: #d4edda;
|
|
12924
13072
|
--pa-badge-success-text: #155724;
|
|
12925
13073
|
--pa-badge-warning-bg: #fff3cd;
|
|
@@ -12929,29 +13077,29 @@ html.font-size-4xl {
|
|
|
12929
13077
|
--pa-badge-danger-bg: #f8d7da;
|
|
12930
13078
|
--pa-badge-danger-text: #721c24;
|
|
12931
13079
|
--pa-composite-badge-icon-bg: #6c757d;
|
|
12932
|
-
--pa-composite-badge-label-bg: #
|
|
12933
|
-
--pa-composite-badge-label-text: #
|
|
12934
|
-
--pa-composite-badge-label-hover-bg: #
|
|
12935
|
-
--pa-tooltip-bg: #
|
|
13080
|
+
--pa-composite-badge-label-bg: #333333;
|
|
13081
|
+
--pa-composite-badge-label-text: #ffffff;
|
|
13082
|
+
--pa-composite-badge-label-hover-bg: #333333;
|
|
13083
|
+
--pa-tooltip-bg: #333333;
|
|
12936
13084
|
--pa-tooltip-text: #ffffff;
|
|
12937
|
-
--pa-popover-content-bg: #
|
|
13085
|
+
--pa-popover-content-bg: #1a1a1a;
|
|
12938
13086
|
--pa-popover-text-light: #ffffff;
|
|
12939
13087
|
--pa-popover-text-dark: #000000;
|
|
12940
13088
|
--pa-loader-overlay-bg: rgba(255, 255, 255, 0.8);
|
|
12941
13089
|
--pa-profile-overlay-bg: rgba(0, 0, 0, 0.3);
|
|
12942
13090
|
--pa-command-palette-backdrop-bg: rgba(0, 0, 0, 0.5);
|
|
12943
|
-
--pa-command-palette-item-hover-bg: rgba(
|
|
12944
|
-
--pa-command-palette-item-active-bg: rgba(
|
|
12945
|
-
--pa-command-palette-highlight-bg: rgba(
|
|
12946
|
-
--pa-command-palette-highlight-text: #
|
|
13091
|
+
--pa-command-palette-item-hover-bg: rgba(255, 0, 0, 0.05);
|
|
13092
|
+
--pa-command-palette-item-active-bg: rgba(255, 0, 0, 0.1);
|
|
13093
|
+
--pa-command-palette-highlight-bg: rgba(255, 0, 0, 0.2);
|
|
13094
|
+
--pa-command-palette-highlight-text: #ff0000;
|
|
12947
13095
|
--pa-multiselect-dropdown-bg: #1a1a1a;
|
|
12948
13096
|
--pa-multiselect-dropdown-border: #333333;
|
|
12949
13097
|
--pa-multiselect-dropdown-text: #ffffff;
|
|
12950
|
-
--pa-multiselect-hint-bg: #
|
|
12951
|
-
--pa-multiselect-hint-border: #
|
|
12952
|
-
--pa-multiselect-option-hover-bg: #
|
|
12953
|
-
--pa-multiselect-pill-bg: rgba(
|
|
12954
|
-
--pa-multiselect-pill-border: #
|
|
13098
|
+
--pa-multiselect-hint-bg: #0a0a0a;
|
|
13099
|
+
--pa-multiselect-hint-border: #333333;
|
|
13100
|
+
--pa-multiselect-option-hover-bg: #0a0a0a;
|
|
13101
|
+
--pa-multiselect-pill-bg: rgba(255, 0, 0, 0.25);
|
|
13102
|
+
--pa-multiselect-pill-border: #ff0000;
|
|
12955
13103
|
--drp-dropdown-bg: #1a1a1a;
|
|
12956
13104
|
--drp-border-color: #333333;
|
|
12957
13105
|
--drp-primary-bg: #2a2a2a;
|
|
@@ -13028,6 +13176,9 @@ html.font-size-4xl {
|
|
|
13028
13176
|
--pa-warning-bg-light: rgba(255, 102, 0, 0.1);
|
|
13029
13177
|
--pa-danger-bg-light: rgba(255, 0, 0, 0.1);
|
|
13030
13178
|
--pa-info-bg-light: rgba(0, 153, 255, 0.1);
|
|
13179
|
+
--base-surface-1: #ffffff;
|
|
13180
|
+
--base-surface-2: #f1f3f5;
|
|
13181
|
+
--base-surface-3: #e9ecef;
|
|
13031
13182
|
--base-primary-bg: #f1f3f5;
|
|
13032
13183
|
--base-primary-bg-hover: #e9ecef;
|
|
13033
13184
|
--base-text-color-1: #212529;
|
|
@@ -13085,3 +13236,9 @@ html.font-size-4xl {
|
|
|
13085
13236
|
background-color: #e9ecef !important;
|
|
13086
13237
|
color: #212529 !important;
|
|
13087
13238
|
}
|
|
13239
|
+
.pa-mode-light .pa-profile-panel__header .pa-profile-panel__name {
|
|
13240
|
+
color: var(--pa-header-text);
|
|
13241
|
+
}
|
|
13242
|
+
.pa-mode-light .pa-profile-panel__header .pa-profile-panel__email {
|
|
13243
|
+
color: var(--pa-header-text-secondary);
|
|
13244
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-audi",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc02",
|
|
4
4
|
"description": "Audi theme for Pure Admin - includes dark and light variants",
|
|
5
5
|
"style": "dist/audi.css",
|
|
6
6
|
"exports": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"author": "KeenMate",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
28
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02",
|
|
29
29
|
"sass": "^1.70.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
package/src/scss/audi.scss
CHANGED
|
@@ -2,26 +2,9 @@
|
|
|
2
2
|
/* Supports runtime switching between dark and light modes via body class */
|
|
3
3
|
@use 'sass:color';
|
|
4
4
|
|
|
5
|
-
//
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// 2. Override structural SCSS variables (shared between modes)
|
|
9
|
-
$sidebar-width: 29rem; // 290px (10px base)
|
|
10
|
-
$border-radius: 1px;
|
|
11
|
-
$border-radius-lg: 2px;
|
|
12
|
-
|
|
13
|
-
// No border radius for inputs (Audi design language - square corners)
|
|
14
|
-
$base-border-radius-sm: 0;
|
|
15
|
-
$base-border-radius-md: 0;
|
|
16
|
-
$base-border-radius-lg: 0;
|
|
17
|
-
|
|
18
|
-
// Enable red accent on table row hover (Audi signature detail)
|
|
19
|
-
$table-hover-accent-width: 3px;
|
|
20
|
-
$table-hover-accent-position: left;
|
|
21
|
-
|
|
22
|
-
// ============================================================================
|
|
23
|
-
// DARK MODE COLORS (Default)
|
|
24
|
-
// ============================================================================
|
|
5
|
+
// =============================================================================
|
|
6
|
+
// AUDI COLOR PALETTE
|
|
7
|
+
// =============================================================================
|
|
25
8
|
$audi-black: #000000;
|
|
26
9
|
$audi-near-black: #0a0a0a;
|
|
27
10
|
$audi-dark: #1a1a1a;
|
|
@@ -32,74 +15,115 @@ $audi-gray-lightest: #666666;
|
|
|
32
15
|
$audi-red: #ff0000;
|
|
33
16
|
$audi-red-dark: #cc0000;
|
|
34
17
|
|
|
35
|
-
|
|
36
|
-
$
|
|
37
|
-
$
|
|
38
|
-
$
|
|
39
|
-
$
|
|
40
|
-
$
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
$
|
|
48
|
-
$
|
|
49
|
-
$
|
|
50
|
-
$
|
|
51
|
-
$
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
$accent-color: $audi-red;
|
|
55
|
-
$accent-hover: rgba($audi-red, 0.3);
|
|
56
|
-
$accent-light: rgba($audi-red, 0.25);
|
|
57
|
-
|
|
58
|
-
// Base variables for web components (dark mode)
|
|
59
|
-
$base-accent-color: $accent-color;
|
|
60
|
-
$base-accent-color-hover: color.adjust($base-accent-color, $lightness: 10%);
|
|
61
|
-
$base-accent-color-active: color.adjust($base-accent-color, $lightness: 20%);
|
|
62
|
-
$base-accent-color-light: $accent-light;
|
|
63
|
-
$base-accent-color-light-hover: rgba($base-accent-color, 0.3);
|
|
64
|
-
$base-primary-bg: $audi-dark;
|
|
65
|
-
$base-primary-bg-hover: $audi-gray;
|
|
18
|
+
$audi-success: #00cc44;
|
|
19
|
+
$audi-success-hover: #009933;
|
|
20
|
+
$audi-warning: #ff6600;
|
|
21
|
+
$audi-warning-hover: #e55a00;
|
|
22
|
+
$audi-info: #0099ff;
|
|
23
|
+
$audi-info-hover: #0077cc;
|
|
24
|
+
|
|
25
|
+
// =============================================================================
|
|
26
|
+
// BASE VARIABLES - Single Source of Truth (Dark Mode Default)
|
|
27
|
+
// =============================================================================
|
|
28
|
+
|
|
29
|
+
// Accent colors (brand)
|
|
30
|
+
$base-accent-color: $audi-red;
|
|
31
|
+
$base-accent-color-hover: color.adjust($audi-red, $lightness: 10%);
|
|
32
|
+
$base-accent-color-active: color.adjust($audi-red, $lightness: 20%);
|
|
33
|
+
$base-accent-color-light: rgba($audi-red, 0.25);
|
|
34
|
+
$base-accent-color-light-hover: rgba($audi-red, 0.3);
|
|
35
|
+
|
|
36
|
+
// Text colors (dark mode - light text)
|
|
66
37
|
$base-text-color-1: #ffffff;
|
|
67
38
|
$base-text-color-2: #cccccc;
|
|
68
39
|
$base-text-color-3: #999999;
|
|
69
40
|
$base-text-color-4: #666666;
|
|
70
41
|
$base-text-color-on-accent: #ffffff;
|
|
42
|
+
|
|
43
|
+
// Surface colors (dark mode)
|
|
44
|
+
$base-surface-1: $audi-dark;
|
|
45
|
+
$base-surface-2: $audi-near-black;
|
|
46
|
+
$base-surface-3: $audi-gray-light;
|
|
47
|
+
$base-surface-inverse: #ffffff;
|
|
48
|
+
$base-overlay-bg: rgba($audi-black, 0.8);
|
|
49
|
+
|
|
50
|
+
// Border
|
|
71
51
|
$base-border-color: $audi-gray-light;
|
|
72
|
-
$base-border: 1px solid $audi-gray-light;
|
|
73
52
|
|
|
74
|
-
// Input
|
|
53
|
+
// Input (dark mode)
|
|
75
54
|
$base-input-bg: $audi-black;
|
|
76
55
|
$base-input-color: #ffffff;
|
|
77
56
|
$base-input-border: 1px solid $audi-gray-light;
|
|
78
|
-
$base-input-border-hover: 1px solid $
|
|
79
|
-
$base-input-border-focus: 1px solid $
|
|
80
|
-
|
|
81
|
-
|
|
57
|
+
$base-input-border-hover: 1px solid $audi-gray-lighter;
|
|
58
|
+
$base-input-border-focus: 1px solid $audi-red;
|
|
59
|
+
|
|
60
|
+
// No border radius (Audi design language - square corners)
|
|
61
|
+
$base-border-radius-sm: 0;
|
|
62
|
+
$base-border-radius-md: 0;
|
|
63
|
+
$base-border-radius-lg: 0;
|
|
82
64
|
|
|
83
65
|
// Dropdown/Popover (dark mode)
|
|
84
66
|
$base-dropdown-bg: $audi-dark;
|
|
85
|
-
$base-dropdown-border: 1px solid $audi-gray-light;
|
|
86
67
|
$base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
87
68
|
|
|
88
69
|
// Tooltip (dark mode)
|
|
89
70
|
$base-tooltip-bg: $audi-gray-light;
|
|
90
71
|
$base-tooltip-text-color: #ffffff;
|
|
91
72
|
|
|
92
|
-
//
|
|
93
|
-
$
|
|
94
|
-
$
|
|
95
|
-
$
|
|
73
|
+
// Contextual colors
|
|
74
|
+
$base-success-color: $audi-success;
|
|
75
|
+
$base-success-color-hover: $audi-success-hover;
|
|
76
|
+
$base-success-bg-light: rgba($audi-success, 0.25);
|
|
77
|
+
$base-text-on-success: #ffffff;
|
|
78
|
+
|
|
79
|
+
$base-danger-color: $audi-red;
|
|
80
|
+
$base-danger-color-hover: $audi-red-dark;
|
|
81
|
+
$base-danger-bg-light: rgba($audi-red, 0.25);
|
|
82
|
+
$base-text-on-danger: #ffffff;
|
|
83
|
+
|
|
84
|
+
$base-warning-color: $audi-warning;
|
|
85
|
+
$base-warning-color-hover: $audi-warning-hover;
|
|
86
|
+
$base-warning-bg-light: rgba($audi-warning, 0.25);
|
|
87
|
+
$base-text-on-warning: #ffffff;
|
|
88
|
+
|
|
89
|
+
$base-info-color: $audi-info;
|
|
90
|
+
$base-info-color-hover: $audi-info-hover;
|
|
91
|
+
$base-info-bg-light: rgba($audi-info, 0.25);
|
|
92
|
+
$base-text-on-info: #ffffff;
|
|
93
|
+
|
|
94
|
+
// =============================================================================
|
|
95
|
+
// IMPORT CORE VARIABLES (with base variables already set)
|
|
96
|
+
// =============================================================================
|
|
97
|
+
@import '@keenmate/pure-admin-core/src/scss/variables/index';
|
|
96
98
|
|
|
97
|
-
//
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
$
|
|
101
|
-
$
|
|
102
|
-
$
|
|
99
|
+
// =============================================================================
|
|
100
|
+
// LAYOUT-SPECIFIC OVERRIDES
|
|
101
|
+
// =============================================================================
|
|
102
|
+
$sidebar-width: 29rem;
|
|
103
|
+
$border-radius: 1px;
|
|
104
|
+
$border-radius-lg: 2px;
|
|
105
|
+
|
|
106
|
+
// Enable red accent on table row hover (Audi signature detail)
|
|
107
|
+
$table-hover-accent-width: 3px;
|
|
108
|
+
$table-hover-accent-position: left;
|
|
109
|
+
|
|
110
|
+
// Dark mode theme colors
|
|
111
|
+
$primary-bg: $audi-near-black;
|
|
112
|
+
$bg-secondary: $audi-near-black;
|
|
113
|
+
$content-background-color: $audi-dark;
|
|
114
|
+
$header-bg: $audi-black;
|
|
115
|
+
$header-border-color: $audi-gray-light;
|
|
116
|
+
$header-text: #ffffff;
|
|
117
|
+
$header-text-secondary: rgba(255, 255, 255, 0.7);
|
|
118
|
+
$header-profile-name-color: #ffffff;
|
|
119
|
+
$sidebar-bg: $audi-dark;
|
|
120
|
+
$sidebar-text: #ffffff;
|
|
121
|
+
$sidebar-text-secondary: #ffffff;
|
|
122
|
+
$sidebar-submenu-bg: $audi-gray-light;
|
|
123
|
+
$sidebar-submenu-hover-bg: rgba($audi-red, 0.25);
|
|
124
|
+
$sidebar-submenu-active-bg: rgba($audi-red, 0.3);
|
|
125
|
+
$footer-bg: $audi-black;
|
|
126
|
+
$footer-border-color: $audi-gray-light;
|
|
103
127
|
|
|
104
128
|
// Card colors (dark mode)
|
|
105
129
|
$card-bg: $audi-dark;
|
|
@@ -107,49 +131,43 @@ $card-header-bg: $audi-black;
|
|
|
107
131
|
$card-footer-bg: $audi-black;
|
|
108
132
|
$card-tabs-bg: $audi-gray-light;
|
|
109
133
|
|
|
110
|
-
// Input colors
|
|
134
|
+
// Input colors
|
|
111
135
|
$input-bg: $audi-black;
|
|
112
136
|
$input-border: $audi-gray-light;
|
|
113
137
|
$input-text: #ffffff;
|
|
114
138
|
|
|
115
|
-
// Multiselect
|
|
139
|
+
// Multiselect
|
|
116
140
|
$multiselect-dropdown-bg: $audi-dark;
|
|
117
141
|
$multiselect-dropdown-border: $audi-gray-light;
|
|
118
142
|
$multiselect-dropdown-text: #ffffff;
|
|
119
143
|
|
|
120
|
-
// Table colors
|
|
144
|
+
// Table colors
|
|
121
145
|
$table-stripe: $audi-gray;
|
|
122
146
|
$table-bg: $audi-dark;
|
|
123
147
|
$table-header-bg: $audi-black;
|
|
124
148
|
$table-hover-bg: $audi-gray-light;
|
|
125
|
-
$table-hover-accent-color: $
|
|
149
|
+
$table-hover-accent-color: $audi-red;
|
|
126
150
|
|
|
127
|
-
// Modal colors
|
|
151
|
+
// Modal colors
|
|
128
152
|
$modal-content-bg: $audi-dark;
|
|
129
153
|
$modal-overlay-bg: rgba($audi-black, 0.8);
|
|
130
154
|
|
|
131
|
-
//
|
|
132
|
-
$
|
|
155
|
+
// Form focus colors
|
|
156
|
+
$input_focus-border-color: $base-accent-color;
|
|
157
|
+
$select-focus-border-color: $base-accent-color;
|
|
158
|
+
$textarea-focus-border-color: $base-accent-color;
|
|
133
159
|
|
|
134
|
-
//
|
|
135
|
-
$
|
|
136
|
-
$
|
|
137
|
-
$
|
|
160
|
+
// Checkbox colors
|
|
161
|
+
$checkbox-border-color-hover: $base-accent-color;
|
|
162
|
+
$checkbox-border-color-checked: $base-accent-color;
|
|
163
|
+
$checkbox-bg-checked: $base-accent-color;
|
|
164
|
+
$checkbox-bg-indeterminate: $base-accent-color;
|
|
165
|
+
$checkbox-focus-shadow: 0 0 0 2px rgba($base-accent-color, 0.25);
|
|
166
|
+
|
|
167
|
+
// Button colors (secondary not derived from base)
|
|
138
168
|
$btn-secondary-bg: $audi-gray-light;
|
|
139
169
|
$btn-secondary-bg-hover: $audi-gray-lighter;
|
|
140
170
|
$btn-secondary-text: #ffffff;
|
|
141
|
-
$btn-success-bg: #00cc44;
|
|
142
|
-
$btn-success-bg-hover: #009933;
|
|
143
|
-
$btn-success-text: #ffffff;
|
|
144
|
-
$btn-danger-bg: $audi-red;
|
|
145
|
-
$btn-danger-bg-hover: $audi-red-dark;
|
|
146
|
-
$btn-danger-text: #ffffff;
|
|
147
|
-
$btn-warning-bg: #ff6600;
|
|
148
|
-
$btn-warning-bg-hover: #e55a00;
|
|
149
|
-
$btn-warning-text: #ffffff;
|
|
150
|
-
$btn-info-bg: #0099ff;
|
|
151
|
-
$btn-info-bg-hover: #0077cc;
|
|
152
|
-
$btn-info-text: #ffffff;
|
|
153
171
|
$btn-light-bg: $audi-gray-lightest;
|
|
154
172
|
$btn-light-bg-hover: #808080;
|
|
155
173
|
$btn-light-text: #ffffff;
|
|
@@ -157,17 +175,9 @@ $btn-dark-bg: $audi-black;
|
|
|
157
175
|
$btn-dark-bg-hover: $audi-dark;
|
|
158
176
|
$btn-dark-text: #ffffff;
|
|
159
177
|
|
|
160
|
-
//
|
|
161
|
-
$success-bg: $btn-success-bg;
|
|
162
|
-
$success-bg-light: rgba(0, 204, 68, 0.25);
|
|
163
|
-
$warning-bg: $btn-warning-bg;
|
|
164
|
-
$warning-bg-light: rgba(255, 102, 0, 0.25);
|
|
165
|
-
$danger-bg: $btn-danger-bg;
|
|
166
|
-
$danger-bg-light: rgba(255, 0, 0, 0.25);
|
|
167
|
-
|
|
168
|
-
// ============================================================================
|
|
178
|
+
// =============================================================================
|
|
169
179
|
// FONTS - Fira Sans Condensed
|
|
170
|
-
//
|
|
180
|
+
// =============================================================================
|
|
171
181
|
/* cyrillic-ext */
|
|
172
182
|
@font-face {
|
|
173
183
|
font-family: 'Fira Sans Condensed';
|
|
@@ -234,16 +244,16 @@ $danger-bg-light: rgba(255, 0, 0, 0.25);
|
|
|
234
244
|
|
|
235
245
|
$body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
236
246
|
|
|
237
|
-
//
|
|
238
|
-
// IMPORT CORE FRAMEWORK
|
|
239
|
-
//
|
|
247
|
+
// =============================================================================
|
|
248
|
+
// IMPORT CORE FRAMEWORK
|
|
249
|
+
// =============================================================================
|
|
240
250
|
@import '@keenmate/pure-admin-core/src/scss/core';
|
|
241
251
|
@import '@keenmate/pure-admin-core/src/scss/utilities';
|
|
242
252
|
@import '@keenmate/pure-admin-core/src/scss/base-css-variables';
|
|
243
253
|
|
|
244
|
-
//
|
|
254
|
+
// =============================================================================
|
|
245
255
|
// AUDI-SPECIFIC COMPONENT OVERRIDES
|
|
246
|
-
//
|
|
256
|
+
// =============================================================================
|
|
247
257
|
.pa-btn--primary {
|
|
248
258
|
font-weight: $font-weight-bold;
|
|
249
259
|
color: #ffffff !important;
|
|
@@ -293,18 +303,15 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
293
303
|
color: var(--pa-sidebar-text) !important;
|
|
294
304
|
}
|
|
295
305
|
|
|
296
|
-
//
|
|
306
|
+
// =============================================================================
|
|
297
307
|
// CSS VARIABLES - DARK MODE (Default)
|
|
298
|
-
//
|
|
308
|
+
// =============================================================================
|
|
299
309
|
:root, .pa-mode-dark {
|
|
300
310
|
--page-loader-bg: rgba(10, 10, 10, 0.95);
|
|
301
311
|
--page-loader-spinner-border: #333;
|
|
302
312
|
--page-loader-spinner-accent: #ff0000;
|
|
303
313
|
|
|
304
|
-
// Base CSS variables for web components
|
|
305
314
|
@include output-base-css-variables;
|
|
306
|
-
|
|
307
|
-
// Pure Admin theme CSS variables
|
|
308
315
|
@include output-pa-css-variables;
|
|
309
316
|
|
|
310
317
|
// Daterangepicker overrides (dark mode)
|
|
@@ -335,11 +342,10 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
335
342
|
--ms-selected-popover-bg: #{$audi-dark};
|
|
336
343
|
}
|
|
337
344
|
|
|
338
|
-
//
|
|
345
|
+
// =============================================================================
|
|
339
346
|
// CSS VARIABLES - LIGHT MODE
|
|
340
|
-
//
|
|
347
|
+
// =============================================================================
|
|
341
348
|
.pa-mode-light {
|
|
342
|
-
// Light mode color palette
|
|
343
349
|
$light-white: #ffffff;
|
|
344
350
|
$light-gray-50: #f8f9fa;
|
|
345
351
|
$light-gray-100: #f1f3f5;
|
|
@@ -356,24 +362,18 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
356
362
|
--page-loader-spinner-border: #d0d0d0;
|
|
357
363
|
--page-loader-spinner-accent: #ff0000;
|
|
358
364
|
|
|
359
|
-
// Core colors
|
|
365
|
+
// Core colors
|
|
360
366
|
--pa-primary-bg: #{$light-gray-100};
|
|
361
367
|
--pa-bg-secondary: #{$light-gray-50};
|
|
362
368
|
--pa-content-bg: #{$light-gray-100};
|
|
363
|
-
|
|
364
|
-
// Text colors - dark text on light bg
|
|
365
369
|
--pa-text-primary: #{$light-gray-900};
|
|
366
370
|
--pa-text-secondary: #{$light-gray-600};
|
|
367
|
-
|
|
368
|
-
// Accent stays red
|
|
369
371
|
--pa-accent: #ff0000;
|
|
370
372
|
--pa-accent-hover: rgba(255, 0, 0, 0.1);
|
|
371
373
|
--pa-accent-light: rgba(255, 0, 0, 0.05);
|
|
372
|
-
|
|
373
|
-
// Border - lighter for light mode
|
|
374
374
|
--pa-border-color: #{$light-gray-200};
|
|
375
375
|
|
|
376
|
-
// Header/Sidebar/Footer stay dark
|
|
376
|
+
// Header/Sidebar/Footer stay dark
|
|
377
377
|
--pa-header-bg: #1a1a1a;
|
|
378
378
|
--pa-header-border-color: #{$light-gray-300};
|
|
379
379
|
--pa-header-text: #ffffff;
|
|
@@ -388,18 +388,18 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
388
388
|
--pa-footer-bg: #1a1a1a;
|
|
389
389
|
--pa-footer-border-color: #{$light-gray-300};
|
|
390
390
|
|
|
391
|
-
// Cards
|
|
391
|
+
// Cards
|
|
392
392
|
--pa-card-bg: #{$light-white};
|
|
393
393
|
--pa-card-header-bg: #{$light-gray-50};
|
|
394
394
|
--pa-card-footer-bg: #{$light-gray-50};
|
|
395
395
|
--pa-card-tabs-bg: #{$light-gray-200};
|
|
396
396
|
|
|
397
|
-
// Inputs
|
|
397
|
+
// Inputs
|
|
398
398
|
--pa-input-bg: #{$light-white};
|
|
399
399
|
--pa-input-border: #{$light-gray-300};
|
|
400
400
|
--pa-input-text: #{$light-gray-900};
|
|
401
401
|
|
|
402
|
-
// Tables
|
|
402
|
+
// Tables
|
|
403
403
|
--pa-table-bg: #{$light-white};
|
|
404
404
|
--pa-table-header-bg: #{$light-gray-100};
|
|
405
405
|
--pa-table-stripe: #{$light-gray-50};
|
|
@@ -409,27 +409,28 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
409
409
|
--pa-modal-content-bg: #{$light-white};
|
|
410
410
|
--pa-modal-overlay-bg: rgba(0, 0, 0, 0.75);
|
|
411
411
|
|
|
412
|
-
// Buttons
|
|
412
|
+
// Buttons
|
|
413
413
|
--pa-btn-light-bg: #{$light-gray-200};
|
|
414
414
|
--pa-btn-light-bg-hover: #{$light-gray-300};
|
|
415
415
|
--pa-btn-light-text: #{$light-gray-900};
|
|
416
416
|
--pa-btn-secondary-bg: #{$light-gray-600};
|
|
417
417
|
--pa-btn-secondary-bg-hover: #{$light-gray-700};
|
|
418
418
|
|
|
419
|
-
// Tooltip
|
|
419
|
+
// Tooltip/Popover
|
|
420
420
|
--pa-tooltip-bg: #{$light-gray-800};
|
|
421
421
|
--pa-tooltip-text: #ffffff;
|
|
422
|
-
|
|
423
|
-
// Popover
|
|
424
422
|
--pa-popover-content-bg: #{$light-white};
|
|
425
423
|
|
|
426
|
-
// Semantic colors
|
|
424
|
+
// Semantic colors
|
|
427
425
|
--pa-success-bg-light: rgba(0, 204, 68, 0.1);
|
|
428
426
|
--pa-warning-bg-light: rgba(255, 102, 0, 0.1);
|
|
429
427
|
--pa-danger-bg-light: rgba(255, 0, 0, 0.1);
|
|
430
428
|
--pa-info-bg-light: rgba(0, 153, 255, 0.1);
|
|
431
429
|
|
|
432
430
|
// Base variables for web components (light mode)
|
|
431
|
+
--base-surface-1: #{$light-white};
|
|
432
|
+
--base-surface-2: #{$light-gray-100};
|
|
433
|
+
--base-surface-3: #{$light-gray-200};
|
|
433
434
|
--base-primary-bg: #{$light-gray-100};
|
|
434
435
|
--base-primary-bg-hover: #{$light-gray-200};
|
|
435
436
|
--base-text-color-1: #{$light-gray-900};
|
|
@@ -447,7 +448,6 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
447
448
|
--base-tooltip-bg: #{$light-gray-800};
|
|
448
449
|
--base-tooltip-text-color: #ffffff;
|
|
449
450
|
|
|
450
|
-
// Daterangepicker overrides (light mode) - must target element directly to override core
|
|
451
451
|
web-daterangepicker {
|
|
452
452
|
--drp-dropdown-bg: #{$light-white};
|
|
453
453
|
--drp-border-color: #{$light-gray-300};
|
|
@@ -463,7 +463,6 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
463
463
|
--drp-button-cancel-color: #{$light-gray-600};
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
-
// Multiselect overrides (light mode) - must target element directly to override core
|
|
467
466
|
web-multiselect {
|
|
468
467
|
--ms-dropdown-bg: #{$light-white};
|
|
469
468
|
--ms-input-bg: #{$light-white};
|
|
@@ -480,14 +479,12 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
480
479
|
}
|
|
481
480
|
}
|
|
482
481
|
|
|
483
|
-
// Light mode
|
|
482
|
+
// Light mode component adjustments
|
|
484
483
|
.pa-mode-light {
|
|
485
|
-
// Card shadows lighter
|
|
486
484
|
.pa-card {
|
|
487
485
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
488
486
|
}
|
|
489
487
|
|
|
490
|
-
// Outline secondary button adjustments
|
|
491
488
|
.pa-btn--outline-secondary {
|
|
492
489
|
border-color: #adb5bd !important;
|
|
493
490
|
color: #495057 !important;
|
|
@@ -497,4 +494,14 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
497
494
|
color: #212529 !important;
|
|
498
495
|
}
|
|
499
496
|
}
|
|
497
|
+
|
|
498
|
+
// Profile panel fix - header stays dark, so use light text
|
|
499
|
+
.pa-profile-panel__header {
|
|
500
|
+
.pa-profile-panel__name {
|
|
501
|
+
color: var(--pa-header-text);
|
|
502
|
+
}
|
|
503
|
+
.pa-profile-panel__email {
|
|
504
|
+
color: var(--pa-header-text-secondary);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
500
507
|
}
|