vuetiwatch 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +19 -3
- package/dist/plugin.js.map +1 -1
- package/dist/styles/aurora.css +1 -1
- package/dist/styles/aurora.min.css +1 -1
- package/dist/styles/brutalist.css +1 -1
- package/dist/styles/brutalist.min.css +1 -1
- package/dist/styles/calm.css +1 -1
- package/dist/styles/calm.min.css +1 -1
- package/dist/styles/candy.css +1 -4
- package/dist/styles/candy.min.css +1 -1
- package/dist/styles/clay.css +1 -1
- package/dist/styles/clay.min.css +1 -1
- package/dist/styles/core.css +44 -2
- package/dist/styles/core.min.css +1 -1
- package/dist/styles/darkGlass.css +1 -1
- package/dist/styles/darkGlass.min.css +1 -1
- package/dist/styles/liquidGlass.css +10 -1
- package/dist/styles/liquidGlass.min.css +1 -1
- package/dist/styles/lux.css +1 -1
- package/dist/styles/lux.min.css +1 -1
- package/dist/styles/neon.css +1 -1
- package/dist/styles/neon.min.css +1 -1
- package/dist/styles/slate.css +1 -1
- package/dist/styles/slate.min.css +1 -1
- package/dist/styles/soft.css +3 -2
- package/dist/styles/soft.min.css +1 -1
- package/dist/styles.css +66 -17
- package/dist/styles.min.css +1 -1
- package/dist/themes/atlas.d.ts +35 -0
- package/dist/themes/atlas.d.ts.map +1 -1
- package/dist/themes/atlas.js +75 -1
- package/dist/themes/atlas.js.map +1 -1
- package/dist/themes/atlasDark.d.ts.map +1 -1
- package/dist/themes/atlasDark.js +5 -0
- package/dist/themes/atlasDark.js.map +1 -1
- package/dist/themes/atlasSepia.d.ts.map +1 -1
- package/dist/themes/atlasSepia.js +5 -0
- package/dist/themes/atlasSepia.js.map +1 -1
- package/dist/themes/aurora.d.ts.map +1 -1
- package/dist/themes/aurora.js +20 -1
- package/dist/themes/aurora.js.map +1 -1
- package/dist/themes/brutalist.d.ts.map +1 -1
- package/dist/themes/brutalist.js +63 -5
- package/dist/themes/brutalist.js.map +1 -1
- package/dist/themes/calm.d.ts.map +1 -1
- package/dist/themes/calm.js +22 -1
- package/dist/themes/calm.js.map +1 -1
- package/dist/themes/candy.d.ts.map +1 -1
- package/dist/themes/candy.js +23 -1
- package/dist/themes/candy.js.map +1 -1
- package/dist/themes/clay.d.ts.map +1 -1
- package/dist/themes/clay.js +14 -1
- package/dist/themes/clay.js.map +1 -1
- package/dist/themes/darkGlass.d.ts.map +1 -1
- package/dist/themes/darkGlass.js +13 -1
- package/dist/themes/darkGlass.js.map +1 -1
- package/dist/themes/graphite.d.ts.map +1 -1
- package/dist/themes/graphite.js +42 -7
- package/dist/themes/graphite.js.map +1 -1
- package/dist/themes/liquidGlass.d.ts.map +1 -1
- package/dist/themes/liquidGlass.js +41 -5
- package/dist/themes/liquidGlass.js.map +1 -1
- package/dist/themes/lux.d.ts.map +1 -1
- package/dist/themes/lux.js +48 -6
- package/dist/themes/lux.js.map +1 -1
- package/dist/themes/morph.d.ts.map +1 -1
- package/dist/themes/morph.js +21 -1
- package/dist/themes/morph.js.map +1 -1
- package/dist/themes/neon.d.ts.map +1 -1
- package/dist/themes/neon.js +35 -1
- package/dist/themes/neon.js.map +1 -1
- package/dist/themes/paper.d.ts.map +1 -1
- package/dist/themes/paper.js +38 -1
- package/dist/themes/paper.js.map +1 -1
- package/dist/themes/sketchy.d.ts.map +1 -1
- package/dist/themes/sketchy.js +27 -1
- package/dist/themes/sketchy.js.map +1 -1
- package/dist/themes/slate.d.ts.map +1 -1
- package/dist/themes/slate.js +42 -6
- package/dist/themes/slate.js.map +1 -1
- package/dist/themes/soft.d.ts.map +1 -1
- package/dist/themes/soft.js +48 -8
- package/dist/themes/soft.js.map +1 -1
- package/dist/util/defaults.d.ts +35 -0
- package/dist/util/defaults.d.ts.map +1 -1
- package/dist/util/defaults.js +51 -0
- package/dist/util/defaults.js.map +1 -1
- package/package.json +2 -1
- package/src/index.ts +2 -2
- package/src/plugin.ts +20 -3
- package/src/styles/core.css +152 -3
- package/src/styles/themes/aurora.css +1 -0
- package/src/styles/themes/brutalist.css +1 -0
- package/src/styles/themes/calm.css +1 -0
- package/src/styles/themes/candy.css +9 -4
- package/src/styles/themes/clay.css +1 -0
- package/src/styles/themes/darkGlass.css +1 -0
- package/src/styles/themes/liquidGlass.css +41 -0
- package/src/styles/themes/lux.css +1 -0
- package/src/styles/themes/neon.css +1 -0
- package/src/styles/themes/slate.css +1 -0
- package/src/styles/themes/soft.css +10 -0
- package/src/themes/atlas.ts +76 -1
- package/src/themes/atlasDark.ts +5 -0
- package/src/themes/atlasSepia.ts +5 -0
- package/src/themes/aurora.ts +21 -1
- package/src/themes/brutalist.ts +65 -5
- package/src/themes/calm.ts +23 -1
- package/src/themes/candy.ts +24 -1
- package/src/themes/clay.ts +15 -1
- package/src/themes/darkGlass.ts +14 -1
- package/src/themes/graphite.ts +44 -7
- package/src/themes/liquidGlass.ts +42 -5
- package/src/themes/lux.ts +50 -6
- package/src/themes/morph.ts +22 -1
- package/src/themes/neon.ts +37 -1
- package/src/themes/paper.ts +40 -1
- package/src/themes/sketchy.ts +29 -1
- package/src/themes/slate.ts +43 -6
- package/src/themes/soft.ts +49 -8
- package/src/util/defaults.ts +84 -0
package/README.md
CHANGED
|
@@ -364,9 +364,79 @@ points of lightness instead of flipping the label, so the hue survives and
|
|
|
364
364
|
both models pass; `aurora` keeps its bright gradient for decoration and
|
|
365
365
|
carries a deeper one behind anything with text on it.
|
|
366
366
|
|
|
367
|
-
The result: in
|
|
368
|
-
`classic` does not, and that is the point of it — it is stock
|
|
369
|
-
including this.
|
|
367
|
+
The result: in seventeen of the eighteen non-stock themes every filled control
|
|
368
|
+
clears 4.5:1. `classic` does not, and that is the point of it — it is stock
|
|
369
|
+
Vuetify, including this.
|
|
370
|
+
|
|
371
|
+
`npm run audit` measures all of it and fails on anything unexplained, so the
|
|
372
|
+
next palette change cannot quietly walk this back. Exceptions live in that
|
|
373
|
+
script with their reason attached, which is the only way a later reader can
|
|
374
|
+
tell a decision from an oversight.
|
|
375
|
+
|
|
376
|
+
`soft` is the one stated exception. Its filled controls carry white labels on
|
|
377
|
+
pastel grounds, which measures between 1.77:1 and 2.84:1 — under the bar, by
|
|
378
|
+
both models. Nothing about that is accidental: white is what the palette wants,
|
|
379
|
+
and the only way to earn it is to take the hues down by a third, at which point
|
|
380
|
+
the theme is no longer pastel and no longer itself. If a screen has to be legible
|
|
381
|
+
to everyone, pick a theme that measures — `atlas` and `graphite` are built for
|
|
382
|
+
exactly that. `soft` is for the places where the palette is the point.
|
|
383
|
+
|
|
384
|
+
### Motion
|
|
385
|
+
|
|
386
|
+
Which transition a floating surface uses is an ordinary prop too, so a theme
|
|
387
|
+
owns how its overlays arrive as well as how they look. `overlays()` states it
|
|
388
|
+
once for the dialog, the menu, the tooltip and the snackbar — `menu` reaches
|
|
389
|
+
the select, the autocomplete and the combobox with it.
|
|
390
|
+
|
|
391
|
+
```ts
|
|
392
|
+
import { overlays, ripple } from 'vuetiwatch'
|
|
393
|
+
|
|
394
|
+
defineTheme({
|
|
395
|
+
// …
|
|
396
|
+
defaults: [
|
|
397
|
+
overlays({
|
|
398
|
+
dialog: 'fade-transition',
|
|
399
|
+
menu: 'slide-y-transition',
|
|
400
|
+
tooltip: 'fade-transition',
|
|
401
|
+
}),
|
|
402
|
+
ripple(false),
|
|
403
|
+
],
|
|
404
|
+
})
|
|
405
|
+
```
|
|
406
|
+
|
|
407
|
+
`false` means no animation at all, which is the honest answer for a theme
|
|
408
|
+
that draws no depth for a surface to arrive through — `brutalist` uses it.
|
|
409
|
+
|
|
410
|
+
Vuetify bakes the *timing* of each named transition into its own stylesheet,
|
|
411
|
+
so naming one only half moves it: a fade takes 300ms whether it belongs to a
|
|
412
|
+
theme that settles slowly or to one that repaints instantly. Two variables
|
|
413
|
+
take that back, and default to Vuetify's own numbers so a theme that says
|
|
414
|
+
nothing changes nothing:
|
|
415
|
+
|
|
416
|
+
| Variable | What it sets |
|
|
417
|
+
| --- | --- |
|
|
418
|
+
| `--v-vw-overlay-duration` | How long a surface takes to arrive |
|
|
419
|
+
| `--v-vw-overlay-exit` | How long it takes to leave; falls through to the above |
|
|
420
|
+
|
|
421
|
+
The easing follows `--v-vw-motion-ease`, so a theme that already stated its
|
|
422
|
+
curve gets its overlays eased the same way for free.
|
|
423
|
+
|
|
424
|
+
`ripple(false)` turns off the Material ripple everywhere one is drawn — the
|
|
425
|
+
tab, the app-bar nav icon and every tick box included, each of which is its
|
|
426
|
+
own defaults key and would otherwise be missed.
|
|
427
|
+
|
|
428
|
+
### Selection
|
|
429
|
+
|
|
430
|
+
Dragging across text is answered in the browser's own blue, which belongs to
|
|
431
|
+
no palette. Every non-stock theme replaces it with its accent at 24%, which
|
|
432
|
+
costs a theme nothing and follows `setAccent()` when one repaints. A theme
|
|
433
|
+
that wants a solid highlight states both halves and takes responsibility for
|
|
434
|
+
the ink on top:
|
|
435
|
+
|
|
436
|
+
| Variable | What it sets |
|
|
437
|
+
| --- | --- |
|
|
438
|
+
| `--v-vw-selection-fill` | The highlight behind selected text |
|
|
439
|
+
| `--v-vw-selection-color` | The text on it; defaults to the text's own colour |
|
|
370
440
|
|
|
371
441
|
### Icons
|
|
372
442
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ export { atlas, atlasDark, atlasSepia, aurora, brutalist, calm, candy, classic,
|
|
|
2
2
|
export { themeList, vuetiwatchDefaults, vuetiwatchMeta, vuetiwatchThemes, } from './registry.js';
|
|
3
3
|
export { createVuetiwatch, useVuetiwatch } from './plugin.js';
|
|
4
4
|
export { defineTheme } from './util/defineTheme.js';
|
|
5
|
-
export { bars, combine, controls, fields, icons, surfaces, tables } from './util/defaults.js';
|
|
5
|
+
export { bars, combine, controls, fields, icons, overlays, ripple, surfaces, tables } from './util/defaults.js';
|
|
6
6
|
export type { Vuetiwatch, VuetiwatchOptions } from './plugin.js';
|
|
7
7
|
export type { VuetiwatchThemeName } from './registry.js';
|
|
8
8
|
export type { DefineThemeOptions } from './util/defineTheme.js';
|
|
9
|
-
export type { VuetiwatchIcons } from './util/defaults.js';
|
|
9
|
+
export type { VuetiwatchIcons, VuetiwatchOverlays } from './util/defaults.js';
|
|
10
10
|
export type { VuetiwatchAccent, VuetiwatchDefaults, VuetiwatchMeta, VuetiwatchTheme, } from './types.js';
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,SAAS,EACT,UAAU,EACV,MAAM,EACN,SAAS,EACT,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,WAAW,EACX,GAAG,EACH,KAAK,EACL,IAAI,EACJ,KAAK,EACL,OAAO,EACP,KAAK,EACL,IAAI,GACL,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,gBAAgB,GACjB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,SAAS,EACT,UAAU,EACV,MAAM,EACN,SAAS,EACT,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,WAAW,EACX,GAAG,EACH,KAAK,EACL,IAAI,EACJ,KAAK,EACL,OAAO,EACP,KAAK,EACL,IAAI,GACL,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,gBAAgB,GACjB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;AAE/G,YAAY,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAA;AAChE,YAAY,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AACxD,YAAY,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAC/D,YAAY,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AAC7E,YAAY,EACV,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACd,eAAe,GAChB,MAAM,YAAY,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export { atlas, atlasDark, atlasSepia, aurora, brutalist, calm, candy, classic,
|
|
|
2
2
|
export { themeList, vuetiwatchDefaults, vuetiwatchMeta, vuetiwatchThemes, } from './registry.js';
|
|
3
3
|
export { createVuetiwatch, useVuetiwatch } from './plugin.js';
|
|
4
4
|
export { defineTheme } from './util/defineTheme.js';
|
|
5
|
-
export { bars, combine, controls, fields, icons, surfaces, tables } from './util/defaults.js';
|
|
5
|
+
export { bars, combine, controls, fields, icons, overlays, ripple, surfaces, tables } from './util/defaults.js';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,SAAS,EACT,UAAU,EACV,MAAM,EACN,SAAS,EACT,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,WAAW,EACX,GAAG,EACH,KAAK,EACL,IAAI,EACJ,KAAK,EACL,OAAO,EACP,KAAK,EACL,IAAI,GACL,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,gBAAgB,GACjB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,SAAS,EACT,UAAU,EACV,MAAM,EACN,SAAS,EACT,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,WAAW,EACX,GAAG,EACH,KAAK,EACL,IAAI,EACJ,KAAK,EACL,OAAO,EACP,KAAK,EACL,IAAI,GACL,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,gBAAgB,GACjB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA"}
|
package/dist/plugin.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAO,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAsB,eAAe,EAAE,MAAM,YAAY,CAAA;AAmBvF;;;;GAIG;AACH,UAAU,KAAK;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAcD,MAAM,WAAW,UAAU;IACzB,+EAA+E;IAC/E,MAAM,EAAE,SAAS,eAAe,EAAE,CAAA;IAClC,6EAA6E;IAC7E,OAAO,EAAE,WAAW,CAAC,eAAe,GAAG,SAAS,CAAC,CAAA;IACjD;;;;;OAKG;IACH,QAAQ,EAAE,WAAW,CAAC,SAAS,eAAe,EAAE,CAAC,CAAA;IACjD;;;;;;;;OAQG;IACH,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;IAC5D,8DAA8D;IAC9D,OAAO,EAAE,WAAW,CAAC,SAAS,gBAAgB,EAAE,CAAC,CAAA;IACjD,iEAAiE;IACjE,MAAM,EAAE,QAAQ,CAAC,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAA;IACzC;;;;;;;OAOG;IACH,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;CAChC;AAID;;;;;;GAMG;AACH,wBAAgB,aAAa,IAAK,UAAU,CAW3C;AAMD,MAAM,WAAW,iBAAiB;IAChC;;;;;;;OAOG;IACH,MAAM,EAAE,SAAS,eAAe,EAAE,CAAA;IAClC;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAA;IACrC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,iBAAiB,GACzB,MAAM,
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAO,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACxD,OAAO,KAAK,EAAE,gBAAgB,EAAsB,eAAe,EAAE,MAAM,YAAY,CAAA;AAmBvF;;;;GAIG;AACH,UAAU,KAAK;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAcD,MAAM,WAAW,UAAU;IACzB,+EAA+E;IAC/E,MAAM,EAAE,SAAS,eAAe,EAAE,CAAA;IAClC,6EAA6E;IAC7E,OAAO,EAAE,WAAW,CAAC,eAAe,GAAG,SAAS,CAAC,CAAA;IACjD;;;;;OAKG;IACH,QAAQ,EAAE,WAAW,CAAC,SAAS,eAAe,EAAE,CAAC,CAAA;IACjD;;;;;;;;OAQG;IACH,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;IAC5D,8DAA8D;IAC9D,OAAO,EAAE,WAAW,CAAC,SAAS,gBAAgB,EAAE,CAAC,CAAA;IACjD,iEAAiE;IACjE,MAAM,EAAE,QAAQ,CAAC,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAA;IACzC;;;;;;;OAOG;IACH,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;CAChC;AAID;;;;;;GAMG;AACH,wBAAgB,aAAa,IAAK,UAAU,CAW3C;AAMD,MAAM,WAAW,iBAAiB;IAChC;;;;;;;OAOG;IACH,MAAM,EAAE,SAAS,eAAe,EAAE,CAAA;IAClC;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAA;IACrC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,iBAAiB,GACzB,MAAM,CAkKR"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { computed, inject, ref, watch } from 'vue';
|
|
1
|
+
import { computed, inject, ref, toRaw, watch } from 'vue';
|
|
2
2
|
import { combine } from './util/defaults.js';
|
|
3
3
|
const injectionKey = Symbol.for('vuetiwatch');
|
|
4
4
|
/**
|
|
@@ -58,8 +58,24 @@ export function createVuetiwatch(vuetify, options) {
|
|
|
58
58
|
let userDefaults = instance.defaults.value ?? {};
|
|
59
59
|
let applied;
|
|
60
60
|
const defaultsFor = (name) => {
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
/**
|
|
62
|
+
* The comparison goes through `toRaw`, because Vuetify holds
|
|
63
|
+
* `defaults` in a deep `ref` — "if an object is assigned as a ref's
|
|
64
|
+
* value, the object is made deeply reactive" — so reading it back
|
|
65
|
+
* hands out a proxy of what was written, never the object itself.
|
|
66
|
+
* Comparing the two directly can only ever say "not ours", which is
|
|
67
|
+
* the opposite of what the check asks: every theme change would fold
|
|
68
|
+
* the outgoing theme's defaults into the app's own, and they would
|
|
69
|
+
* never come back off. A theme with none of its own, `classic` above
|
|
70
|
+
* all, then keeps whatever was on screen before it.
|
|
71
|
+
*
|
|
72
|
+
* Only the comparison is unwrapped. Vue asks callers not to hold a
|
|
73
|
+
* persistent reference to a raw object, so what is kept is the proxy
|
|
74
|
+
* Vuetify handed out — `mergeDeep` only ever reads it.
|
|
75
|
+
*/
|
|
76
|
+
const live = instance.defaults.value;
|
|
77
|
+
if (applied && toRaw(live) !== applied) {
|
|
78
|
+
userDefaults = live ?? {};
|
|
63
79
|
}
|
|
64
80
|
const themeDefaults = defaultsByName.get(name);
|
|
65
81
|
if (!themeDefaults)
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,KAAK,CAAA;AAGzD,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AA6E5C,MAAM,YAAY,GAAG,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;AAE7C;;;;;;GAMG;AACH,MAAM,UAAU,aAAa;IAC3B,MAAM,GAAG,GAAG,MAAM,CAAa,YAAY,CAAC,CAAA;IAE5C,IAAI,CAAC,GAAG,EAAE,CAAC;QACT,MAAM,IAAI,KAAK,CACb,2EAA2E;YAC3E,2DAA2D,CAC5D,CAAA;IACH,CAAC;IAED,OAAO,GAAG,CAAA;AACZ,CAAC;AAED,MAAM,oBAAoB,GAAG,GAAG,EAAE,CAChC,OAAO,MAAM,KAAK,WAAW;IAC7B,MAAM,CAAC,UAAU,EAAE,CAAC,kCAAkC,CAAC,CAAC,OAAO,KAAK,IAAI,CAAA;AAyC1E;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,gBAAgB,CAC9B,OAAgB,EAChB,OAA0B;IAE1B,MAAM,EACJ,MAAM,EACN,QAAQ,EAAE,aAAa,GAAG,IAAI,EAC9B,SAAS,GAAG,IAAI,EAChB,WAAW,GAAG,IAAI,GACnB,GAAG,OAAO,CAAA;IAEX,0EAA0E;IAC1E,uEAAuE;IACvE,uDAAuD;IACvD,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAA;IAEjF,OAAO;QACL,OAAO,CAAE,GAAQ;YACf,MAAM,QAAQ,GAAG,OAAsB,CAAA;YAEvC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;gBACnC,MAAM,IAAI,KAAK,CACb,kFAAkF;oBAClF,2EAA2E,CAC5E,CAAA;YACH,CAAC;YAED;;;;;;;;eAQG;YACH,IAAI,YAAY,GAAG,QAAQ,CAAC,QAAQ,CAAC,KAAK,IAAI,EAAE,CAAA;YAChD,IAAI,OAAuC,CAAA;YAE3C,MAAM,WAAW,GAAG,CAAC,IAAY,EAAE,EAAE;gBACnC;;;;;;;;;;;;;;mBAcG;gBACH,MAAM,IAAI,GAAG,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAA;gBAEpC,IAAI,OAAO,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,OAAO,EAAE,CAAC;oBACvC,YAAY,GAAG,IAAI,IAAI,EAAE,CAAA;gBAC3B,CAAC;gBAED,MAAM,aAAa,GAAG,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;gBAE9C,IAAI,CAAC,aAAa;oBAAE,OAAO,YAAY,CAAA;gBAEvC,OAAO,aAAa,KAAK,OAAO;oBAC9B,CAAC,CAAC,OAAO,CAAC,aAAa,EAAE,YAAY,CAAC;oBACtC,CAAC,CAAC,OAAO,CAAC,YAAY,EAAE,aAAa,CAAC,CAAA;YAC1C,CAAC,CAAA;YAED,MAAM,KAAK,GAAG,CAAC,IAAY,EAAE,EAAE;gBAC7B,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM;oBAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;;oBACjD,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YAC9C,CAAC,CAAA;YAED,MAAM,MAAM,GAAyB,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;gBACnD,MAAM,GAAG,GAAG,OAAO,QAAQ,KAAK,WAAW;oBACzC,CAAC,CAAC,QAAkC;oBACpC,CAAC,CAAC,SAAS,CAAA;gBAEb,IAAI,CAAC,WAAW,IAAI,CAAC,GAAG,EAAE,mBAAmB,IAAI,oBAAoB,EAAE,EAAE,CAAC;oBACxE,KAAK,CAAC,IAAI,CAAC,CAAA;oBAEX,OAAM;gBACR,CAAC;gBAED;;;;;;;oBAOI;gBACJ,MAAM,IAAI,GAAG,GAAG,CAAC,eAAe,CAAA;gBAChC,MAAM,KAAK,GAAG,KAAK,IAAI,SAAS,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAA;gBAC7D,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,EAAE,OAAO,IAAI,CAAC,CAAC,KAAK,EAAE,OAAO,CAAA;gBAExD,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,KAAK,EAAE,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;gBACzF,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,KAAK,EAAE,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;gBAEzF;;;;;;oBAMI;gBACJ,MAAM,UAAU,GAAG,GAAG,CAAC,mBAAmB,CAAC,GAAG,EAAE,GAAG,KAAK,CAAC,IAAI,CAAC,CAAA,CAAC,CAAC,CAAC,CAAA;gBAEjE,UAAU,EAAE,KAAK,EAAE,KAAK,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,CAAA;gBAClC,UAAU,EAAE,QAAQ,EAAE,KAAK,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,CAAA;YACvC,CAAC,CAAA;YAED,MAAM,OAAO,GAAG,QAAQ,CAAC,GAAG,EAAE,CAC5B,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,KAAK,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CACtE,CAAA;YAED,MAAM,MAAM,GAAG,GAAG,EAAU,CAAA;YAE5B,MAAM,SAAS,GAAG,CAAC,EAAU,EAAE,EAAE;gBAC/B,MAAM,WAAW,GAAG,QAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,CAAA;gBAEhD,IAAI,CAAC,WAAW;oBAAE,OAAM;gBAExB,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE,CAAC;oBAC3B,MAAM,MAAM,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,CAAC,CAAA;oBAC/D,MAAM,MAAM,GAAG,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;oBAE9C,IAAI,MAAM,IAAI,MAAM;wBAAE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAA;gBAC5D,CAAC;gBAED,MAAM,CAAC,KAAK,GAAG,EAAE,CAAA;YACnB,CAAC,CAAA;YAED,GAAG,CAAC,OAAO,CAAa,YAAY,EAAE;gBACpC,MAAM;gBACN,OAAO;gBACP,OAAO,EAAE,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,IAAI,EAAE,CAAC;gBAC1D,MAAM;gBACN,SAAS;gBACT,QAAQ,EAAE,QAAQ,CAAC,GAAG,EAAE;oBACtB,MAAM,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAA;oBAEzC,OAAO,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAA;gBAC3E,CAAC,CAAC;gBACF,MAAM;aACP,CAAC,CAAA;YAEF,KAAK,CACH,GAAG,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,EACtC,IAAI,CAAC,EAAE;gBACL,IAAI,aAAa,EAAE,CAAC;oBAClB,OAAO,GAAG,WAAW,CAAC,IAAI,CAAC,CAAA;oBAC3B,QAAQ,CAAC,QAAQ,CAAC,KAAK,GAAG,OAAO,CAAA;gBACnC,CAAC;gBAED,IAAI,SAAS,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,CAAC;oBACjD,QAAQ,CAAC,eAAe,CAAC,YAAY,CAAC,iBAAiB,EAAE,IAAI,CAAC,CAAA;gBAChE,CAAC;YACH,CAAC,EACD,EAAE,SAAS,EAAE,IAAI,EAAE,CACpB,CAAA;QACH,CAAC;KACF,CAAA;AACH,CAAC"}
|
package/dist/styles/aurora.css
CHANGED
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
box-shadow: 0 0 14px #7c5cff80;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.v-theme--aurora :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
75
|
+
.v-theme--aurora:is(.v-menu, .v-dialog) > .v-overlay__content, .v-theme--aurora :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
76
76
|
box-shadow: 0 0 0 1px #9b8cff29, 0 24px 64px #000000b3;
|
|
77
77
|
}
|
|
78
78
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--aurora.v-application{background-image:radial-gradient(60rem 40rem at 15% -10%,#7c5cff29,#0000 60%),radial-gradient(50rem 35rem at 95% 5%,#00d4ff1f,#0000 60%),radial-gradient(45rem 30rem at 50% 105%,#ff5caa1a,#0000 60%);background-attachment:fixed}.v-theme--aurora.v-application:before{content:"";z-index:0;pointer-events:none;background-image:radial-gradient(35rem 28rem at 25% 25%,#7c5cff24,#0000 60%),radial-gradient(30rem 24rem at 75% 40%,#00d4ff1a,#0000 60%),radial-gradient(28rem 22rem at 55% 85%,#ff5caa17,#0000 60%);animation:34s ease-in-out infinite alternate vw-aurora-drift;position:fixed;inset:-20%}.v-theme--aurora .v-card.v-card--variant-elevated{background-image:radial-gradient(36rem 18rem at 0 0,#7c5cff24,#0000 70%);box-shadow:0 12px 40px #0000008c}.v-theme--aurora :is(.v-card,.v-alert,:is(.v-list,.v-sheet,.v-banner):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *)):after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.45;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient));box-shadow:0 6px 24px #7c5cff73}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary .v-btn__overlay{opacity:0}.v-theme--aurora .v-tab__slider{background:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cffcc}.v-theme--aurora .v-slider-track__fill{background:var(--v-vw-gradient)}.v-theme--aurora .v-slider-thumb__surface{box-shadow:0 0 0 6px #7c5cff2e,0 0 16px #7c5cff99}.v-theme--aurora .v-selection-control--dirty .v-switch__track{background-image:var(--v-vw-gradient);box-shadow:0 0 14px #7c5cff80}.v-theme--aurora :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px #9b8cff29,0 24px 64px #000000b3}.v-theme--aurora :is(.v-progress-linear__determinate,.v-progress-linear__indeterminate){background-image:var(--v-vw-gradient)}.v-theme--aurora :is(.v-alert__underlay,.v-chip__underlay){background-image:var(--v-vw-gradient);opacity:.2}.v-theme--aurora :is(.v-app-bar,.v-toolbar,.v-navigation-drawer){background-image:linear-gradient(100deg,#7c5cff29,#00d4ff0f 55%,#0000)}.v-theme--aurora .v-divider:not(.v-divider--vertical){opacity:1;border-image:linear-gradient(90deg,#0000,#9b8cff73 25%,#00d4ff59 75%,#0000) 1}.v-theme--aurora :is(.v-table thead th,.v-data-table__th){border-bottom:1px solid #0000;border-image:var(--v-vw-gradient) 1}.v-theme--aurora .v-list-item.v-list-item--active{background-image:linear-gradient(90deg,#7c5cff38,#0000 45%)}.v-theme--aurora .v-badge__badge{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient))}.v-theme--aurora .v-field.v-field--variant-solo-filled.v-field--focused:after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.7;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora :is([class*=-display-],[class*=-headline-large]){background:var(--v-vw-gradient);color:#0000;-webkit-background-clip:text;background-clip:text}.v-theme--aurora .v-timeline-divider__dot{background-image:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cff8c}.v-theme--aurora .v-timeline-divider__inner-dot:not([class*=bg-]){background-color:#0000!important}@keyframes vw-aurora-drift{0%{transform:translate(-3%,-2%)scale(1.06)}to{transform:translate(3%,2%)scale(1.14)}}@media (prefers-reduced-motion:reduce){.v-theme--aurora.v-application:before{animation:none}}
|
|
1
|
+
.v-theme--aurora.v-application{background-image:radial-gradient(60rem 40rem at 15% -10%,#7c5cff29,#0000 60%),radial-gradient(50rem 35rem at 95% 5%,#00d4ff1f,#0000 60%),radial-gradient(45rem 30rem at 50% 105%,#ff5caa1a,#0000 60%);background-attachment:fixed}.v-theme--aurora.v-application:before{content:"";z-index:0;pointer-events:none;background-image:radial-gradient(35rem 28rem at 25% 25%,#7c5cff24,#0000 60%),radial-gradient(30rem 24rem at 75% 40%,#00d4ff1a,#0000 60%),radial-gradient(28rem 22rem at 55% 85%,#ff5caa17,#0000 60%);animation:34s ease-in-out infinite alternate vw-aurora-drift;position:fixed;inset:-20%}.v-theme--aurora .v-card.v-card--variant-elevated{background-image:radial-gradient(36rem 18rem at 0 0,#7c5cff24,#0000 70%);box-shadow:0 12px 40px #0000008c}.v-theme--aurora :is(.v-card,.v-alert,:is(.v-list,.v-sheet,.v-banner):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *)):after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.45;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient));box-shadow:0 6px 24px #7c5cff73}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary .v-btn__overlay{opacity:0}.v-theme--aurora .v-tab__slider{background:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cffcc}.v-theme--aurora .v-slider-track__fill{background:var(--v-vw-gradient)}.v-theme--aurora .v-slider-thumb__surface{box-shadow:0 0 0 6px #7c5cff2e,0 0 16px #7c5cff99}.v-theme--aurora .v-selection-control--dirty .v-switch__track{background-image:var(--v-vw-gradient);box-shadow:0 0 14px #7c5cff80}.v-theme--aurora:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--aurora :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px #9b8cff29,0 24px 64px #000000b3}.v-theme--aurora :is(.v-progress-linear__determinate,.v-progress-linear__indeterminate){background-image:var(--v-vw-gradient)}.v-theme--aurora :is(.v-alert__underlay,.v-chip__underlay){background-image:var(--v-vw-gradient);opacity:.2}.v-theme--aurora :is(.v-app-bar,.v-toolbar,.v-navigation-drawer){background-image:linear-gradient(100deg,#7c5cff29,#00d4ff0f 55%,#0000)}.v-theme--aurora .v-divider:not(.v-divider--vertical){opacity:1;border-image:linear-gradient(90deg,#0000,#9b8cff73 25%,#00d4ff59 75%,#0000) 1}.v-theme--aurora :is(.v-table thead th,.v-data-table__th){border-bottom:1px solid #0000;border-image:var(--v-vw-gradient) 1}.v-theme--aurora .v-list-item.v-list-item--active{background-image:linear-gradient(90deg,#7c5cff38,#0000 45%)}.v-theme--aurora .v-badge__badge{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient))}.v-theme--aurora .v-field.v-field--variant-solo-filled.v-field--focused:after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.7;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora :is([class*=-display-],[class*=-headline-large]){background:var(--v-vw-gradient);color:#0000;-webkit-background-clip:text;background-clip:text}.v-theme--aurora .v-timeline-divider__dot{background-image:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cff8c}.v-theme--aurora .v-timeline-divider__inner-dot:not([class*=bg-]){background-color:#0000!important}@keyframes vw-aurora-drift{0%{transform:translate(-3%,-2%)scale(1.06)}to{transform:translate(3%,2%)scale(1.14)}}@media (prefers-reduced-motion:reduce){.v-theme--aurora.v-application:before{animation:none}}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
transform: translate(-1px, -1px);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
.v-theme--brutalist :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
24
|
+
.v-theme--brutalist:is(.v-menu, .v-dialog) > .v-overlay__content, .v-theme--brutalist :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
25
25
|
border: var(--v-vw-border-width) solid rgb(var(--v-shadow-color));
|
|
26
26
|
box-shadow: 8px 8px 0 rgb(var(--v-shadow-color));
|
|
27
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--brutalist{--vw-brut-offset:4px}.v-theme--brutalist :is(.v-card,.v-btn,.v-alert,.v-chip,.v-table,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain){box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-btn,.v-chip,.v-btn-group):not(.v-btn--variant-text,.v-btn--variant-plain):not(.v-btn--disabled,.v-btn-group *){border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));transition:transform 80ms steps(2,end),box-shadow 80ms steps(2,end)}.v-theme--brutalist .v-btn:active:not(.v-btn--disabled){transform:translate(var(--vw-brut-offset), var(--vw-brut-offset));box-shadow:0 0 0 rgb(var(--v-shadow-color))}.v-theme--brutalist .v-btn:not(.v-btn--variant-text,.v-btn--variant-plain):hover:not(.v-btn--disabled,.v-btn-group *){box-shadow:5px 5px 0 rgb(var(--v-shadow-color));transform:translate(-1px,-1px)}.v-theme--brutalist :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:8px 8px 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-secondary));border-bottom:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));text-transform:uppercase;font-weight:700}.v-theme--brutalist .v-expansion-panels{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color))}.v-theme--brutalist .v-timeline-divider__dot{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}@media (prefers-reduced-motion:reduce){.v-theme--brutalist .v-btn{transition:none}.v-theme--brutalist .v-btn:hover:not(.v-btn--disabled){transform:none}}
|
|
1
|
+
.v-theme--brutalist{--vw-brut-offset:4px}.v-theme--brutalist :is(.v-card,.v-btn,.v-alert,.v-chip,.v-table,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain){box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-btn,.v-chip,.v-btn-group):not(.v-btn--variant-text,.v-btn--variant-plain):not(.v-btn--disabled,.v-btn-group *){border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));transition:transform 80ms steps(2,end),box-shadow 80ms steps(2,end)}.v-theme--brutalist .v-btn:active:not(.v-btn--disabled){transform:translate(var(--vw-brut-offset), var(--vw-brut-offset));box-shadow:0 0 0 rgb(var(--v-shadow-color))}.v-theme--brutalist .v-btn:not(.v-btn--variant-text,.v-btn--variant-plain):hover:not(.v-btn--disabled,.v-btn-group *){box-shadow:5px 5px 0 rgb(var(--v-shadow-color));transform:translate(-1px,-1px)}.v-theme--brutalist:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--brutalist :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:8px 8px 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-secondary));border-bottom:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));text-transform:uppercase;font-weight:700}.v-theme--brutalist .v-expansion-panels{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color))}.v-theme--brutalist .v-timeline-divider__dot{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}@media (prefers-reduced-motion:reduce){.v-theme--brutalist .v-btn{transition:none}.v-theme--brutalist .v-btn:hover:not(.v-btn--disabled){transform:none}}
|
package/dist/styles/calm.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
box-shadow: none;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
.v-theme--calm :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
5
|
+
.v-theme--calm:is(.v-menu, .v-dialog) > .v-overlay__content, .v-theme--calm :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
6
6
|
border: var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);
|
|
7
7
|
box-shadow: 0 16px 48px #3a3a360f;
|
|
8
8
|
}
|
package/dist/styles/calm.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--calm :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--calm :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);box-shadow:0 16px 48px #3a3a360f}.v-theme--calm :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);font-weight:500}.v-theme--calm .v-card-text{line-height:1.7}
|
|
1
|
+
.v-theme--calm :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--calm:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--calm :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);box-shadow:0 16px 48px #3a3a360f}.v-theme--calm :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);font-weight:500}.v-theme--calm .v-card-text{line-height:1.7}
|
package/dist/styles/candy.css
CHANGED
|
@@ -39,11 +39,8 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.v-theme--candy .v-field.v-field--variant-solo-filled {
|
|
42
|
-
box-shadow: inset 0 2px 5px rgba(var(--v-shadow-color), .16);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.v-theme--candy .v-field.v-field--variant-solo-filled .v-field__overlay {
|
|
46
42
|
background-color: rgb(var(--v-theme-surface-light));
|
|
43
|
+
box-shadow: inset 0 2px 5px rgba(var(--v-shadow-color), .16);
|
|
47
44
|
}
|
|
48
45
|
|
|
49
46
|
.v-theme--candy :is(.v-switch__track, .v-slider-track__background) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--candy{--vw-candy-pad:inset 0 2px 0 #ffffff8c, inset 0 -3px 0 rgba(var(--v-theme-on-surface), .08);--vw-candy-rest:0 3px 6px rgba(var(--v-shadow-color), .16), 0 10px 22px rgba(var(--v-shadow-color), .13);--vw-candy-squash:0 1px 3px rgba(var(--v-shadow-color), .2), 0 3px 9px rgba(var(--v-shadow-color), .12);--v-vw-relief-inset:4px}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled){box-shadow:var(--vw-candy-pad), var(--vw-candy-rest);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled):active{box-shadow:var(--vw-candy-pad), var(--vw-candy-squash)}.v-theme--candy .v-chip.v-chip:not(.v-chip--variant-text,.v-chip--variant-plain){box-shadow:inset 0 1px 0 #ffffff80, 0 2px 5px rgba(var(--v-shadow-color), .14)}.v-theme--candy :is(.v-card.v-card--variant-elevated,.v-alert.v-alert--variant-tonal){box-shadow:inset 0 2px 0 #fff9, 0 6px 16px rgba(var(--v-shadow-color), .12), 0 20px 44px rgba(var(--v-shadow-color), .1)}.v-theme--candy .v-card.v-card--variant-elevated{transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:inset 0 2px 0 #fff9, 0 10px 22px rgba(var(--v-shadow-color), .14), 0 28px 60px rgba(var(--v-shadow-color), .12)}.v-theme--candy .v-field.v-field--variant-solo-filled{box-shadow:inset 0 2px 5px rgba(var(--v-shadow-color), .16)}.v-theme--candy
|
|
1
|
+
.v-theme--candy{--vw-candy-pad:inset 0 2px 0 #ffffff8c, inset 0 -3px 0 rgba(var(--v-theme-on-surface), .08);--vw-candy-rest:0 3px 6px rgba(var(--v-shadow-color), .16), 0 10px 22px rgba(var(--v-shadow-color), .13);--vw-candy-squash:0 1px 3px rgba(var(--v-shadow-color), .2), 0 3px 9px rgba(var(--v-shadow-color), .12);--v-vw-relief-inset:4px}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled){box-shadow:var(--vw-candy-pad), var(--vw-candy-rest);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled):active{box-shadow:var(--vw-candy-pad), var(--vw-candy-squash)}.v-theme--candy .v-chip.v-chip:not(.v-chip--variant-text,.v-chip--variant-plain){box-shadow:inset 0 1px 0 #ffffff80, 0 2px 5px rgba(var(--v-shadow-color), .14)}.v-theme--candy :is(.v-card.v-card--variant-elevated,.v-alert.v-alert--variant-tonal){box-shadow:inset 0 2px 0 #fff9, 0 6px 16px rgba(var(--v-shadow-color), .12), 0 20px 44px rgba(var(--v-shadow-color), .1)}.v-theme--candy .v-card.v-card--variant-elevated{transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:inset 0 2px 0 #fff9, 0 10px 22px rgba(var(--v-shadow-color), .14), 0 28px 60px rgba(var(--v-shadow-color), .12)}.v-theme--candy .v-field.v-field--variant-solo-filled{background-color:rgb(var(--v-theme-surface-light));box-shadow:inset 0 2px 5px rgba(var(--v-shadow-color), .16)}.v-theme--candy :is(.v-switch__track,.v-slider-track__background){box-shadow:inset 0 2px 4px rgba(var(--v-shadow-color), .22)}.v-theme--candy :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:inset 0 2px 0 #ffffffa6, 0 2px 5px rgba(var(--v-shadow-color), .32), 0 0 0 5px rgba(var(--v-theme-primary), .14)}.v-theme--candy .v-tabs--inset .v-tab__slider{box-shadow:inset 0 1px 0 #ffffff80, 0 4px 12px rgba(var(--v-theme-primary), .24)}.v-theme--candy :is(.v-timeline-divider__before,.v-timeline-divider__after){border-radius:999px}.v-theme--candy .v-timeline-divider__dot{box-shadow:inset 0 2px 0 #fff9, 0 3px 8px rgba(var(--v-shadow-color), .22)}
|
package/dist/styles/clay.css
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
-2px -2px 6px #ffffffe6;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
.v-theme--clay :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
42
|
+
.v-theme--clay:is(.v-menu, .v-dialog) > .v-overlay__content, .v-theme--clay :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
43
43
|
box-shadow: 12px 12px 40px rgba(var(--v-shadow-color), .24);
|
|
44
44
|
}
|
|
45
45
|
|
package/dist/styles/clay.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--clay{--vw-clay-lift:8px 8px 20px rgba(var(--v-shadow-color), .18), -6px -6px 16px #ffffffe6, inset -4px -4px 12px rgba(var(--v-shadow-color), .06), inset 4px 4px 10px #ffffffb3}.v-theme--clay :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-clay-lift)}.v-theme--clay :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .13), -2px -2px 5px #fff9}.v-theme--clay [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--clay .v-btn:active:not(.v-btn--disabled){box-shadow:4px 4px 10px rgba(var(--v-shadow-color), .16), inset -3px -3px 10px rgba(var(--v-shadow-color), .1), inset 3px 3px 8px #fff9}.v-theme--clay .v-field.v-field--variant-solo{background:rgb(var(--v-theme-surface));box-shadow:inset 4px 4px 10px rgba(var(--v-shadow-color), .12), inset -4px -4px 10px #ffffffe6}.v-theme--clay :is(.v-switch__track,.v-slider-track){box-shadow:inset 2px 2px 6px rgba(var(--v-shadow-color), .18)}.v-theme--clay :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:3px 3px 8px rgba(var(--v-shadow-color), .24), -2px -2px 6px #ffffffe6}.v-theme--clay :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:12px 12px 40px rgba(var(--v-shadow-color), .24)}.v-theme--clay .v-tab__slider{border-radius:5px}.v-theme--clay :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:inset 2px 2px 5px rgba(var(--v-shadow-color), .18), inset -2px -2px 5px #fffc}.v-theme--clay .v-timeline-divider__dot{box-shadow:var(--vw-clay-lift)}
|
|
1
|
+
.v-theme--clay{--vw-clay-lift:8px 8px 20px rgba(var(--v-shadow-color), .18), -6px -6px 16px #ffffffe6, inset -4px -4px 12px rgba(var(--v-shadow-color), .06), inset 4px 4px 10px #ffffffb3}.v-theme--clay :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-clay-lift)}.v-theme--clay :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .13), -2px -2px 5px #fff9}.v-theme--clay [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--clay .v-btn:active:not(.v-btn--disabled){box-shadow:4px 4px 10px rgba(var(--v-shadow-color), .16), inset -3px -3px 10px rgba(var(--v-shadow-color), .1), inset 3px 3px 8px #fff9}.v-theme--clay .v-field.v-field--variant-solo{background:rgb(var(--v-theme-surface));box-shadow:inset 4px 4px 10px rgba(var(--v-shadow-color), .12), inset -4px -4px 10px #ffffffe6}.v-theme--clay :is(.v-switch__track,.v-slider-track){box-shadow:inset 2px 2px 6px rgba(var(--v-shadow-color), .18)}.v-theme--clay :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:3px 3px 8px rgba(var(--v-shadow-color), .24), -2px -2px 6px #ffffffe6}.v-theme--clay:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--clay :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:12px 12px 40px rgba(var(--v-shadow-color), .24)}.v-theme--clay .v-tab__slider{border-radius:5px}.v-theme--clay :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:inset 2px 2px 5px rgba(var(--v-shadow-color), .18), inset -2px -2px 5px #fffc}.v-theme--clay .v-timeline-divider__dot{box-shadow:var(--vw-clay-lift)}
|
package/dist/styles/core.css
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
border-radius: var(--v-vw-radius-lg, var(--v-vw-radius, 4px));
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*="rounded-"]), .v-field:not([class*="rounded-"]), .v-list-item:not([class*="rounded-"]), .v-snackbar__wrapper, .v-
|
|
97
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*="rounded-"]), .v-field:not([class*="rounded-"]), .v-list-item:not([class*="rounded-"]), .v-snackbar__wrapper, .v-overlay__content > :is(.v-list, .v-sheet)) {
|
|
98
98
|
border-radius: var(--v-vw-radius, 4px);
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -127,6 +127,10 @@
|
|
|
127
127
|
background-color: rgb(var(--v-theme-surface));
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-tonal > .v-card__underlay {
|
|
131
|
+
z-index: -1;
|
|
132
|
+
}
|
|
133
|
+
|
|
130
134
|
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card > :is(.v-list, .v-table):not([class*="bg-"]) {
|
|
131
135
|
background: none;
|
|
132
136
|
}
|
|
@@ -151,11 +155,39 @@
|
|
|
151
155
|
text-transform: var(--v-vw-btn-transform, none);
|
|
152
156
|
}
|
|
153
157
|
|
|
154
|
-
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu, .v-dialog, .v-tooltip) > .v-overlay__content {
|
|
158
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu, .v-dialog, .v-tooltip) > .v-overlay__content, :where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu, .v-dialog, .v-tooltip) > .v-overlay__content {
|
|
155
159
|
border: var(--v-vw-overlay-border, none);
|
|
156
160
|
box-shadow: var(--v-vw-overlay-shadow, revert-layer);
|
|
157
161
|
}
|
|
158
162
|
|
|
163
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu, .v-tooltip) > .v-overlay__content, :where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu, .v-tooltip) > .v-overlay__content {
|
|
164
|
+
border-radius: var(--v-vw-radius, 4px);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-dialog:not(.v-dialog--fullscreen) > .v-overlay__content, :where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-dialog:not(.v-dialog--fullscreen) > .v-overlay__content {
|
|
168
|
+
border-radius: var(--v-vw-radius-lg, var(--v-vw-radius, 4px));
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-overlay__content, .v-overlay__scrim):is([class*="-transition-enter-active"], [class*="-transition-leave-active"]) {
|
|
172
|
+
transition-timing-function: var(--v-vw-overlay-ease, var(--v-vw-motion-ease, revert-layer));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*="-transition-enter-active"] {
|
|
176
|
+
transition-duration: var(--v-vw-overlay-duration, revert-layer);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*="-transition-leave-active"] {
|
|
180
|
+
transition-duration: var(--v-vw-overlay-exit, var(--v-vw-overlay-duration, revert-layer));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*="-transition-enter-active"] {
|
|
184
|
+
transition-duration: var(--v-vw-scrim-duration, var(--v-vw-overlay-duration, revert-layer));
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*="-transition-leave-active"] {
|
|
188
|
+
transition-duration: var(--v-vw-scrim-duration, var(--v-vw-overlay-exit, var(--v-vw-overlay-duration, revert-layer)));
|
|
189
|
+
}
|
|
190
|
+
|
|
159
191
|
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip-group .v-slide-group__content {
|
|
160
192
|
padding: var(--v-vw-relief-inset, 0);
|
|
161
193
|
}
|
|
@@ -293,6 +325,16 @@
|
|
|
293
325
|
text-underline-offset: .15em;
|
|
294
326
|
}
|
|
295
327
|
|
|
328
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon)::selection {
|
|
329
|
+
background-color: var(--v-vw-selection-fill, rgba(var(--v-theme-primary), .24));
|
|
330
|
+
color: var(--v-vw-selection-color, inherit);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]), .v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) ::selection {
|
|
334
|
+
background-color: var(--v-vw-selection-fill, rgba(var(--v-theme-primary), .24));
|
|
335
|
+
color: var(--v-vw-selection-color, inherit);
|
|
336
|
+
}
|
|
337
|
+
|
|
296
338
|
@keyframes vw-pop {
|
|
297
339
|
0% {
|
|
298
340
|
transform: scale(1);
|
package/dist/styles/core.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn--icon:not([class*=rounded-],.v-btn-group *,.v-pagination *){border-radius:var(--v-vw-radius-icon-btn,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:not(.v-btn--icon,.v-btn--rounded,[class*=rounded-],.v-btn-group *,.v-toolbar-items *,.v-tabs *){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table,.v-skeleton-loader):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border:var(--v-vw-panel-border,revert-layer);box-shadow:var(--v-vw-panel-shadow,revert-layer);background-color:var(--v-vw-panel-fill,revert-layer);background-image:var(--v-vw-panel-image,revert-layer);backdrop-filter:var(--v-vw-panel-filter,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list--border,.v-sheet--border):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-btn-toggle):not([class*=rounded-]){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=bg-]){background-color:var(--v-vw-outlined-fill,rgb(var(--v-theme-surface)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-badge__badge{border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar:not([class*=rounded-]){border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__dot,.v-timeline-divider__inner-dot){border-radius:var(--v-vw-radius-dot,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-progress-linear:not(.v-progress-linear--rounded,[class*=rounded-]){border-radius:var(--v-vw-radius,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__track{border-radius:var(--v-vw-radius,6px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__thumb{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-s-0{border-start-end-radius:var(--vw-attached);border-end-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-e-0{border-start-start-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-t-0{border-end-end-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-b-0{border-start-start-radius:var(--vw-attached);border-start-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn-group:not([class*=rounded-]){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-btn{border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-card:not([class*=rounded-]),.v-table),:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-expansion-panels{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*=rounded-]),.v-field:not([class*=rounded-]),.v-list-item:not([class*=rounded-]),.v-snackbar__wrapper,.v-menu>.v-overlay__content,.v-tooltip>.v-overlay__content,.v-overlay__content>:is(.v-list,.v-sheet)){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field:is(.v-field--variant-filled,.v-field--variant-underlined):not([class*=rounded-]){border-radius:var(--v-vw-radius,4px) var(--v-vw-radius,4px) 0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip:not([class*=rounded-]){border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-track{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__surface{border-radius:var(--v-vw-radius-thumb,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__label{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-pagination__item--is-active .v-btn__overlay{background:var(--v-vw-pagination-active-color,currentColor);opacity:var(--v-vw-pagination-active-opacity,var(--v-activated-opacity))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content>.v-card:is(.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-plain,.v-card--variant-tonal):not([class*=bg-]){background-color:rgb(var(--v-theme-surface))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card>:is(.v-list,.v-table):not([class*=bg-]){background:0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined,.v-chip--variant-outlined,.v-list--border,.v-sheet--border){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=border-]){border-color:rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field__outline{--v-field-border-width:var(--v-vw-border-width,1px);--v-field-border-opacity:var(--v-vw-field-border-opacity,.38)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn{font-weight:var(--v-vw-btn-weight,500);letter-spacing:var(--v-vw-btn-tracking,.00714286em);text-transform:var(--v-vw-btn-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content{border:var(--v-vw-overlay-border,none);box-shadow:var(--v-vw-overlay-shadow,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip-group .v-slide-group__content{padding:var(--v-vw-relief-inset,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__avatar,.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__divider,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){background:rgba(var(--v-theme-on-surface), var(--v-vw-skeleton-opacity,clamp(.08, var(--v-border-opacity), .2)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-skeleton-loader__avatar{border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls .v-btn{letter-spacing:normal;text-transform:none;--v-btn-height:32px;min-width:0;padding-inline:8px;font-size:.875rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls{height:auto;min-height:var(--v-date-picker-controls-height,56px);flex-wrap:wrap;row-gap:4px;padding-inline:8px}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__before,.v-timeline-divider__after){background:var(--v-vw-timeline-line,rgba(var(--v-border-color), var(--v-vw-timeline-line-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--vertical :is(.v-timeline-divider__before,.v-timeline-divider__after){width:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--horizontal :is(.v-timeline-divider__before,.v-timeline-divider__after){height:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab__slider{height:var(--v-vw-tab-slider-height,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab{font-size:var(--v-vw-tab-size,.875rem)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar[class*=--size-]:not(:has(img,.v-img,.v-icon)){font-size:calc(var(--v-avatar-height) * var(--v-vw-avatar-ratio,.4))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper.v-sheet:not(.v-stepper--flat,[class*=elevation-]){box-shadow:var(--v-vw-panel-shadow,none);border:var(--v-vw-panel-border,var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper .v-stepper-header{box-shadow:none;border-block-end:var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-item){padding:1rem 1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-window){margin:1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper .v-stepper-actions){padding:0 1.25rem 1rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table,.v-data-table,.v-pagination){font-variant-numeric:var(--v-vw-numeric,normal)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table thead th,.v-data-table__th){font-weight:var(--v-vw-th-weight,revert-layer);letter-spacing:var(--v-vw-th-tracking,revert-layer);text-transform:var(--v-vw-th-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-list-item.v-list-item--active{border-inline-start:var(--v-vw-list-bar,0) solid var(--v-vw-list-bar-color,currentColor)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip,.v-list-item,.v-card,.v-tab){transition:transform var(--v-vw-motion-duration,.16s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip--link,.v-list-item--link):not(.v-btn--disabled):active{transform:translateY(var(--v-vw-press-shift,0px)) scale(var(--v-vw-press-scale,.98))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-card--link):hover{transform:translateY(calc(-1 * var(--v-vw-hover-lift,0px)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-btn--active>.v-btn__content>.v-icon,.v-rating__item--full .v-icon){animation:vw-pop var(--v-vw-pop-duration,.22s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-tab,.v-chip,.v-list-item,.v-selection-control__input):focus-visible{outline:var(--v-vw-focus-ring,2px solid rgb(var(--v-theme-primary)));outline-offset:var(--v-vw-focus-offset,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(h1,h2,h3,h4,h5,h6,[class*=-display-],[class*=-headline-],[class*=-title-large]){font-family:var(--v-font-heading,var(--v-font-body,inherit));font-weight:var(--v-vw-heading-weight,revert-layer);letter-spacing:var(--v-vw-heading-tracking,revert-layer);text-transform:var(--v-vw-heading-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) a:not([class]){color:rgb(var(--v-theme-primary));-webkit-text-decoration:var(--v-vw-link-decoration,underline);-webkit-text-decoration:var(--v-vw-link-decoration,underline);text-decoration:var(--v-vw-link-decoration,underline);text-underline-offset:.15em}@keyframes vw-pop{0%{transform:scale(1)}45%{transform:scale(var(--v-vw-pop-scale,1.18))}to{transform:scale(1)}}:is([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-toolbar-items) .v-btn.v-btn{box-shadow:none}@media (prefers-reduced-motion:reduce){:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon){--v-vw-motion-duration:1ms;--v-vw-pop-duration:1ms;--v-vw-press-scale:1;--v-vw-press-shift:0px;--v-vw-hover-lift:0px;--v-vw-theme-transition:0s}}@keyframes vw-theme-wipe{0%{clip-path:circle(0% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}to{clip-path:circle(150% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}}html[data-vuetiwatch]::view-transition-old(root){animation:none}html[data-vuetiwatch]::view-transition-new(root){animation:vw-theme-wipe var(--v-vw-theme-transition,.42s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}
|
|
1
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn--icon:not([class*=rounded-],.v-btn-group *,.v-pagination *){border-radius:var(--v-vw-radius-icon-btn,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:not(.v-btn--icon,.v-btn--rounded,[class*=rounded-],.v-btn-group *,.v-toolbar-items *,.v-tabs *){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table,.v-skeleton-loader):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border:var(--v-vw-panel-border,revert-layer);box-shadow:var(--v-vw-panel-shadow,revert-layer);background-color:var(--v-vw-panel-fill,revert-layer);background-image:var(--v-vw-panel-image,revert-layer);backdrop-filter:var(--v-vw-panel-filter,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list--border,.v-sheet--border):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-btn-toggle):not([class*=rounded-]){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=bg-]){background-color:var(--v-vw-outlined-fill,rgb(var(--v-theme-surface)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-badge__badge{border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar:not([class*=rounded-]){border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__dot,.v-timeline-divider__inner-dot){border-radius:var(--v-vw-radius-dot,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-progress-linear:not(.v-progress-linear--rounded,[class*=rounded-]){border-radius:var(--v-vw-radius,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__track{border-radius:var(--v-vw-radius,6px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__thumb{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-s-0{border-start-end-radius:var(--vw-attached);border-end-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-e-0{border-start-start-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-t-0{border-end-end-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-b-0{border-start-start-radius:var(--vw-attached);border-start-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn-group:not([class*=rounded-]){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-btn{border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-card:not([class*=rounded-]),.v-table),:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-expansion-panels{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*=rounded-]),.v-field:not([class*=rounded-]),.v-list-item:not([class*=rounded-]),.v-snackbar__wrapper,.v-overlay__content>:is(.v-list,.v-sheet)){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field:is(.v-field--variant-filled,.v-field--variant-underlined):not([class*=rounded-]){border-radius:var(--v-vw-radius,4px) var(--v-vw-radius,4px) 0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip:not([class*=rounded-]){border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-track{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__surface{border-radius:var(--v-vw-radius-thumb,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__label{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-pagination__item--is-active .v-btn__overlay{background:var(--v-vw-pagination-active-color,currentColor);opacity:var(--v-vw-pagination-active-opacity,var(--v-activated-opacity))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content>.v-card:is(.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-plain,.v-card--variant-tonal):not([class*=bg-]){background-color:rgb(var(--v-theme-surface))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-tonal>.v-card__underlay{z-index:-1}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card>:is(.v-list,.v-table):not([class*=bg-]){background:0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined,.v-chip--variant-outlined,.v-list--border,.v-sheet--border){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=border-]){border-color:rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field__outline{--v-field-border-width:var(--v-vw-border-width,1px);--v-field-border-opacity:var(--v-vw-field-border-opacity,.38)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn{font-weight:var(--v-vw-btn-weight,500);letter-spacing:var(--v-vw-btn-tracking,.00714286em);text-transform:var(--v-vw-btn-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content{border:var(--v-vw-overlay-border,none);box-shadow:var(--v-vw-overlay-shadow,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu,.v-tooltip)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-tooltip)>.v-overlay__content{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-dialog:not(.v-dialog--fullscreen)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-dialog:not(.v-dialog--fullscreen)>.v-overlay__content{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-overlay__content,.v-overlay__scrim):is([class*=-transition-enter-active],[class*=-transition-leave-active]){transition-timing-function:var(--v-vw-overlay-ease,var(--v-vw-motion-ease,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*=-transition-enter-active]{transition-duration:var(--v-vw-overlay-duration,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*=-transition-leave-active]{transition-duration:var(--v-vw-overlay-exit,var(--v-vw-overlay-duration,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*=-transition-enter-active]{transition-duration:var(--v-vw-scrim-duration,var(--v-vw-overlay-duration,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*=-transition-leave-active]{transition-duration:var(--v-vw-scrim-duration,var(--v-vw-overlay-exit,var(--v-vw-overlay-duration,revert-layer)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip-group .v-slide-group__content{padding:var(--v-vw-relief-inset,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__avatar,.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__divider,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){background:rgba(var(--v-theme-on-surface), var(--v-vw-skeleton-opacity,clamp(.08, var(--v-border-opacity), .2)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-skeleton-loader__avatar{border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls .v-btn{letter-spacing:normal;text-transform:none;--v-btn-height:32px;min-width:0;padding-inline:8px;font-size:.875rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls{height:auto;min-height:var(--v-date-picker-controls-height,56px);flex-wrap:wrap;row-gap:4px;padding-inline:8px}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__before,.v-timeline-divider__after){background:var(--v-vw-timeline-line,rgba(var(--v-border-color), var(--v-vw-timeline-line-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--vertical :is(.v-timeline-divider__before,.v-timeline-divider__after){width:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--horizontal :is(.v-timeline-divider__before,.v-timeline-divider__after){height:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab__slider{height:var(--v-vw-tab-slider-height,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab{font-size:var(--v-vw-tab-size,.875rem)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar[class*=--size-]:not(:has(img,.v-img,.v-icon)){font-size:calc(var(--v-avatar-height) * var(--v-vw-avatar-ratio,.4))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper.v-sheet:not(.v-stepper--flat,[class*=elevation-]){box-shadow:var(--v-vw-panel-shadow,none);border:var(--v-vw-panel-border,var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper .v-stepper-header{box-shadow:none;border-block-end:var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-item){padding:1rem 1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-window){margin:1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper .v-stepper-actions){padding:0 1.25rem 1rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table,.v-data-table,.v-pagination){font-variant-numeric:var(--v-vw-numeric,normal)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table thead th,.v-data-table__th){font-weight:var(--v-vw-th-weight,revert-layer);letter-spacing:var(--v-vw-th-tracking,revert-layer);text-transform:var(--v-vw-th-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-list-item.v-list-item--active{border-inline-start:var(--v-vw-list-bar,0) solid var(--v-vw-list-bar-color,currentColor)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip,.v-list-item,.v-card,.v-tab){transition:transform var(--v-vw-motion-duration,.16s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip--link,.v-list-item--link):not(.v-btn--disabled):active{transform:translateY(var(--v-vw-press-shift,0px)) scale(var(--v-vw-press-scale,.98))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-card--link):hover{transform:translateY(calc(-1 * var(--v-vw-hover-lift,0px)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-btn--active>.v-btn__content>.v-icon,.v-rating__item--full .v-icon){animation:vw-pop var(--v-vw-pop-duration,.22s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-tab,.v-chip,.v-list-item,.v-selection-control__input):focus-visible{outline:var(--v-vw-focus-ring,2px solid rgb(var(--v-theme-primary)));outline-offset:var(--v-vw-focus-offset,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(h1,h2,h3,h4,h5,h6,[class*=-display-],[class*=-headline-],[class*=-title-large]){font-family:var(--v-font-heading,var(--v-font-body,inherit));font-weight:var(--v-vw-heading-weight,revert-layer);letter-spacing:var(--v-vw-heading-tracking,revert-layer);text-transform:var(--v-vw-heading-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) a:not([class]){color:rgb(var(--v-theme-primary));-webkit-text-decoration:var(--v-vw-link-decoration,underline);-webkit-text-decoration:var(--v-vw-link-decoration,underline);text-decoration:var(--v-vw-link-decoration,underline);text-underline-offset:.15em}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon)::selection{background-color:var(--v-vw-selection-fill,rgba(var(--v-theme-primary), .24));color:var(--v-vw-selection-color,inherit)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) ::selection{background-color:var(--v-vw-selection-fill,rgba(var(--v-theme-primary), .24));color:var(--v-vw-selection-color,inherit)}@keyframes vw-pop{0%{transform:scale(1)}45%{transform:scale(var(--v-vw-pop-scale,1.18))}to{transform:scale(1)}}:is([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-toolbar-items) .v-btn.v-btn{box-shadow:none}@media (prefers-reduced-motion:reduce){:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon){--v-vw-motion-duration:1ms;--v-vw-pop-duration:1ms;--v-vw-press-scale:1;--v-vw-press-shift:0px;--v-vw-hover-lift:0px;--v-vw-theme-transition:0s}}@keyframes vw-theme-wipe{0%{clip-path:circle(0% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}to{clip-path:circle(150% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}}html[data-vuetiwatch]::view-transition-old(root){animation:none}html[data-vuetiwatch]::view-transition-new(root){animation:vw-theme-wipe var(--v-vw-theme-transition,.42s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
0 8px 32px rgba(var(--v-shadow-color), .45);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
.v-theme--darkGlass :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
12
|
+
.v-theme--darkGlass:is(.v-menu, .v-dialog) > .v-overlay__content, .v-theme--darkGlass :is(.v-menu, .v-dialog) > .v-overlay__content {
|
|
13
13
|
backdrop-filter: blur(18px) saturate(160%);
|
|
14
14
|
box-shadow: 0 16px 48px rgba(var(--v-shadow-color), .55);
|
|
15
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .62);backdrop-filter:blur(18px)saturate(160%);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--darkGlass .v-card.v-card--variant-elevated{box-shadow:inset 0 1px 0 rgba(var(--v-theme-primary), .28), 0 8px 32px rgba(var(--v-shadow-color), .45)}.v-theme--darkGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(18px)saturate(160%);box-shadow:0 16px 48px rgba(var(--v-shadow-color), .55)}.v-theme--darkGlass .v-field.v-field--variant-solo-filled .v-field__overlay{background-color:rgba(var(--v-theme-surface-bright), .45)}.v-theme--darkGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 4px 20px rgba(var(--v-theme-primary), .35)}.v-theme--darkGlass .v-tab__slider{box-shadow:0 0 12px rgba(var(--v-theme-primary), .8)}.v-theme--darkGlass .v-slider-thumb__surface{box-shadow:0 0 0 6px rgba(var(--v-theme-primary), .16)}.v-theme--darkGlass .v-switch__track{backdrop-filter:blur(6px);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}@media (prefers-reduced-transparency:reduce){.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}
|
|
1
|
+
.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .62);backdrop-filter:blur(18px)saturate(160%);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--darkGlass .v-card.v-card--variant-elevated{box-shadow:inset 0 1px 0 rgba(var(--v-theme-primary), .28), 0 8px 32px rgba(var(--v-shadow-color), .45)}.v-theme--darkGlass:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--darkGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(18px)saturate(160%);box-shadow:0 16px 48px rgba(var(--v-shadow-color), .55)}.v-theme--darkGlass .v-field.v-field--variant-solo-filled .v-field__overlay{background-color:rgba(var(--v-theme-surface-bright), .45)}.v-theme--darkGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 4px 20px rgba(var(--v-theme-primary), .35)}.v-theme--darkGlass .v-tab__slider{box-shadow:0 0 12px rgba(var(--v-theme-primary), .8)}.v-theme--darkGlass .v-slider-thumb__surface{box-shadow:0 0 0 6px rgba(var(--v-theme-primary), .16)}.v-theme--darkGlass .v-switch__track{backdrop-filter:blur(6px);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}@media (prefers-reduced-transparency:reduce){.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}
|