unocss-preset-quasar 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/dark.unocss.js +4 -1
- package/dist/core/flex.unocss.js +17 -6
- package/dist/core/index.js +10 -0
- package/dist/core/typography.unocss.js +0 -2
- package/dist/index.js +58 -20
- package/dist/styles/md2/components/QBanner.unocss.js +5 -0
- package/dist/styles/md2/components/QCheckbox.unocss.js +1 -1
- package/dist/styles/md2/components/QItem.unocss.js +2 -2
- package/dist/styles/md2/components/QScrollarea.unocss.js +2 -5
- package/dist/styles/md2/components/QTabs.unocss.js +14 -5
- package/dist/styles/md3/components/QBanner.unocss.js +7 -2
- package/dist/styles/md3/components/QBtn.unocss.js +12 -5
- package/dist/styles/md3/components/QBtnToggle.unocss.js +1 -0
- package/dist/styles/md3/components/QCard.unocss.js +7 -2
- package/dist/styles/md3/components/QCheckbox.unocss.js +7 -3
- package/dist/styles/md3/components/QChip.unocss.js +4 -3
- package/dist/styles/md3/components/QDate.unocss.js +8 -4
- package/dist/styles/md3/components/QDrawer.unocss.js +20 -7
- package/dist/styles/md3/components/QField.unocss.js +33 -32
- package/dist/styles/md3/components/QFooter.unocss.js +1 -1
- package/dist/styles/md3/components/QHeader.unocss.js +2 -1
- package/dist/styles/md3/components/QIcon.unocss.js +1 -1
- package/dist/styles/md3/components/QItem.unocss.js +15 -10
- package/dist/styles/md3/components/QLayout.unocss.js +1 -1
- package/dist/styles/md3/components/QPageSticky.unocss.js +4 -0
- package/dist/styles/md3/components/QScrollarea.unocss.js +2 -5
- package/dist/styles/md3/components/QStepper.unocss.js +30 -4
- package/dist/styles/md3/components/QTabs.unocss.js +16 -6
- package/dist/styles/md3/components/QToggle.unocss.js +1 -3
- package/dist/styles/md3/components/QToolbar.unocss.js +1 -1
- package/dist/styles/md3/index.js +17 -1
- package/dist/theme.js +1 -1
- package/dist/types/styles/md3/index.d.ts +5 -1
- package/dist/types/theme.d.ts +5 -0
- package/package.json +1 -1
- package/src/core/dark.unocss.ts +4 -1
- package/src/core/flex.unocss.ts +16 -6
- package/src/core/index.ts +10 -0
- package/src/core/typography.unocss.ts +0 -2
- package/src/index.ts +64 -20
- package/src/styles/md2/components/QBanner.unocss.ts +7 -0
- package/src/styles/md2/components/QCheckbox.unocss.ts +1 -1
- package/src/styles/md2/components/QItem.unocss.ts +2 -2
- package/src/styles/md2/components/QScrollarea.unocss.ts +2 -5
- package/src/styles/md2/components/QTabs.unocss.ts +14 -5
- package/src/styles/md3/components/QBanner.unocss.ts +9 -2
- package/src/styles/md3/components/QBtn.unocss.ts +12 -5
- package/src/styles/md3/components/QBtnToggle.unocss.ts +1 -0
- package/src/styles/md3/components/QCard.unocss.ts +9 -2
- package/src/styles/md3/components/QCheckbox.unocss.ts +9 -3
- package/src/styles/md3/components/QChip.unocss.ts +4 -3
- package/src/styles/md3/components/QDate.unocss.ts +8 -4
- package/src/styles/md3/components/QDrawer.unocss.ts +20 -7
- package/src/styles/md3/components/QField.unocss.ts +33 -32
- package/src/styles/md3/components/QFooter.unocss.ts +1 -1
- package/src/styles/md3/components/QHeader.unocss.ts +2 -1
- package/src/styles/md3/components/QIcon.unocss.ts +1 -1
- package/src/styles/md3/components/QItem.unocss.ts +15 -10
- package/src/styles/md3/components/QLayout.unocss.ts +1 -1
- package/src/styles/md3/components/QPageSticky.unocss.ts +4 -0
- package/src/styles/md3/components/QScrollarea.unocss.ts +2 -5
- package/src/styles/md3/components/QStepper.unocss.ts +32 -4
- package/src/styles/md3/components/QTabs.unocss.ts +16 -6
- package/src/styles/md3/components/QToggle.unocss.ts +1 -3
- package/src/styles/md3/components/QToolbar.unocss.ts +1 -1
- package/src/styles/md3/index.ts +25 -1
- package/src/theme.ts +6 -1
|
@@ -29,7 +29,7 @@ const shortcuts = [
|
|
|
29
29
|
[&_::-ms-clear]:(hidden)
|
|
30
30
|
[&_::-ms-reveal]:(hidden)`
|
|
31
31
|
],
|
|
32
|
-
[/^q-field--with-bottom$/, ([, c], { theme }) =>
|
|
32
|
+
[/^q-field--with-bottom$/, ([, c], { theme }) => ``],
|
|
33
33
|
[
|
|
34
34
|
/^q-field__marginal$/,
|
|
35
35
|
([, c], { theme }) => theme.quasar?.components?.['q-field__marginal'] ??
|
|
@@ -55,12 +55,12 @@ const shortcuts = [
|
|
|
55
55
|
[
|
|
56
56
|
/^q-field__bottom$/,
|
|
57
57
|
([, c], { theme }) => theme.quasar?.components?.['q-field__bottom'] ??
|
|
58
|
-
`text-[12px] min-h-[20px] leading-none text-black/54 mt
|
|
58
|
+
`text-[12px] min-h-[20px] leading-none bg-transparent text-black/54 mt-4px px-[12px] pb-[0] [backface-visibility:hidden]`
|
|
59
59
|
],
|
|
60
60
|
[
|
|
61
61
|
/^q-field__bottom--animated$/,
|
|
62
62
|
([, c], { theme }) => theme.quasar?.components?.['q-field__bottom--animated'] ??
|
|
63
|
-
`
|
|
63
|
+
`left-[0] right-[0] bottom-[0]`
|
|
64
64
|
],
|
|
65
65
|
[
|
|
66
66
|
/^q-field__messages$/,
|
|
@@ -174,19 +174,19 @@ const shortcuts = [
|
|
|
174
174
|
[
|
|
175
175
|
/^q-field--filled$/,
|
|
176
176
|
([, c], { theme }) => theme.quasar?.components?.['q-field--filled'] ??
|
|
177
|
-
`bg-light-surface-container text-light-on-surface-variant
|
|
178
|
-
dark:bg-dark-surface-container dark:text-dark-on-surface-variant
|
|
177
|
+
`[&_.q-field\\_\\_control]:(bg-light-surface-container text-light-on-surface-variant
|
|
178
|
+
dark:bg-dark-surface-container dark:text-dark-on-surface-variant)
|
|
179
179
|
[&_.q-field\\_\\_control]:(px-[16px] py-[0] layer-components:bg-black/5 rounded-tl-[4px] rounded-br-[0] rounded-tr-[4px] rounded-bl-[0])
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
180
|
+
[&_.q-field\\_\\_control:before]:(layer-components:bg-black/5 [border-bottom:1px_solid_rgba(0,_0,_0,_0.42)] opacity-0 [transition:opacity_0.36s_cubic-bezier(0.4,_0,_0.2,_1),_background_0.36s_cubic-bezier(0.4,_0,_0.2,_1)])
|
|
181
|
+
[&_.q-field\\_\\_control:hover:before]:(opacity-100)
|
|
182
|
+
[&_.q-field\\_\\_control:after]:(h-[2px] top-auto origin-[center_bottom] [transform:scale3d(0,_1,_1)] bg-current [transition:transform_0.36s_cubic-bezier(0.4,_0,_0.2,_1)])
|
|
183
|
+
[&.q-field--rounded_.q-field\\_\\_control]:(rounded-tl-[28px] rounded-br-[0] rounded-tr-[28px] rounded-bl-[0])
|
|
184
|
+
[&.q-field--highlighted_.q-field\\_\\_control:before]:(opacity-100 layer-components:bg-black/12)
|
|
185
|
+
[&.q-field--highlighted_.q-field\\_\\_control:after]:([transform:scale3d(1,_1,_1)])
|
|
186
|
+
[&.q-field--dark_.q-field\\_\\_control]:(layer-components:bg-white/7)
|
|
187
|
+
[&.q-field--dark_.q-field\\_\\_control:before]:(layer-components:bg-white/7)
|
|
188
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_control:before]:(layer-components:bg-white/1)
|
|
189
|
+
[&.q-field--readonly_.q-field\\_\\_control:before]:(opacity-100 bg-transparent [border-bottom-style:dashed])`
|
|
190
190
|
],
|
|
191
191
|
[
|
|
192
192
|
/^q-field--outlined$/,
|
|
@@ -229,27 +229,28 @@ const shortcuts = [
|
|
|
229
229
|
[
|
|
230
230
|
/^q-field--standout$/,
|
|
231
231
|
([, c], { theme }) => theme.quasar?.components?.['q-field--standout'] ??
|
|
232
|
-
`[&_.q-field\\_\\_control]:(px-[12px] py-[0] layer-components:bg-
|
|
232
|
+
`[&_.q-field\\_\\_control]:(px-[12px] py-[0] layer-components:bg-light-surface-container-high
|
|
233
|
+
rounded-[4px] [transition:box-shadow_0.36s_cubic-bezier(0.4,_0,_0.2,_1),_background-color_0.36s_cubic-bezier(0.4,_0,_0.2,_1)])
|
|
233
234
|
[&_.q-field\\_\\_control:before]:(layer-components:bg-black/7 opacity-0 [transition:opacity_0.36s_cubic-bezier(0.4,_0,_0.2,_1),_background_0.36s_cubic-bezier(0.4,_0,_0.2,_1)])
|
|
234
235
|
[&_.q-field\\_\\_control:hover:before]:(opacity-100)
|
|
235
236
|
[&.q-field--rounded_.q-field\\_\\_control]:(rounded-[28px])
|
|
236
|
-
[&.q-field--highlighted_.q-field\\_\\_control]:([box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)]
|
|
237
|
-
[&.q-field--highlighted_.q-field\\_\\_native]:(text-
|
|
238
|
-
[&.q-field--highlighted_.q-field\\_\\_prefix]:(text-
|
|
239
|
-
[&.q-field--highlighted_.q-field\\_\\_suffix]:(text-
|
|
240
|
-
[&.q-field--highlighted_.q-field\\_\\_prepend]:(text-
|
|
241
|
-
[&.q-field--highlighted_.q-field\\_\\_append]:(text-
|
|
242
|
-
[&.q-field--highlighted_.q-field\\_\\_input]:(text-
|
|
237
|
+
[&.q-field--highlighted_.q-field\\_\\_control]:([box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)])
|
|
238
|
+
[&.q-field--highlighted_.q-field\\_\\_native]:(text-light-primary)
|
|
239
|
+
[&.q-field--highlighted_.q-field\\_\\_prefix]:(text-light-primary)
|
|
240
|
+
[&.q-field--highlighted_.q-field\\_\\_suffix]:(text-light-primary)
|
|
241
|
+
[&.q-field--highlighted_.q-field\\_\\_prepend]:(text-light-primary)
|
|
242
|
+
[&.q-field--highlighted_.q-field\\_\\_append]:(text-light-primary)
|
|
243
|
+
[&.q-field--highlighted_.q-field\\_\\_input]:(text-light-on-surface)
|
|
243
244
|
[&.q-field--readonly_.q-field\\_\\_control:before]:(opacity-100 bg-transparent border-[1px] border-dashed border-black/24)
|
|
244
|
-
[&.q-field--dark_.q-field\\_\\_control]:(bg-
|
|
245
|
+
[&.q-field--dark_.q-field\\_\\_control]:(bg-dark-surface-container-high)
|
|
245
246
|
[&.q-field--dark_.q-field\\_\\_control:before]:(layer-components:bg-white/7)
|
|
246
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_control]:(layer-components:bg-
|
|
247
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_native]:(text-
|
|
248
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_prefix]:(text-
|
|
249
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_suffix]:(text-
|
|
250
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_prepend]:(text-
|
|
251
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_append]:(text-
|
|
252
|
-
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_input]:(text-
|
|
247
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_control]:(layer-components:bg-dark-surface-container-highest)
|
|
248
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_native]:(text-dark-primary)
|
|
249
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_prefix]:(text-dark-primary)
|
|
250
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_suffix]:(text-dark-primary)
|
|
251
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_prepend]:(text-dark-primary)
|
|
252
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_append]:(text-dark-primary)
|
|
253
|
+
[&.q-field--dark.q-field--highlighted_.q-field\\_\\_input]:(!text-dark-on-surface)
|
|
253
254
|
[&.q-field--dark.q-field--readonly_.q-field\\_\\_control:before]:(border-white/24)`
|
|
254
255
|
],
|
|
255
256
|
[
|
|
@@ -273,7 +274,7 @@ const shortcuts = [
|
|
|
273
274
|
`[&_.q-field--with-bottom]:(pb-[19px])
|
|
274
275
|
[&_.q-field\\_\\_shadow]:(top-[0])
|
|
275
276
|
[&_.q-field\\_\\_control]:(h-[40px])
|
|
276
|
-
[&_.q-field\\_\\_marginal]:(
|
|
277
|
+
[&_.q-field\\_\\_marginal]:()
|
|
277
278
|
[&_.q-field\\_\\_bottom]:(text-[11px])
|
|
278
279
|
[&_.q-field\\_\\_label]:(text-[14px] top-[10px])
|
|
279
280
|
[&_.q-field\\_\\_before]:()
|
|
@@ -8,7 +8,7 @@ const shortcuts = [
|
|
|
8
8
|
[
|
|
9
9
|
/^q-footer$/,
|
|
10
10
|
([, c], { theme }) => theme.quasar?.components?.['q-footer'] ??
|
|
11
|
-
`[&_.q-layout\\_\\_shadow]:(-top-[10px]) [&_.q-layout\\_\\_shadow:after]:(top-[10px])
|
|
11
|
+
`[&_.q-layout\\_\\_shadow]:(-top-[10px]) [&_.q-layout\\_\\_shadow:after]:(top-[10px]) z-${theme.quasar.z['marginals']}`
|
|
12
12
|
]
|
|
13
13
|
];
|
|
14
14
|
export { shortcuts };
|
|
@@ -8,7 +8,8 @@ const shortcuts = [
|
|
|
8
8
|
[
|
|
9
9
|
/^q-header$/,
|
|
10
10
|
([, c], { theme }) => theme.quasar?.components?.['q-header'] ??
|
|
11
|
-
`z-2000 [&_.q-layout\\_\\_shadow]:(-bottom-10px) [&_.q-layout\\_\\_shadow:after]:(bottom-10px)
|
|
11
|
+
`z-2000 [&_.q-layout\\_\\_shadow]:(-bottom-10px) [&_.q-layout\\_\\_shadow:after]:(bottom-10px)
|
|
12
|
+
[&_.q-toolbar\\_\\_title]:(flex-grow-1000)`
|
|
12
13
|
// relative
|
|
13
14
|
]
|
|
14
15
|
];
|
|
@@ -7,7 +7,7 @@ const shortcuts = [
|
|
|
7
7
|
[&>img]:(h-full w-full)
|
|
8
8
|
[&:before]:(w-full h-full flex! items-center justify-center)
|
|
9
9
|
[&:after]:(w-full h-full flex! items-center justify-center)
|
|
10
|
-
select-none cursor-inherit layer-components:
|
|
10
|
+
select-none cursor-inherit layer-components:text-light-on-surface layer-components:dark:text-dark-on-surface inline-flex items-center justify-center v-middle
|
|
11
11
|
`
|
|
12
12
|
],
|
|
13
13
|
// [
|
|
@@ -2,18 +2,18 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-item$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-item'] ??
|
|
5
|
-
`min-h-[
|
|
6
|
-
[&.q-router-link--active]:(text-primary)`
|
|
5
|
+
`min-h-[28px] px-[16px] py-[8px] [color:inherit] [transition:color_0.3s,_background-color_0.3s] [&_>_.q-item\\_\\_section--thumbnail:first-child]:(-ml-[16px]) [&_>_.q-focus-helper_+_.q-item\\_\\_section--thumbnail]:(-ml-[16px]) [&_>_.q-item\\_\\_section--thumbnail:last-of-type]:(-mr-[16px]) relative
|
|
6
|
+
[&.q-router-link--active]:(text-light-primary dark:text-dark-primary)`
|
|
7
7
|
],
|
|
8
8
|
[
|
|
9
9
|
/^q-item__section--side$/,
|
|
10
10
|
([, c], { theme }) => theme.quasar?.components?.['q-item__section--side'] ??
|
|
11
|
-
`!flex-initial text-[#757575] items-start pr-[16px] w-auto
|
|
11
|
+
`!flex-initial text-[#757575] items-start pr-[16px] w-auto max-w-full [&_>_.q-icon]:(text-[24px]) [&_>_.q-avatar]:(text-[40px])`
|
|
12
12
|
],
|
|
13
13
|
[
|
|
14
14
|
/^q-item__section--avatar$/,
|
|
15
15
|
([, c], { theme }) => theme.quasar?.components?.['q-item__section--avatar'] ??
|
|
16
|
-
`!flex-initial [color:inherit] min-w-[
|
|
16
|
+
`!flex-initial [color:inherit] min-w-[40px]`
|
|
17
17
|
],
|
|
18
18
|
[
|
|
19
19
|
/^q-item__section--thumbnail$/,
|
|
@@ -55,8 +55,8 @@ const shortcuts = [
|
|
|
55
55
|
/^q-item__section--main$/,
|
|
56
56
|
([, c], { theme }) => theme.quasar?.components?.['q-item__section--main'] ??
|
|
57
57
|
`w-auto min-w-[0] max-w-full flex-[10000_1_0%]
|
|
58
|
-
[&:has(>:last-child:nth-child(2))]:(min-h-
|
|
59
|
-
[&:has(>:last-child:nth-child(3))]:(min-h-
|
|
58
|
+
[&:has(>:last-child:nth-child(2))]:(min-h-36px)
|
|
59
|
+
[&:has(>:last-child:nth-child(3))]:(min-h-44px)
|
|
60
60
|
[&_+_.q-item\\_\\_section--main]:(ml-[8px])
|
|
61
61
|
[&_~_.q-item\\_\\_section--side]:(items-end pr-0 pl-[16px])`
|
|
62
62
|
],
|
|
@@ -73,19 +73,24 @@ const shortcuts = [
|
|
|
73
73
|
[
|
|
74
74
|
/^q-list--dense$/,
|
|
75
75
|
([, c], { theme }) => theme.quasar?.components?.['q-list--dense'] ??
|
|
76
|
-
`[&_>_.q-item]:(min-h-[
|
|
76
|
+
`[&_>_.q-item]:(min-h-[28px] px-[16px] py-[2px])`
|
|
77
77
|
],
|
|
78
|
-
[/^q-item--dense$/, ([, c], { theme }) => `min-h-[
|
|
78
|
+
[/^q-item--dense$/, ([, c], { theme }) => `min-h-[28px] px-[16px] py-[2px]`],
|
|
79
79
|
[
|
|
80
80
|
/^q-list--dark$/,
|
|
81
81
|
([, c], { theme }) => theme.quasar?.components?.['q-list--dark'] ??
|
|
82
|
-
`text-[#fff] border-[rgba(255,_255,_255,_0.28)]
|
|
82
|
+
`text-[#fff] border-[rgba(255,_255,_255,_0.28)]
|
|
83
|
+
[&_.q-item\\_\\_section--side:not(.q-item\\_\\_section--avatar)]:(text-[rgba(255,_255,_255,_0.7)])
|
|
84
|
+
[&_.q-item\\_\\_label--header]:(text-[rgba(255,_255,_255,_0.64)]) [&_.q-item\\_\\_label--overline]:(text-[rgba(255,_255,_255,_0.8)]) [&_.q-item\\_\\_label--caption]:(text-[rgba(255,_255,_255,_0.8)])`
|
|
83
85
|
],
|
|
84
86
|
[
|
|
85
87
|
/^q-item--dark$/,
|
|
86
88
|
([, c], { theme }) => theme.quasar?.components?.['q-item--dark'] ??
|
|
87
89
|
`text-[#fff] border-[rgba(255,_255,_255,_0.28)] [&_.q-item\\_\\_section--side:not(.q-item\\_\\_section--avatar)]:(text-[rgba(255,_255,_255,_0.7)]) [&_.q-item\\_\\_label--header]:(text-[rgba(255,_255,_255,_0.64)]) [&_.q-item\\_\\_label--overline]:(text-[rgba(255,_255,_255,_0.8)]) [&_.q-item\\_\\_label--caption]:(text-[rgba(255,_255,_255,_0.8)])`
|
|
88
90
|
],
|
|
89
|
-
[
|
|
91
|
+
[
|
|
92
|
+
/^q-item--active$/,
|
|
93
|
+
([, c], { theme }) => `text-light-primary dark:text-dark-primary`
|
|
94
|
+
]
|
|
90
95
|
];
|
|
91
96
|
export { shortcuts };
|
|
@@ -78,7 +78,7 @@ const shortcuts = [
|
|
|
78
78
|
[
|
|
79
79
|
/^q-layout__section--marginal$/,
|
|
80
80
|
([, c], { theme }) => theme.quasar?.components?.['q-layout__section--marginal'] ??
|
|
81
|
-
`text-[#fff] bg-light-surface dark:bg-dark-surface-container text-light-on-surface dark:text-dark-on-surface`
|
|
81
|
+
`text-[#fff] bg-light-surface-container-low dark:bg-dark-surface-container-low text-light-on-surface dark:text-dark-on-surface`
|
|
82
82
|
]
|
|
83
83
|
];
|
|
84
84
|
export { preflights, shortcuts };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const shortcuts = [
|
|
2
|
-
[/^q-scrollarea$/, ([, c], { theme }) => `relative`],
|
|
2
|
+
[/^q-scrollarea$/, ([, c], { theme }) => `relative [contain:strict]`],
|
|
3
3
|
[
|
|
4
4
|
/^q-scrollarea__bar$/,
|
|
5
5
|
([, c], { theme }) => theme.quasar?.components?.['q-scrollarea__bar'] ??
|
|
@@ -26,10 +26,7 @@ const shortcuts = [
|
|
|
26
26
|
],
|
|
27
27
|
[/^q-scrollarea__thumb:hover$/, ([, c], { theme }) => `hover:opacity-30`],
|
|
28
28
|
[/^q-scrollarea__thumb:active$/, ([, c], { theme }) => `active:opacity-50`],
|
|
29
|
-
[
|
|
30
|
-
/^q-scrollarea__content$/,
|
|
31
|
-
([, c], { theme }) => `!relative min-h-full min-w-full`
|
|
32
|
-
],
|
|
29
|
+
[/^q-scrollarea__content$/, ([, c], { theme }) => `min-h-full w-full`],
|
|
33
30
|
[
|
|
34
31
|
/^q-scrollarea--dark$/,
|
|
35
32
|
([, c], { theme }) => theme.quasar?.components?.['q-scrollarea--dark'] ??
|
|
@@ -2,7 +2,14 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-stepper$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-stepper'] ??
|
|
5
|
-
`[box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)] rounded-[4px]
|
|
5
|
+
`[box-shadow:0_1px_5px_rgba(0,_0,_0,_0.2),_0_2px_2px_rgba(0,_0,_0,_0.14),_0_3px_1px_-2px_rgba(0,_0,_0,_0.12)] rounded-[4px]
|
|
6
|
+
bg-light-surface dark:bg-dark-surface
|
|
7
|
+
`
|
|
8
|
+
],
|
|
9
|
+
[
|
|
10
|
+
/^q-stepper__label$/,
|
|
11
|
+
([, c], { theme }) => theme.quasar?.components?.['q-stepper__label'] ??
|
|
12
|
+
`bg-light-surface dark:bg-dark-surface`
|
|
6
13
|
],
|
|
7
14
|
[
|
|
8
15
|
/^q-stepper__title$/,
|
|
@@ -27,7 +34,16 @@ const shortcuts = [
|
|
|
27
34
|
[
|
|
28
35
|
/^q-stepper--dark$/,
|
|
29
36
|
([, c], { theme }) => theme.quasar?.components?.['q-stepper--dark'] ??
|
|
30
|
-
`[box-shadow:0_1px_5px_rgba(255,_255,_255,_0.2),_0_2px_2px_rgba(255,_255,_255,_0.14),_0_3px_1px_-2px_rgba(255,_255,_255,_0.12)]
|
|
37
|
+
`[box-shadow:0_1px_5px_rgba(255,_255,_255,_0.2),_0_2px_2px_rgba(255,_255,_255,_0.14),_0_3px_1px_-2px_rgba(255,_255,_255,_0.12)]
|
|
38
|
+
[&_.q-stepper\\_\\_dot_span]:(text-[#000]) [&.q-stepper--bordered]:(border-[rgba(255,_255,_255,_0.28)])
|
|
39
|
+
[&_.q-stepper\\_\\_header--border]:(border-[rgba(255,_255,_255,_0.28)])
|
|
40
|
+
[&.q-stepper--horizontal_.q-stepper\\_\\_line:before]:(bg-[rgba(255,_255,_255,_0.28)])
|
|
41
|
+
[&.q-stepper--horizontal_.q-stepper\\_\\_line:after]:(bg-[rgba(255,_255,_255,_0.28)])
|
|
42
|
+
[&.q-stepper--vertical_.q-stepper\\_\\_dot:before]:(bg-[rgba(255,_255,_255,_0.28)])
|
|
43
|
+
[&.q-stepper--vertical_.q-stepper\\_\\_dot:after]:(bg-[rgba(255,_255,_255,_0.28)])
|
|
44
|
+
[&_.q-stepper\\_\\_tab--disabled]:(text-[rgba(255,_255,_255,_0.28)])
|
|
45
|
+
[&_.q-stepper\\_\\_tab--disabled_.q-stepper\\_\\_dot]:(bg-[rgba(255,_255,_255,_0.28)])
|
|
46
|
+
[&_.q-stepper\\_\\_tab--disabled_.q-stepper\\_\\_label]:(text-[rgba(255,_255,_255,_0.54)])`
|
|
31
47
|
],
|
|
32
48
|
[
|
|
33
49
|
/^q-stepper__tab--navigation$/,
|
|
@@ -37,7 +53,8 @@ const shortcuts = [
|
|
|
37
53
|
[
|
|
38
54
|
/^q-stepper__tab--active$/,
|
|
39
55
|
([, c], { theme }) => theme.quasar?.components?.['q-stepper__tab--active'] ??
|
|
40
|
-
`
|
|
56
|
+
`text-light-primary dark:text-dark-primary [&_.q-stepper\\_\\_dot]:([text-shadow:0_0_0_currentColor])
|
|
57
|
+
[&_.q-stepper\\_\\_label]:([text-shadow:0_0_0_currentColor])`
|
|
41
58
|
],
|
|
42
59
|
[
|
|
43
60
|
/^q-stepper__tab--done$/,
|
|
@@ -107,7 +124,16 @@ __.q-stepper\\_\\_tab:last-child]:(items-end) [&_.q-stepper\\_\\_tab]:(px-[0] py
|
|
|
107
124
|
[
|
|
108
125
|
/^q-stepper--horizontal$/,
|
|
109
126
|
([, c], { theme }) => theme.quasar?.components?.['q-stepper--horizontal'] ??
|
|
110
|
-
`[&_.q-stepper\\_\\_step-inner]:(p-[24px])
|
|
127
|
+
`[&_.q-stepper\\_\\_step-inner]:(p-[24px])
|
|
128
|
+
[&_.q-stepper\\_\\_tab:first-child]:([border-top-left-radius:inherit])
|
|
129
|
+
[&_.q-stepper\\_\\_tab:last-child]:([border-top-right-radius:inherit])
|
|
130
|
+
[&_.q-stepper\\_\\_tab:first-child_.q-stepper\\_\\_dot:before]:(hidden)
|
|
131
|
+
[&_.q-stepper\\_\\_tab:last-child_.q-stepper\\_\\_label:after]:(hidden)
|
|
132
|
+
[&_.q-stepper\\_\\_tab:last-child_.q-stepper\\_\\_dot:after]:(hidden)
|
|
133
|
+
[&_.q-stepper\\_\\_tab]:(overflow-hidden)
|
|
134
|
+
[&_.q-stepper\\_\\_line]:(contain-layout)
|
|
135
|
+
[&_.q-stepper\\_\\_line:before]:(absolute top-2/4 h-px w-screen bg-[rgba(0,_0,_0,_0.12)])
|
|
136
|
+
[&_.q-stepper\\_\\_line:after]:(absolute top-2/4 h-px w-screen bg-[rgba(0,_0,_0,_0.12)]) [&_.q-stepper\\_\\_label:after]:(content-[''] left-full ml-[8px]) [&_.q-stepper\\_\\_dot:after]:(content-[''] left-full ml-[8px]) [&_.q-stepper\\_\\_dot:before]:(content-[''] right-full mr-[8px]) [&_>_.q-stepper\\_\\_nav]:(pt-[0] px-[24px] pb-[24px])`
|
|
111
137
|
],
|
|
112
138
|
[
|
|
113
139
|
/^q-stepper--vertical$/,
|
|
@@ -2,11 +2,14 @@ const shortcuts = [
|
|
|
2
2
|
[
|
|
3
3
|
/^q-tab$/,
|
|
4
4
|
([, c], { theme }) => theme.quasar?.components?.['q-tab'] ??
|
|
5
|
-
`px-[16px] py-[0] min-h-[48px] [transition:color_0.3s,_background-color_0.3s]
|
|
5
|
+
`px-[16px] py-[0] min-h-[48px] [transition:color_0.3s,_background-color_0.3s] whitespace-nowrap [color:inherit] no-underline
|
|
6
|
+
[&_.q-badge]:(top-[3px] -right-[12px])
|
|
7
|
+
[&_>_.q-focus-helper]:(!absolute !h-32px !w-52px !top-[calc(50%-23px)] !left-[calc(50%-26px)] !border-rd-16px)
|
|
8
|
+
`
|
|
6
9
|
],
|
|
7
10
|
[
|
|
8
11
|
/^q-tab--full$/,
|
|
9
|
-
([, c], { theme }) => theme.quasar?.components?.['q-tab--full'] ?? `min-h-
|
|
12
|
+
([, c], { theme }) => theme.quasar?.components?.['q-tab--full'] ?? `min-h-72px h-72px`
|
|
10
13
|
],
|
|
11
14
|
[
|
|
12
15
|
/^q-tab--no-caps$/,
|
|
@@ -15,7 +18,7 @@ const shortcuts = [
|
|
|
15
18
|
[
|
|
16
19
|
/^q-tab__content$/,
|
|
17
20
|
([, c], { theme }) => theme.quasar?.components?.['q-tab__content'] ??
|
|
18
|
-
`[height:inherit] px-[0] py-[4px] min-w-[40px] [&_.q-chip--floating]:(top-[0] -right-[16px])`
|
|
21
|
+
`[height:inherit] z-2 px-[0] py-[4px] min-w-[40px] [&_.q-chip--floating]:(top-[0] -right-[16px])`
|
|
19
22
|
],
|
|
20
23
|
[
|
|
21
24
|
/^q-tab__content--inline$/,
|
|
@@ -45,12 +48,12 @@ const shortcuts = [
|
|
|
45
48
|
[
|
|
46
49
|
/^q-tab__indicator$/,
|
|
47
50
|
([, c], { theme }) => theme.quasar?.components?.['q-tab__indicator'] ??
|
|
48
|
-
|
|
51
|
+
`opacity-0 h-[2px] bg-current`
|
|
49
52
|
],
|
|
50
53
|
[
|
|
51
54
|
/^q-tab--active$/,
|
|
52
55
|
([, c], { theme }) => theme.quasar?.components?.['q-tab--active'] ??
|
|
53
|
-
`[&_.q-tab\\_\\_indicator]:(opacity-100 origin-left)`
|
|
56
|
+
`text-light-primary dark:text-dark-primary [&_.q-tab\\_\\_indicator]:(opacity-100 origin-left)`
|
|
54
57
|
],
|
|
55
58
|
[
|
|
56
59
|
/^q-tab--inactive$/,
|
|
@@ -108,7 +111,14 @@ const shortcuts = [
|
|
|
108
111
|
[
|
|
109
112
|
/^q-tabs--vertical$/,
|
|
110
113
|
([, c], { theme }) => theme.quasar?.components?.['q-tabs--vertical'] ??
|
|
111
|
-
`!block h-full [&_.q-tabs\\_\\_content]:(!block h-full)
|
|
114
|
+
`!block h-full [&_.q-tabs\\_\\_content]:(!block h-full)
|
|
115
|
+
[&_.q-tabs\\_\\_arrow]:(w-full h-[36px] text-center)
|
|
116
|
+
[&_.q-tabs\\_\\_arrow--left]:(top-[0] left-[0] right-[0])
|
|
117
|
+
[&_.q-tabs\\_\\_arrow--right]:(left-[0] right-[0] bottom-[0])
|
|
118
|
+
[&_.q-tab]:(px-[8px] py-[0])
|
|
119
|
+
[&_.q-tab\\_\\_indicator]:(h-[unset] w-2px min-h-100%)
|
|
120
|
+
[&_.q-tabs--not-scrollable_.q-tabs\\_\\_content]:(h-full)
|
|
121
|
+
[&_.q-tabs--dense_.q-tab\\_\\_content]:(min-w-[24px])`
|
|
112
122
|
],
|
|
113
123
|
[
|
|
114
124
|
/^q-tabs--dense$/,
|
|
@@ -47,9 +47,7 @@ const shortcuts = [
|
|
|
47
47
|
`[&_.q-toggle\\_\\_track]:(bg-light-primary dark:bg-dark-primary)
|
|
48
48
|
[&_.q-toggle\\_\\_thumb]:(text-light-on-primary-container dark:text-light-on-primary-container left-[0.95em] top-[0.0625em] w-[0.875em] h-[0.875em])
|
|
49
49
|
[&_.q-toggle\\_\\_thumb:after]:(layer-components:!bg-light-on-primary dark:!bg-dark-on-primary)
|
|
50
|
-
[&_.q-toggle\\_\\_thumb_.q-icon]:(layer-components:text-[#fff] opacity-100)
|
|
51
|
-
[&:not(.disabled):focus_.q-toggle\\_\\_thumb:before]:(scale-200)
|
|
52
|
-
[&:not(.disabled):hover_.q-toggle\\_\\_thumb:before]:(scale-200)`
|
|
50
|
+
[&_.q-toggle\\_\\_thumb_.q-icon]:(layer-components:text-[#fff] opacity-100)`
|
|
53
51
|
],
|
|
54
52
|
[
|
|
55
53
|
/^q-toggle--dark$/,
|
|
@@ -10,7 +10,7 @@ const shortcuts = [
|
|
|
10
10
|
[
|
|
11
11
|
/^q-toolbar__title$/,
|
|
12
12
|
([, c], { theme }) => theme.quasar?.components?.['q-toolbar__title'] ??
|
|
13
|
-
`flex-
|
|
13
|
+
`flex-initial min-w-[1px] max-w-full text-[21px] font-normal tracking-[0.01em] px-[12px] py-[0] [&:first-child]:(pl-0) [&:last-child]:(pr-0)`
|
|
14
14
|
]
|
|
15
15
|
];
|
|
16
16
|
export { shortcuts };
|
package/dist/styles/md3/index.js
CHANGED
|
@@ -80,7 +80,7 @@ const style = {
|
|
|
80
80
|
rules: [].concat(),
|
|
81
81
|
shortcuts: [].concat(QIconShortcuts, QAjaxBarShortcuts, QAvatarShortcuts, QBadgeShortcuts, QBreadcrumbsShortcuts, QBannerShortcuts, QBarShortcuts, QBtnShortcuts, QBtnDropdownShortcuts, QBtnToggleShortcuts, QCardShortcuts, QCarouselShortcuts, QChatMessageShortcuts, QCheckboxShortcuts, QChipShortcuts, QCircularProgressShortcuts, QColorPickerShortcuts, QDateShortcuts, QDialogShortcuts, QEditorShortcuts, QExpansionItemShortcuts, QFabShortcuts, QFieldShortcuts, QFileShortcuts, QFormShortcuts, QImgShortcuts, QInnerLoadingShortcuts, QInputShortcuts, QIntersectionShortcuts, QItemShortcuts, QKnobShortcuts, QLayoutShortcuts, QLinearProgressShortcuts, QMenuShortcuts, QOptionGroupShortcuts, QPageShortcuts, QPageStickyShortcuts, QPaginationShortcuts, QParallaxShortcuts, QPopupEditShortcuts, QPullToRefreshShortcuts, QRadioShortcuts, QRatingShortcuts, QResponsiveShortcuts, QScrollareaShortcuts, QSelectShortcuts, QSeparatorShortcuts, QSkeletonShortcuts, QSlideItemShortcuts, QSliderShortcuts, QSpaceShortcuts, QSpinnerShortcuts, QSplitterShortcuts, QStepperShortcuts, QTabPanelShortcuts, QTableShortcuts, QTabsShortcuts, QTimeShortcuts, QTimelineShortcuts, QToggleShortcuts, QToolbarShortcuts, QTooltipShortcuts, QTreeShortcuts, QUploaderShortcuts, QVideoShortcuts, QVirtualScrollShortcuts, PanelShortcuts, QMorphShortcuts, QRippleShortcuts, QBottomSheetShortcuts, QDialogPluginShortcuts, QLoadingShortcuts, QNotifyShortcuts, QHeaderShortcuts, QFooterShortcuts, QDrawerShortcuts)
|
|
82
82
|
};
|
|
83
|
-
export const setDefaultProps = ({ QBtn, QBtnDropdown, QInput, QBtnToggle }) => {
|
|
83
|
+
export const setDefaultProps = ({ QBtn, QBtnDropdown, QBtnGroup, QInput, QBtnToggle, QSelect, QField, QChip }) => {
|
|
84
84
|
QBtn.props.rounded = {
|
|
85
85
|
type: QBtn.props.rounded,
|
|
86
86
|
default: true
|
|
@@ -89,6 +89,10 @@ export const setDefaultProps = ({ QBtn, QBtnDropdown, QInput, QBtnToggle }) => {
|
|
|
89
89
|
type: QBtnDropdown.props.rounded,
|
|
90
90
|
default: true
|
|
91
91
|
};
|
|
92
|
+
QBtnGroup.props.rounded = {
|
|
93
|
+
type: QBtnGroup.props.rounded,
|
|
94
|
+
default: true
|
|
95
|
+
};
|
|
92
96
|
QInput.props.filled = {
|
|
93
97
|
type: QInput.props.filled,
|
|
94
98
|
default: true
|
|
@@ -97,5 +101,17 @@ export const setDefaultProps = ({ QBtn, QBtnDropdown, QInput, QBtnToggle }) => {
|
|
|
97
101
|
type: QBtnToggle.props.rounded,
|
|
98
102
|
default: true
|
|
99
103
|
};
|
|
104
|
+
QSelect.props.filled = {
|
|
105
|
+
type: QSelect.props.filled,
|
|
106
|
+
default: true
|
|
107
|
+
};
|
|
108
|
+
QField.props.filled = {
|
|
109
|
+
type: QField.props.filled,
|
|
110
|
+
default: true
|
|
111
|
+
};
|
|
112
|
+
QChip.props.square = {
|
|
113
|
+
type: QChip.props.square,
|
|
114
|
+
default: true
|
|
115
|
+
};
|
|
100
116
|
};
|
|
101
117
|
export default style;
|
package/dist/theme.js
CHANGED
|
@@ -494,7 +494,7 @@ export const generateTheme = (sourceColor) => {
|
|
|
494
494
|
primary: hexFromArgb(materialTheme.schemes.light.primary),
|
|
495
495
|
secondary: hexFromArgb(materialTheme.schemes.light.secondary),
|
|
496
496
|
accent: hexFromArgb(materialTheme.schemes.light.tertiary),
|
|
497
|
-
'dark-page': hexFromArgb(materialTheme.
|
|
497
|
+
'dark-page': hexFromArgb(materialTheme.schemes.dark.surface)
|
|
498
498
|
}
|
|
499
499
|
};
|
|
500
500
|
};
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { QuasarStyle } from '../index.js';
|
|
2
2
|
declare const style: QuasarStyle;
|
|
3
|
-
export declare const setDefaultProps: ({ QBtn, QBtnDropdown, QInput, QBtnToggle }: {
|
|
3
|
+
export declare const setDefaultProps: ({ QBtn, QBtnDropdown, QBtnGroup, QInput, QBtnToggle, QSelect, QField, QChip }: {
|
|
4
4
|
QBtn: any;
|
|
5
5
|
QBtnDropdown: any;
|
|
6
|
+
QBtnGroup: any;
|
|
6
7
|
QInput: any;
|
|
7
8
|
QBtnToggle: any;
|
|
9
|
+
QSelect: any;
|
|
10
|
+
QField: any;
|
|
11
|
+
QChip: any;
|
|
8
12
|
}) => void;
|
|
9
13
|
export default style;
|
package/dist/types/theme.d.ts
CHANGED
|
@@ -365,6 +365,7 @@ export interface QuasarTheme {
|
|
|
365
365
|
'q-badge--outline'?: string;
|
|
366
366
|
'q-badge--rounded'?: string;
|
|
367
367
|
'q-banner'?: string;
|
|
368
|
+
'q-banner__content'?: string;
|
|
368
369
|
'q-banner--top-padding'?: string;
|
|
369
370
|
'q-banner__avatar'?: string;
|
|
370
371
|
'q-banner__actions'?: string;
|
|
@@ -411,6 +412,7 @@ export interface QuasarTheme {
|
|
|
411
412
|
'q-btn-group--spread'?: string;
|
|
412
413
|
'q-btn-toggle'?: string;
|
|
413
414
|
'q-card'?: string;
|
|
415
|
+
'q-card--filled'?: string;
|
|
414
416
|
'q-card--bordered'?: string;
|
|
415
417
|
'q-card--dark'?: string;
|
|
416
418
|
'q-card__section'?: string;
|
|
@@ -456,6 +458,7 @@ export interface QuasarTheme {
|
|
|
456
458
|
'q-message-text-content--sent'?: string;
|
|
457
459
|
'q-message-text'?: string;
|
|
458
460
|
'q-checkbox'?: string;
|
|
461
|
+
'q-checkbox__label'?: string;
|
|
459
462
|
'q-checkbox__native'?: string;
|
|
460
463
|
'q-checkbox__bg'?: string;
|
|
461
464
|
'q-checkbox__icon-container'?: string;
|
|
@@ -712,6 +715,7 @@ export interface QuasarTheme {
|
|
|
712
715
|
'q-drawer__backdrop'?: string;
|
|
713
716
|
'q-drawer__opener'?: string;
|
|
714
717
|
'q-page'?: string;
|
|
718
|
+
'q-page-sticky'?: string;
|
|
715
719
|
'q-page-sticky--shrink'?: string;
|
|
716
720
|
'q-body--layout-animate'?: string;
|
|
717
721
|
'q-body--drawer-toggle'?: string;
|
|
@@ -887,6 +891,7 @@ export interface QuasarTheme {
|
|
|
887
891
|
'q-splitter__before'?: string;
|
|
888
892
|
'q-splitter__after'?: string;
|
|
889
893
|
'q-stepper'?: string;
|
|
894
|
+
'q-stepper__label'?: string;
|
|
890
895
|
'q-stepper__title'?: string;
|
|
891
896
|
'q-stepper__caption'?: string;
|
|
892
897
|
'q-stepper__dot'?: string;
|
package/package.json
CHANGED
package/src/core/dark.unocss.ts
CHANGED
|
@@ -12,7 +12,10 @@ body.body--dark {
|
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
const shortcuts: UserShortcuts<QuasarTheme> = [
|
|
15
|
-
[
|
|
15
|
+
[
|
|
16
|
+
/^q-dark$/,
|
|
17
|
+
([, c], { theme }) => `dark:text-dark-on-surface bg-dark-surface`
|
|
18
|
+
]
|
|
16
19
|
]
|
|
17
20
|
|
|
18
21
|
export { preflights, shortcuts }
|
package/src/core/flex.unocss.ts
CHANGED
|
@@ -13,6 +13,8 @@ const colGutter = {
|
|
|
13
13
|
xl: 12
|
|
14
14
|
} as const
|
|
15
15
|
|
|
16
|
+
const sizes = ['none', 'xs', 'sm', 'md', 'lg', 'xl']
|
|
17
|
+
|
|
16
18
|
const shortcuts: UserShortcuts<QuasarTheme> = [
|
|
17
19
|
[
|
|
18
20
|
/^row$/,
|
|
@@ -25,18 +27,26 @@ const shortcuts: UserShortcuts<QuasarTheme> = [
|
|
|
25
27
|
`flex flex-col flex-wrap flex-auto [&.reverse]:(flex-col-reverse)`
|
|
26
28
|
],
|
|
27
29
|
[
|
|
28
|
-
/^col(?:-)?(none|xs|sm|md|lg|xl)?(?:-)?([2-9]|1[0-2]?)?$/,
|
|
30
|
+
/^col(?:-)?(none|xs|sm|md|lg|xl|all|auto|grow)?(?:-)?([2-9]|1[0-2]?)?$/,
|
|
29
31
|
([, size, nr], { theme }) => {
|
|
32
|
+
const classes = ['w-auto max-w-full']
|
|
30
33
|
if (size && nr) {
|
|
31
|
-
|
|
34
|
+
classes.push(`${size}:basis-${nr}/12)`)
|
|
32
35
|
} else if (nr) {
|
|
33
|
-
|
|
34
|
-
} else if (size) {
|
|
35
|
-
|
|
36
|
+
classes.push(`basis-${nr}/12`)
|
|
37
|
+
} else if (size === 'all') {
|
|
38
|
+
classes.push('basis-12/12')
|
|
39
|
+
} else if (size === 'auto') {
|
|
40
|
+
classes.push('basis-auto')
|
|
41
|
+
} else if (sizes.includes(size)) {
|
|
42
|
+
classes.push(`${size}:basis-auto ${size}:grow`)
|
|
43
|
+
} else if (size === 'grow' || size === void 0) {
|
|
44
|
+
classes.push('grow')
|
|
36
45
|
}
|
|
37
|
-
return
|
|
46
|
+
return classes.join(' ')
|
|
38
47
|
}
|
|
39
48
|
],
|
|
49
|
+
|
|
40
50
|
[
|
|
41
51
|
/^q-col-gutter-(none|xs|sm|md|lg|xl)$/,
|
|
42
52
|
([, size], { theme }) =>
|
package/src/core/index.ts
CHANGED
|
@@ -315,6 +315,16 @@ font-family: inherit;
|
|
|
315
315
|
margin: 0;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
html, body, #q-app {
|
|
319
|
+
width: 100%;
|
|
320
|
+
direction: ltr;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
body {
|
|
324
|
+
min-width: 100px;
|
|
325
|
+
min-height: 100%;
|
|
326
|
+
}
|
|
327
|
+
|
|
318
328
|
/* beasties:include end */`
|
|
319
329
|
}
|
|
320
330
|
] as Preflight<QuasarTheme>[]
|