You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/pages/introduction-to-quasar.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ Quasar comes equipped with over 40 language packs out of the box. On top of that
93
93
And finally, it’s worth mentioning the significant amount of time taken to write great, bloat-free, focused and complete documentation, so that developers can quickly pick up Quasar. We put special effort into our documentation to be sure there is no confusion.
Except for Vue, which takes half a day to pick up and will change you forever, there is no requirement for you to know the other technologies. They are all integrated and configured in Quasar for you.
Copy file name to clipboardExpand all lines: docs/src/pages/style/dark-mode.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
title: Dark Mode
3
3
desc: Handle dark mode with Quasar.
4
4
badge: v1.3+
5
+
related:
6
+
- /quasar-plugins/dark
7
+
- /style/theme-builder
5
8
---
6
9
7
10
Dark Mode is a supplemental mode that can be used to display mostly dark surfaces on the UI. The design reduces the light emitted by device screens while maintaining the minimum color contrast ratios required for readability.
@@ -24,7 +27,7 @@ You can easily switch between Dark mode and light mode (which is default) throug
24
27
25
28
## How to style your app
26
29
27
-
Since your app can be in Dark mode or not, you can easily style it by taking advantage of the `body` tag attached CSS class: `body--light` or `body--dark`. That is if you want to support both modes.
30
+
Since your app can be in Dark mode or not, you can easily style it by taking advantage of the `body` tag attached CSS class: `body--light` or `body--dark`. **That is if you want to support both modes.**
28
31
29
32
```css
30
33
.body--light {
@@ -35,3 +38,11 @@ Since your app can be in Dark mode or not, you can easily style it by taking adv
35
38
/* ... */
36
39
}
37
40
```
41
+
42
+
Should you wish to override the default Dark mode page background color:
Copy file name to clipboardExpand all lines: docs/src/pages/style/theme-builder.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@ title: Theming
3
3
desc: Theme builder for a Quasar app with which you can play with the brand colors.
4
4
components:
5
5
- theming/ThemeBuilder
6
+
related:
7
+
- /style/dark-mode
6
8
---
7
9
8
10
One of the most important parts of a website/app is to build a brand for it. First step is to choose the brand colors that you are going to use and this is what the tool below helps you with.
@@ -13,6 +15,7 @@ Click on the colored buttons besides the layout below and when you are ready, hi
13
15
14
16
<theme-builderclass="q-py-lg" />
15
17
16
-
::: tip
17
-
Sass/SCSS is only available if you have Quasar v1.1.1+ and your project is managed by Quasar CLI through @quasar/app v1.1.0+.
18
+
::: tip TIPS
19
+
* Sass/SCSS is only available if you have Quasar v1.1.1+ and your project is managed by Quasar CLI through @quasar/app v1.1.0+.
Copy file name to clipboardExpand all lines: ui/dev/components/form/checkbox.vue
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
Indeterminate
19
19
</p>
20
20
<q-checkboxv-model="indModel"toggle-indeterminate:dark="dark":dense="dense":keep-color="keepColor"label="Tap me to change between 3 states" />
21
+
<q-checkboxv-model="indModel"toggle-indeterminate:dark="dark":dense="dense":keep-color="keepColor"color="accent"label="Tap me to change between 3 states" />
0 commit comments