@keenmate/pure-admin-core 1.0.0 → 1.1.0
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/README.md +77 -7
- package/dist/css/main.css +792 -431
- package/package.json +1 -1
- package/snippets/customization.html +1 -1
- package/snippets/layout.html +4 -4
- package/snippets/manifest.json +0 -50
- package/snippets/profile.html +51 -3
- package/src/scss/_base-css-variables.scss +432 -422
- package/src/scss/_core.scss +105 -105
- package/src/scss/_fonts.scss +0 -14
- package/src/scss/_variables.scss +12 -14
- package/src/scss/core-components/_alerts.scss +7 -7
- package/src/scss/core-components/_base.scss +3 -3
- package/src/scss/core-components/_buttons.scss +425 -425
- package/src/scss/core-components/_callouts.scss +139 -139
- package/src/scss/core-components/_cards.scss +321 -321
- package/src/scss/core-components/_checkbox-lists.scss +2 -2
- package/src/scss/core-components/_code.scss +4 -4
- package/src/scss/core-components/_command-palette.scss +518 -518
- package/src/scss/core-components/_comparison.scss +3 -3
- package/src/scss/core-components/_file-selector.scss +780 -780
- package/src/scss/core-components/_forms.scss +16 -16
- package/src/scss/core-components/_layout.scss +15 -15
- package/src/scss/core-components/_lists.scss +7 -7
- package/src/scss/core-components/_logic-tree.scss +280 -280
- package/src/scss/core-components/_modals.scss +2 -2
- package/src/scss/core-components/_notifications.scss +7 -7
- package/src/scss/core-components/_pagers.scss +3 -3
- package/src/scss/core-components/_popconfirm.scss +1 -1
- package/src/scss/core-components/_profile.scss +400 -389
- package/src/scss/core-components/_scrollbars.scss +40 -40
- package/src/scss/core-components/_settings-panel.scss +5 -5
- package/src/scss/core-components/_statistics.scss +6 -6
- package/src/scss/core-components/_tables.scss +566 -566
- package/src/scss/core-components/_tabs.scss +493 -493
- package/src/scss/core-components/_timeline.scss +15 -15
- package/src/scss/core-components/_toasts.scss +4 -4
- package/src/scss/core-components/_tooltips.scss +8 -8
- package/src/scss/core-components/_utilities.scss +11 -30
- package/src/scss/core-components/_web-components-theme.scss +294 -294
- package/src/scss/core-components/badges/_composite-badge-variants.scss +3 -3
- package/src/scss/core-components/badges/_labels.scss +1 -1
- package/src/scss/core-components/forms/_checkboxes-radios.scss +2 -2
- package/src/scss/core-components/forms/_form-inputs.scss +4 -4
- package/src/scss/core-components/forms/_form-layout.scss +2 -2
- package/src/scss/core-components/forms/_form-states.scss +1 -1
- package/src/scss/core-components/forms/_input-wrapper.scss +1 -1
- package/src/scss/core-components/forms/_query-editor.scss +17 -17
- package/src/scss/core-components/layout/_layout-container.scss +1 -1
- package/src/scss/core-components/layout/_navbar-elements.scss +1 -1
- package/src/scss/core-components/layout/_sidebar.scss +5 -5
- package/src/scss/utilities.scss +24 -0
- package/src/scss/variables/_base.scss +20 -10
- package/src/scss/variables/_colors.scss +7 -6
- package/src/scss/variables/_components.scss +8 -11
- package/src/scss/variables/_index.scss +11 -7
- package/src/scss/variables/_spacing.scss +12 -0
- package/src/scss/variables/_typography.scss +2 -2
- package/dist/fonts/Delivery/Delivery_W_Bd.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_BdIt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_CdBlk.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_CdLt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_It.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_Lt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_LtIt.woff2 +0 -0
- package/dist/fonts/Delivery/Delivery_W_Rg.woff2 +0 -0
- package/src/scss/themes/_dark-base.scss +0 -207
- package/src/scss/themes/audi-light.scss +0 -341
- package/src/scss/themes/audi.scss +0 -303
- package/src/scss/themes/corporate.scss +0 -229
- package/src/scss/themes/dark-blue.scss +0 -165
- package/src/scss/themes/dark-green.scss +0 -169
- package/src/scss/themes/dark-red.scss +0 -173
- package/src/scss/themes/dark.scss +0 -158
- package/src/scss/themes/express.scss +0 -294
- package/src/scss/themes/minimal.scss +0 -134
|
@@ -1,422 +1,432 @@
|
|
|
1
|
-
// ============================================================================
|
|
2
|
-
// BASE CSS VARIABLES OUTPUT MIXIN
|
|
3
|
-
// ============================================================================
|
|
4
|
-
// This mixin outputs all $base-* SCSS variables as --base-* CSS custom properties.
|
|
5
|
-
// Include this in themes to enable web component theming.
|
|
6
|
-
//
|
|
7
|
-
// Usage in theme file:
|
|
8
|
-
// @import '../base-css-variables';
|
|
9
|
-
// :root {
|
|
10
|
-
// @include output-base-css-variables;
|
|
11
|
-
// }
|
|
12
|
-
//
|
|
13
|
-
// Web components consume these via fallback chains:
|
|
14
|
-
// --ms-accent-color: var(--base-accent-color, #3b82f6);
|
|
15
|
-
// ============================================================================
|
|
16
|
-
|
|
17
|
-
@mixin output-base-css-variables {
|
|
18
|
-
// === Accent Colors ===
|
|
19
|
-
--base-accent-color: #{$base-accent-color};
|
|
20
|
-
--base-accent-color-hover: #{$base-accent-color-hover};
|
|
21
|
-
--base-accent-color-active: #{$base-accent-color-active};
|
|
22
|
-
--base-accent-color-light: #{$base-accent-color-light};
|
|
23
|
-
--base-accent-color-light-hover: #{$base-accent-color-light-hover};
|
|
24
|
-
|
|
25
|
-
// === Text Colors ===
|
|
26
|
-
--base-text-color-1: #{$base-text-color-1};
|
|
27
|
-
--base-text-color-2: #{$base-text-color-2};
|
|
28
|
-
--base-text-color-3: #{$base-text-color-3};
|
|
29
|
-
--base-text-color-4: #{$base-text-color-4};
|
|
30
|
-
--base-text-color-on-accent: #{$base-text-color-on-accent};
|
|
31
|
-
|
|
32
|
-
// ===
|
|
33
|
-
--base-
|
|
34
|
-
--base-
|
|
35
|
-
--base-
|
|
36
|
-
--base-
|
|
37
|
-
--base-overlay-bg: #{$base-overlay-bg};
|
|
38
|
-
--base-shadow-color: #{$base-shadow-color};
|
|
39
|
-
--base-
|
|
40
|
-
--base-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
--base-
|
|
48
|
-
--base-
|
|
49
|
-
--base-
|
|
50
|
-
--base-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
--base-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
--base-input-
|
|
58
|
-
--base-input-
|
|
59
|
-
--base-input-
|
|
60
|
-
--base-input-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
--base-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
--base-
|
|
69
|
-
--base-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
--base-
|
|
74
|
-
--base-
|
|
75
|
-
--base-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
--base-
|
|
79
|
-
--base-text-
|
|
80
|
-
|
|
81
|
-
// === Contextual Colors -
|
|
82
|
-
--base-
|
|
83
|
-
--base-
|
|
84
|
-
--base-
|
|
85
|
-
--base-
|
|
86
|
-
--base-
|
|
87
|
-
--base-
|
|
88
|
-
--base-
|
|
89
|
-
--base-text-on-
|
|
90
|
-
|
|
91
|
-
// === Contextual Colors -
|
|
92
|
-
--base-
|
|
93
|
-
--base-
|
|
94
|
-
--base-
|
|
95
|
-
--base-
|
|
96
|
-
--base-
|
|
97
|
-
--base-
|
|
98
|
-
--base-
|
|
99
|
-
--base-text-on-
|
|
100
|
-
|
|
101
|
-
// === Contextual Colors -
|
|
102
|
-
--base-
|
|
103
|
-
--base-
|
|
104
|
-
--base-
|
|
105
|
-
--base-
|
|
106
|
-
--base-
|
|
107
|
-
--base-
|
|
108
|
-
--base-
|
|
109
|
-
--base-text-on-
|
|
110
|
-
|
|
111
|
-
// ===
|
|
112
|
-
--base-
|
|
113
|
-
--base-
|
|
114
|
-
--base-
|
|
115
|
-
--base-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
--base-
|
|
119
|
-
--base-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
--base-
|
|
123
|
-
--base-
|
|
124
|
-
--base-
|
|
125
|
-
--base-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
--base-font-
|
|
129
|
-
--base-font-
|
|
130
|
-
--base-font-
|
|
131
|
-
--base-
|
|
132
|
-
--base-
|
|
133
|
-
--base-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
--base-
|
|
137
|
-
--base-
|
|
138
|
-
--base-
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
//
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
//
|
|
152
|
-
//
|
|
153
|
-
//
|
|
154
|
-
//
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
--pa-
|
|
173
|
-
--pa-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
//
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
--pa-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
--pa-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
//
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
--pa-
|
|
194
|
-
--pa-
|
|
195
|
-
--pa-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
--pa-
|
|
209
|
-
--pa-
|
|
210
|
-
|
|
211
|
-
//
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
--pa-btn-
|
|
218
|
-
--pa-btn-
|
|
219
|
-
--pa-btn-
|
|
220
|
-
|
|
221
|
-
//
|
|
222
|
-
--pa-btn-
|
|
223
|
-
--pa-btn-
|
|
224
|
-
--pa-btn-
|
|
225
|
-
|
|
226
|
-
//
|
|
227
|
-
--pa-btn-
|
|
228
|
-
--pa-btn-
|
|
229
|
-
--pa-btn-
|
|
230
|
-
|
|
231
|
-
//
|
|
232
|
-
--pa-btn-
|
|
233
|
-
--pa-btn-
|
|
234
|
-
--pa-btn-
|
|
235
|
-
|
|
236
|
-
//
|
|
237
|
-
--pa-btn-
|
|
238
|
-
--pa-btn-
|
|
239
|
-
--pa-btn-
|
|
240
|
-
|
|
241
|
-
//
|
|
242
|
-
--pa-btn-
|
|
243
|
-
--pa-btn-
|
|
244
|
-
--pa-btn-
|
|
245
|
-
|
|
246
|
-
//
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
--pa-
|
|
253
|
-
--pa-
|
|
254
|
-
--pa-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
--pa-
|
|
262
|
-
--pa-
|
|
263
|
-
--pa-
|
|
264
|
-
--pa-
|
|
265
|
-
--pa-
|
|
266
|
-
--pa-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
--pa-
|
|
271
|
-
--pa-
|
|
272
|
-
--pa-
|
|
273
|
-
--pa-
|
|
274
|
-
--pa-
|
|
275
|
-
--pa-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
--pa-
|
|
280
|
-
--pa-
|
|
281
|
-
--pa-
|
|
282
|
-
--pa-
|
|
283
|
-
--pa-
|
|
284
|
-
--pa-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
//
|
|
288
|
-
|
|
289
|
-
--pa-
|
|
290
|
-
--pa-
|
|
291
|
-
--pa-
|
|
292
|
-
--pa-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
// =========================================================================
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
--pa-
|
|
300
|
-
--pa-
|
|
301
|
-
--pa-
|
|
302
|
-
--pa-
|
|
303
|
-
|
|
304
|
-
//
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
--pa-
|
|
308
|
-
--pa-
|
|
309
|
-
--pa-
|
|
310
|
-
--pa-
|
|
311
|
-
--pa-
|
|
312
|
-
--pa-
|
|
313
|
-
|
|
314
|
-
//
|
|
315
|
-
--pa-
|
|
316
|
-
--pa-
|
|
317
|
-
--pa-
|
|
318
|
-
--pa-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
--pa-
|
|
326
|
-
--pa-
|
|
327
|
-
--pa-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
//
|
|
331
|
-
//
|
|
332
|
-
|
|
333
|
-
--pa-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
--pa-
|
|
343
|
-
--pa-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
--pa-alert-
|
|
349
|
-
--pa-alert-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
--pa-
|
|
355
|
-
--pa-
|
|
356
|
-
--pa-
|
|
357
|
-
--pa-
|
|
358
|
-
--pa-
|
|
359
|
-
--pa-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
//
|
|
364
|
-
--pa-
|
|
365
|
-
--pa-
|
|
366
|
-
--pa-
|
|
367
|
-
--pa-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
--pa-
|
|
375
|
-
--pa-
|
|
376
|
-
--pa-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
//
|
|
380
|
-
//
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
--pa-
|
|
387
|
-
|
|
388
|
-
// =========================================================================
|
|
389
|
-
//
|
|
390
|
-
// =========================================================================
|
|
391
|
-
--pa-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
//
|
|
399
|
-
//
|
|
400
|
-
|
|
401
|
-
--pa-
|
|
402
|
-
--pa-
|
|
403
|
-
--pa-
|
|
404
|
-
--pa-
|
|
405
|
-
--pa-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
// =========================================================================
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
--pa-
|
|
414
|
-
--pa-
|
|
415
|
-
--pa-
|
|
416
|
-
--pa-
|
|
417
|
-
--pa-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
1
|
+
// ============================================================================
|
|
2
|
+
// BASE CSS VARIABLES OUTPUT MIXIN
|
|
3
|
+
// ============================================================================
|
|
4
|
+
// This mixin outputs all $base-* SCSS variables as --base-* CSS custom properties.
|
|
5
|
+
// Include this in themes to enable web component theming.
|
|
6
|
+
//
|
|
7
|
+
// Usage in theme file:
|
|
8
|
+
// @import '../base-css-variables';
|
|
9
|
+
// :root {
|
|
10
|
+
// @include output-base-css-variables;
|
|
11
|
+
// }
|
|
12
|
+
//
|
|
13
|
+
// Web components consume these via fallback chains:
|
|
14
|
+
// --ms-accent-color: var(--base-accent-color, #3b82f6);
|
|
15
|
+
// ============================================================================
|
|
16
|
+
|
|
17
|
+
@mixin output-base-css-variables {
|
|
18
|
+
// === Accent Colors ===
|
|
19
|
+
--base-accent-color: #{$base-accent-color};
|
|
20
|
+
--base-accent-color-hover: #{$base-accent-color-hover};
|
|
21
|
+
--base-accent-color-active: #{$base-accent-color-active};
|
|
22
|
+
--base-accent-color-light: #{$base-accent-color-light};
|
|
23
|
+
--base-accent-color-light-hover: #{$base-accent-color-light-hover};
|
|
24
|
+
|
|
25
|
+
// === Text Colors ===
|
|
26
|
+
--base-text-color-1: #{$base-text-color-1};
|
|
27
|
+
--base-text-color-2: #{$base-text-color-2};
|
|
28
|
+
--base-text-color-3: #{$base-text-color-3};
|
|
29
|
+
--base-text-color-4: #{$base-text-color-4};
|
|
30
|
+
--base-text-color-on-accent: #{$base-text-color-on-accent};
|
|
31
|
+
|
|
32
|
+
// === Background Colors (semantic) ===
|
|
33
|
+
--base-main-bg: #{$base-main-bg};
|
|
34
|
+
--base-page-bg: #{$base-page-bg};
|
|
35
|
+
--base-subtle-bg: #{$base-subtle-bg};
|
|
36
|
+
--base-inverse-bg: #{$base-inverse-bg};
|
|
37
|
+
--base-overlay-bg: #{$base-overlay-bg};
|
|
38
|
+
--base-shadow-color: #{$base-shadow-color};
|
|
39
|
+
--base-hover-bg: #{$base-hover-bg};
|
|
40
|
+
--base-active-bg: #{$base-active-bg};
|
|
41
|
+
--base-disabled-bg: #{$base-disabled-bg};
|
|
42
|
+
--base-elevated-bg: #{$base-elevated-bg};
|
|
43
|
+
|
|
44
|
+
// === Background Colors (legacy aliases) ===
|
|
45
|
+
--base-surface-1: #{$base-surface-1};
|
|
46
|
+
--base-surface-2: #{$base-surface-2};
|
|
47
|
+
--base-surface-3: #{$base-surface-3};
|
|
48
|
+
--base-surface-inverse: #{$base-surface-inverse};
|
|
49
|
+
--base-primary-bg: #{$base-primary-bg};
|
|
50
|
+
--base-primary-bg-hover: #{$base-primary-bg-hover};
|
|
51
|
+
|
|
52
|
+
// === Border Colors ===
|
|
53
|
+
--base-border-color: #{$base-border-color};
|
|
54
|
+
--base-border: #{$base-border};
|
|
55
|
+
|
|
56
|
+
// === Input Fields ===
|
|
57
|
+
--base-input-bg: #{$base-input-bg};
|
|
58
|
+
--base-input-color: #{$base-input-color};
|
|
59
|
+
--base-input-border: #{$base-input-border};
|
|
60
|
+
--base-input-border-hover: #{$base-input-border-hover};
|
|
61
|
+
--base-input-border-focus: #{$base-input-border-focus};
|
|
62
|
+
--base-input-placeholder-color: #{$base-input-placeholder-color};
|
|
63
|
+
--base-input-bg-disabled: #{$base-input-bg-disabled};
|
|
64
|
+
|
|
65
|
+
// === Input Size Heights ===
|
|
66
|
+
--base-input-size-xs-height: #{$base-input-size-xs-height};
|
|
67
|
+
--base-input-size-sm-height: #{$base-input-size-sm-height};
|
|
68
|
+
--base-input-size-md-height: #{$base-input-size-md-height};
|
|
69
|
+
--base-input-size-lg-height: #{$base-input-size-lg-height};
|
|
70
|
+
--base-input-size-xl-height: #{$base-input-size-xl-height};
|
|
71
|
+
|
|
72
|
+
// === Dropdown/Popover ===
|
|
73
|
+
--base-dropdown-bg: #{$base-dropdown-bg};
|
|
74
|
+
--base-dropdown-border: #{$base-dropdown-border};
|
|
75
|
+
--base-dropdown-box-shadow: #{$base-dropdown-box-shadow};
|
|
76
|
+
|
|
77
|
+
// === Tooltip ===
|
|
78
|
+
--base-tooltip-bg: #{$base-tooltip-bg};
|
|
79
|
+
--base-tooltip-text-color: #{$base-tooltip-text-color};
|
|
80
|
+
|
|
81
|
+
// === Contextual Colors - Success ===
|
|
82
|
+
--base-success-color: #{$base-success-color};
|
|
83
|
+
--base-success-color-hover: #{$base-success-color-hover};
|
|
84
|
+
--base-success-bg-light: #{$base-success-bg-light};
|
|
85
|
+
--base-success-bg-subtle: #{$base-success-bg-subtle};
|
|
86
|
+
--base-success-border: #{$base-success-border};
|
|
87
|
+
--base-success-text: #{$base-success-text};
|
|
88
|
+
--base-success-text-light: #{$base-success-text-light};
|
|
89
|
+
--base-text-on-success: #{$base-text-on-success};
|
|
90
|
+
|
|
91
|
+
// === Contextual Colors - Danger ===
|
|
92
|
+
--base-danger-color: #{$base-danger-color};
|
|
93
|
+
--base-danger-color-hover: #{$base-danger-color-hover};
|
|
94
|
+
--base-danger-bg-light: #{$base-danger-bg-light};
|
|
95
|
+
--base-danger-bg-subtle: #{$base-danger-bg-subtle};
|
|
96
|
+
--base-danger-border: #{$base-danger-border};
|
|
97
|
+
--base-danger-text: #{$base-danger-text};
|
|
98
|
+
--base-danger-text-light: #{$base-danger-text-light};
|
|
99
|
+
--base-text-on-danger: #{$base-text-on-danger};
|
|
100
|
+
|
|
101
|
+
// === Contextual Colors - Warning ===
|
|
102
|
+
--base-warning-color: #{$base-warning-color};
|
|
103
|
+
--base-warning-color-hover: #{$base-warning-color-hover};
|
|
104
|
+
--base-warning-bg-light: #{$base-warning-bg-light};
|
|
105
|
+
--base-warning-bg-subtle: #{$base-warning-bg-subtle};
|
|
106
|
+
--base-warning-border: #{$base-warning-border};
|
|
107
|
+
--base-warning-text: #{$base-warning-text};
|
|
108
|
+
--base-warning-text-light: #{$base-warning-text-light};
|
|
109
|
+
--base-text-on-warning: #{$base-text-on-warning};
|
|
110
|
+
|
|
111
|
+
// === Contextual Colors - Info ===
|
|
112
|
+
--base-info-color: #{$base-info-color};
|
|
113
|
+
--base-info-color-hover: #{$base-info-color-hover};
|
|
114
|
+
--base-info-bg-light: #{$base-info-bg-light};
|
|
115
|
+
--base-info-bg-subtle: #{$base-info-bg-subtle};
|
|
116
|
+
--base-info-border: #{$base-info-border};
|
|
117
|
+
--base-info-text: #{$base-info-text};
|
|
118
|
+
--base-info-text-light: #{$base-info-text-light};
|
|
119
|
+
--base-text-on-info: #{$base-text-on-info};
|
|
120
|
+
|
|
121
|
+
// === Interactive States ===
|
|
122
|
+
--base-hover-overlay: #{$base-hover-overlay};
|
|
123
|
+
--base-active-overlay: #{$base-active-overlay};
|
|
124
|
+
--base-focus-ring-color: #{$base-focus-ring-color};
|
|
125
|
+
--base-focus-ring-width: #{$base-focus-ring-width};
|
|
126
|
+
|
|
127
|
+
// === Typography ===
|
|
128
|
+
--base-font-family: #{$base-font-family};
|
|
129
|
+
--base-font-family-mono: #{$base-font-family-mono};
|
|
130
|
+
--base-font-size-2xs: #{$base-font-size-2xs};
|
|
131
|
+
--base-font-size-xs: #{$base-font-size-xs};
|
|
132
|
+
--base-font-size-sm: #{$base-font-size-sm};
|
|
133
|
+
--base-font-size-base: #{$base-font-size-base};
|
|
134
|
+
--base-font-size-lg: #{$base-font-size-lg};
|
|
135
|
+
--base-font-size-xl: #{$base-font-size-xl};
|
|
136
|
+
--base-font-size-2xl: #{$base-font-size-2xl};
|
|
137
|
+
--base-font-weight-normal: #{$base-font-weight-normal};
|
|
138
|
+
--base-font-weight-medium: #{$base-font-weight-medium};
|
|
139
|
+
--base-font-weight-semibold: #{$base-font-weight-semibold};
|
|
140
|
+
--base-font-weight-bold: #{$base-font-weight-bold};
|
|
141
|
+
--base-line-height-tight: #{$base-line-height-tight};
|
|
142
|
+
--base-line-height-normal: #{$base-line-height-normal};
|
|
143
|
+
--base-line-height-relaxed: #{$base-line-height-relaxed};
|
|
144
|
+
|
|
145
|
+
// === Border Radius ===
|
|
146
|
+
--base-border-radius-sm: #{$base-border-radius-sm};
|
|
147
|
+
--base-border-radius-md: #{$base-border-radius-md};
|
|
148
|
+
--base-border-radius-lg: #{$base-border-radius-lg};
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// ============================================================================
|
|
152
|
+
// PURE ADMIN THEME CSS VARIABLES OUTPUT MIXIN
|
|
153
|
+
// ============================================================================
|
|
154
|
+
// This mixin outputs all themeable SCSS variables as --pa-* CSS custom properties.
|
|
155
|
+
// Components use var(--pa-*) for runtime theme switching capability.
|
|
156
|
+
//
|
|
157
|
+
// Usage in theme file:
|
|
158
|
+
// :root, .theme-light {
|
|
159
|
+
// @include output-pa-css-variables;
|
|
160
|
+
// }
|
|
161
|
+
// .theme-dark {
|
|
162
|
+
// @include output-pa-css-variables;
|
|
163
|
+
// }
|
|
164
|
+
// ============================================================================
|
|
165
|
+
|
|
166
|
+
@mixin output-pa-css-variables {
|
|
167
|
+
// =========================================================================
|
|
168
|
+
// CORE COLORS
|
|
169
|
+
// =========================================================================
|
|
170
|
+
|
|
171
|
+
// Background colors
|
|
172
|
+
--pa-main-bg: #{$main-bg};
|
|
173
|
+
--pa-page-bg: #{$page-bg};
|
|
174
|
+
--pa-subtle-bg: #{$subtle-bg};
|
|
175
|
+
|
|
176
|
+
// Text colors
|
|
177
|
+
--pa-text-color-1: #{$text-color-1};
|
|
178
|
+
--pa-text-color-2: #{$text-color-2};
|
|
179
|
+
|
|
180
|
+
// Accent colors
|
|
181
|
+
--pa-accent: #{$accent-color};
|
|
182
|
+
--pa-accent-hover: #{$accent-hover};
|
|
183
|
+
--pa-accent-light: #{$accent-light};
|
|
184
|
+
|
|
185
|
+
// Border
|
|
186
|
+
--pa-border-color: #{$border-color};
|
|
187
|
+
|
|
188
|
+
// =========================================================================
|
|
189
|
+
// LAYOUT COLORS
|
|
190
|
+
// =========================================================================
|
|
191
|
+
|
|
192
|
+
// Header
|
|
193
|
+
--pa-header-bg: #{$header-bg};
|
|
194
|
+
--pa-header-border-color: #{$header-border-color};
|
|
195
|
+
--pa-header-text: #{$header-text};
|
|
196
|
+
--pa-header-text-secondary: #{$header-text-secondary};
|
|
197
|
+
--pa-header-profile-name-color: #{$header-profile-name-color};
|
|
198
|
+
|
|
199
|
+
// Sidebar
|
|
200
|
+
--pa-sidebar-bg: #{$sidebar-bg};
|
|
201
|
+
--pa-sidebar-text: #{$sidebar-text};
|
|
202
|
+
--pa-sidebar-text-secondary: #{$sidebar-text-secondary};
|
|
203
|
+
--pa-sidebar-submenu-bg: #{$sidebar-submenu-bg};
|
|
204
|
+
--pa-sidebar-submenu-hover-bg: #{$sidebar-submenu-hover-bg};
|
|
205
|
+
--pa-sidebar-submenu-active-bg: #{$sidebar-submenu-active-bg};
|
|
206
|
+
|
|
207
|
+
// Footer
|
|
208
|
+
--pa-footer-bg: #{$footer-bg};
|
|
209
|
+
--pa-footer-border-color: #{$footer-border-color};
|
|
210
|
+
|
|
211
|
+
// =========================================================================
|
|
212
|
+
// BUTTON COLORS
|
|
213
|
+
// =========================================================================
|
|
214
|
+
|
|
215
|
+
// Primary (uses accent color)
|
|
216
|
+
--pa-btn-primary-bg: #{$btn-primary-bg};
|
|
217
|
+
--pa-btn-primary-bg-hover: #{$btn-primary-bg-hover};
|
|
218
|
+
--pa-btn-primary-bg-light: #{$accent-light};
|
|
219
|
+
--pa-btn-primary-text: #{$btn-primary-text};
|
|
220
|
+
|
|
221
|
+
// Secondary
|
|
222
|
+
--pa-btn-secondary-bg: #{$btn-secondary-bg};
|
|
223
|
+
--pa-btn-secondary-bg-hover: #{$btn-secondary-bg-hover};
|
|
224
|
+
--pa-btn-secondary-text: #{$btn-secondary-text};
|
|
225
|
+
|
|
226
|
+
// Success
|
|
227
|
+
--pa-btn-success-bg: #{$btn-success-bg};
|
|
228
|
+
--pa-btn-success-bg-hover: #{$btn-success-bg-hover};
|
|
229
|
+
--pa-btn-success-text: #{$btn-success-text};
|
|
230
|
+
|
|
231
|
+
// Danger
|
|
232
|
+
--pa-btn-danger-bg: #{$btn-danger-bg};
|
|
233
|
+
--pa-btn-danger-bg-hover: #{$btn-danger-bg-hover};
|
|
234
|
+
--pa-btn-danger-text: #{$btn-danger-text};
|
|
235
|
+
|
|
236
|
+
// Warning
|
|
237
|
+
--pa-btn-warning-bg: #{$btn-warning-bg};
|
|
238
|
+
--pa-btn-warning-bg-hover: #{$btn-warning-bg-hover};
|
|
239
|
+
--pa-btn-warning-text: #{$btn-warning-text};
|
|
240
|
+
|
|
241
|
+
// Info
|
|
242
|
+
--pa-btn-info-bg: #{$btn-info-bg};
|
|
243
|
+
--pa-btn-info-bg-hover: #{$btn-info-bg-hover};
|
|
244
|
+
--pa-btn-info-text: #{$btn-info-text};
|
|
245
|
+
|
|
246
|
+
// Light
|
|
247
|
+
--pa-btn-light-bg: #{$btn-light-bg};
|
|
248
|
+
--pa-btn-light-bg-hover: #{$btn-light-bg-hover};
|
|
249
|
+
--pa-btn-light-text: #{$btn-light-text};
|
|
250
|
+
|
|
251
|
+
// Dark
|
|
252
|
+
--pa-btn-dark-bg: #{$btn-dark-bg};
|
|
253
|
+
--pa-btn-dark-bg-hover: #{$btn-dark-bg-hover};
|
|
254
|
+
--pa-btn-dark-text: #{$btn-dark-text};
|
|
255
|
+
|
|
256
|
+
// =========================================================================
|
|
257
|
+
// CONTEXTUAL/SEMANTIC COLORS
|
|
258
|
+
// =========================================================================
|
|
259
|
+
|
|
260
|
+
// Success
|
|
261
|
+
--pa-success-bg: #{$success-bg};
|
|
262
|
+
--pa-success-bg-hover: #{$success-bg-hover};
|
|
263
|
+
--pa-success-bg-light: #{$success-bg-light};
|
|
264
|
+
--pa-success-bg-subtle: #{$success-bg-subtle};
|
|
265
|
+
--pa-success-border: #{$success-border};
|
|
266
|
+
--pa-success-text: #{$success-text};
|
|
267
|
+
--pa-success-text-light: #{$success-text-light};
|
|
268
|
+
|
|
269
|
+
// Danger
|
|
270
|
+
--pa-danger-bg: #{$danger-bg};
|
|
271
|
+
--pa-danger-bg-hover: #{$danger-bg-hover};
|
|
272
|
+
--pa-danger-bg-light: #{$danger-bg-light};
|
|
273
|
+
--pa-danger-bg-subtle: #{$danger-bg-subtle};
|
|
274
|
+
--pa-danger-border: #{$danger-border};
|
|
275
|
+
--pa-danger-text: #{$danger-text};
|
|
276
|
+
--pa-danger-text-light: #{$danger-text-light};
|
|
277
|
+
|
|
278
|
+
// Warning
|
|
279
|
+
--pa-warning-bg: #{$warning-bg};
|
|
280
|
+
--pa-warning-bg-hover: #{$warning-bg-hover};
|
|
281
|
+
--pa-warning-bg-light: #{$warning-bg-light};
|
|
282
|
+
--pa-warning-bg-subtle: #{$warning-bg-subtle};
|
|
283
|
+
--pa-warning-border: #{$warning-border};
|
|
284
|
+
--pa-warning-text: #{$warning-text};
|
|
285
|
+
--pa-warning-text-light: #{$warning-text-light};
|
|
286
|
+
|
|
287
|
+
// Info
|
|
288
|
+
--pa-info-bg: #{$info-bg};
|
|
289
|
+
--pa-info-bg-hover: #{$info-bg-hover};
|
|
290
|
+
--pa-info-bg-light: #{$info-bg-light};
|
|
291
|
+
--pa-info-bg-subtle: #{$info-bg-subtle};
|
|
292
|
+
--pa-info-border: #{$info-border};
|
|
293
|
+
--pa-info-text: #{$info-text};
|
|
294
|
+
--pa-info-text-light: #{$info-text-light};
|
|
295
|
+
|
|
296
|
+
// =========================================================================
|
|
297
|
+
// CARD COLORS
|
|
298
|
+
// =========================================================================
|
|
299
|
+
--pa-card-bg: #{$card-bg};
|
|
300
|
+
--pa-card-header-bg: #{$card-header-bg};
|
|
301
|
+
--pa-card-footer-bg: #{$card-footer-bg};
|
|
302
|
+
--pa-card-tabs-bg: #{$card-tabs-bg};
|
|
303
|
+
|
|
304
|
+
// =========================================================================
|
|
305
|
+
// INPUT/FORM COLORS
|
|
306
|
+
// =========================================================================
|
|
307
|
+
--pa-input-bg: #{$input-bg};
|
|
308
|
+
--pa-input-border: #{$input-border};
|
|
309
|
+
--pa-input-text: #{$input-text};
|
|
310
|
+
--pa-input-focus-border-color: #{$input-focus-border-color};
|
|
311
|
+
--pa-select-focus-border-color: #{$select-focus-border-color};
|
|
312
|
+
--pa-textarea-focus-border-color: #{$textarea-focus-border-color};
|
|
313
|
+
|
|
314
|
+
// Checkbox
|
|
315
|
+
--pa-checkbox-border-color: #{$checkbox-border-color};
|
|
316
|
+
--pa-checkbox-border-color-hover: #{$checkbox-border-color-hover};
|
|
317
|
+
--pa-checkbox-border-color-checked: #{$checkbox-border-color-checked};
|
|
318
|
+
--pa-checkbox-bg: #{$checkbox-bg};
|
|
319
|
+
--pa-checkbox-bg-checked: #{$checkbox-bg-checked};
|
|
320
|
+
--pa-checkbox-bg-indeterminate: #{$checkbox-bg-indeterminate};
|
|
321
|
+
--pa-checkbox-checkmark-color: #{$checkbox-checkmark-color};
|
|
322
|
+
--pa-checkbox-focus-shadow: #{$checkbox-focus-shadow};
|
|
323
|
+
|
|
324
|
+
// Input group
|
|
325
|
+
--pa-input-group-prepend-bg: #{$input-group-prepend-bg};
|
|
326
|
+
--pa-input-group-prepend-text: #{$input-group-prepend-text};
|
|
327
|
+
--pa-input-group-append-bg: #{$input-group-append-bg};
|
|
328
|
+
--pa-input-group-append-text: #{$input-group-append-text};
|
|
329
|
+
|
|
330
|
+
// =========================================================================
|
|
331
|
+
// TABLE COLORS
|
|
332
|
+
// =========================================================================
|
|
333
|
+
--pa-table-bg: #{$table-bg};
|
|
334
|
+
--pa-table-header-bg: #{$table-header-bg};
|
|
335
|
+
--pa-table-stripe: #{$table-stripe};
|
|
336
|
+
--pa-table-hover-bg: #{$table-hover-bg};
|
|
337
|
+
--pa-table-hover-accent-color: #{$table-hover-accent-color};
|
|
338
|
+
|
|
339
|
+
// =========================================================================
|
|
340
|
+
// MODAL COLORS
|
|
341
|
+
// =========================================================================
|
|
342
|
+
--pa-modal-overlay-bg: #{$modal-overlay-bg};
|
|
343
|
+
--pa-modal-content-bg: #{$modal-content-bg};
|
|
344
|
+
|
|
345
|
+
// =========================================================================
|
|
346
|
+
// ALERT COLORS
|
|
347
|
+
// =========================================================================
|
|
348
|
+
--pa-alert-success-bg: #{$alert-success-bg};
|
|
349
|
+
--pa-alert-success-border: #{$alert-success-border};
|
|
350
|
+
--pa-alert-success-text: #{$alert-success-text};
|
|
351
|
+
--pa-alert-danger-bg: #{$alert-danger-bg};
|
|
352
|
+
--pa-alert-danger-border: #{$alert-danger-border};
|
|
353
|
+
--pa-alert-danger-text: #{$alert-danger-text};
|
|
354
|
+
--pa-alert-warning-bg: #{$alert-warning-bg};
|
|
355
|
+
--pa-alert-warning-border: #{$alert-warning-border};
|
|
356
|
+
--pa-alert-warning-text: #{$alert-warning-text};
|
|
357
|
+
--pa-alert-info-bg: #{$alert-info-bg};
|
|
358
|
+
--pa-alert-info-border: #{$alert-info-border};
|
|
359
|
+
--pa-alert-info-text: #{$alert-info-text};
|
|
360
|
+
|
|
361
|
+
// =========================================================================
|
|
362
|
+
// BADGE COLORS
|
|
363
|
+
// =========================================================================
|
|
364
|
+
--pa-badge-success-bg: #{$badge-success-bg};
|
|
365
|
+
--pa-badge-success-text: #{$badge-success-text};
|
|
366
|
+
--pa-badge-warning-bg: #{$badge-warning-bg};
|
|
367
|
+
--pa-badge-warning-text: #{$badge-warning-text};
|
|
368
|
+
--pa-badge-info-bg: #{$badge-info-bg};
|
|
369
|
+
--pa-badge-info-text: #{$badge-info-text};
|
|
370
|
+
--pa-badge-danger-bg: #{$badge-danger-bg};
|
|
371
|
+
--pa-badge-danger-text: #{$badge-danger-text};
|
|
372
|
+
|
|
373
|
+
// Composite badge
|
|
374
|
+
--pa-composite-badge-icon-bg: #{$composite-badge-icon-bg};
|
|
375
|
+
--pa-composite-badge-label-bg: #{$composite-badge-label-bg};
|
|
376
|
+
--pa-composite-badge-label-text: #{$composite-badge-label-text};
|
|
377
|
+
--pa-composite-badge-label-hover-bg: #{$composite-badge-label-hover-bg};
|
|
378
|
+
|
|
379
|
+
// =========================================================================
|
|
380
|
+
// TOOLTIP & POPOVER COLORS
|
|
381
|
+
// =========================================================================
|
|
382
|
+
--pa-tooltip-bg: #{$tooltip-bg};
|
|
383
|
+
--pa-tooltip-text: #{$tooltip-text};
|
|
384
|
+
--pa-popover-content-bg: #{$popover-content-bg};
|
|
385
|
+
--pa-popover-text-light: #{$popover-text-light};
|
|
386
|
+
--pa-popover-text-dark: #{$popover-text-dark};
|
|
387
|
+
|
|
388
|
+
// =========================================================================
|
|
389
|
+
// LOADER COLORS
|
|
390
|
+
// =========================================================================
|
|
391
|
+
--pa-loader-overlay-bg: #{$loader-overlay-bg};
|
|
392
|
+
|
|
393
|
+
// =========================================================================
|
|
394
|
+
// PROFILE PANEL COLORS
|
|
395
|
+
// =========================================================================
|
|
396
|
+
--pa-profile-overlay-bg: #{$profile-overlay-bg};
|
|
397
|
+
|
|
398
|
+
// =========================================================================
|
|
399
|
+
// COMMAND PALETTE COLORS
|
|
400
|
+
// =========================================================================
|
|
401
|
+
--pa-command-palette-backdrop-bg: #{$command-palette-backdrop-bg};
|
|
402
|
+
--pa-command-palette-item-hover-bg: #{$command-palette-item-hover-bg};
|
|
403
|
+
--pa-command-palette-item-active-bg: #{$command-palette-item-active-bg};
|
|
404
|
+
--pa-command-palette-highlight-bg: #{$command-palette-highlight-bg};
|
|
405
|
+
--pa-command-palette-highlight-text: #{$command-palette-highlight-text};
|
|
406
|
+
|
|
407
|
+
// =========================================================================
|
|
408
|
+
// MULTISELECT COLORS
|
|
409
|
+
// =========================================================================
|
|
410
|
+
--pa-multiselect-dropdown-bg: #{$multiselect-dropdown-bg};
|
|
411
|
+
--pa-multiselect-dropdown-border: #{$multiselect-dropdown-border};
|
|
412
|
+
--pa-multiselect-dropdown-text: #{$multiselect-dropdown-text};
|
|
413
|
+
--pa-multiselect-hint-bg: #{$multiselect-hint-bg};
|
|
414
|
+
--pa-multiselect-hint-border: #{$multiselect-hint-border};
|
|
415
|
+
--pa-multiselect-option-hover-bg: #{$multiselect-option-hover-bg};
|
|
416
|
+
--pa-multiselect-pill-bg: #{$multiselect-pill-bg};
|
|
417
|
+
--pa-multiselect-pill-border: #{$multiselect-pill-border};
|
|
418
|
+
|
|
419
|
+
// =========================================================================
|
|
420
|
+
// CUSTOM THEME COLORS (1-9)
|
|
421
|
+
// Themes can override $color-1 through $color-9 to define branded colors
|
|
422
|
+
// =========================================================================
|
|
423
|
+
--pa-color-1: #{$color-1};
|
|
424
|
+
--pa-color-2: #{$color-2};
|
|
425
|
+
--pa-color-3: #{$color-3};
|
|
426
|
+
--pa-color-4: #{$color-4};
|
|
427
|
+
--pa-color-5: #{$color-5};
|
|
428
|
+
--pa-color-6: #{$color-6};
|
|
429
|
+
--pa-color-7: #{$color-7};
|
|
430
|
+
--pa-color-8: #{$color-8};
|
|
431
|
+
--pa-color-9: #{$color-9};
|
|
432
|
+
}
|