Skip to content

Commit db9475c

Browse files
committed
Update documentation to replace references from "applying conditionally" to "conditional queries" across multiple components for consistency and clarity.
1 parent 0375506 commit db9475c

178 files changed

Lines changed: 178 additions & 178 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

site/app/[locale]/guide/introduction/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Under the hood, Master CSS automatically adds [vendor prefixes](/guide/browser-s
1515
Hello World
1616
</h1>
1717
```
18-
[Declaring styles](/guide/style-declarations) through the `class` attribute, attaching [selector states](/guide/state-selectors), and even base them on [applying conditionally](/guide/applying-conditionally). There's no need to write any inline style sheets, including creating external CSS files; just add syntax classes in your HTML.
18+
[Declaring styles](/guide/style-declarations) through the `class` attribute, attaching [selector states](/guide/state-selectors), and even base them on [conditional queries](/guide/conditional-queries). There's no need to write any inline style sheets, including creating external CSS files; just add syntax classes in your HTML.
1919

2020
You can write atomic classes `text:center` or [abstract styles](/guide/components) `btn` based on the characteristics of your project and team.
2121

site/app/[locale]/guide/reusing-styles/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Create an abstract style using Master CSS syntaxes.
3030
<Overview />
3131

3232
### Add a style with states
33-
Create an abstract style with [state selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
33+
Create an abstract style with [state selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
3434
<Code lang="js" name="master.css.js">{require('../../../../../packages/server/tests/fixtures/add-a-style-with-states/master.css.js?raw')}</Code>
3535
(click) Try clicking the button to see the outline effect
3636
<Demo>

site/app/[locale]/reference/accent-color/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use the `accent-color:color` to set a custom accent color of user interface elem
3131
---
3232

3333
## Conditionally apply
34-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
34+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
3535
```html
3636
<div class="accent-color:red-46:hover accent-color:red-46@sm accent-color:red-46@dark accent-color:red-46@print">…</div>
3737
```

site/app/[locale]/reference/align-content/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66
## Conditionally apply
7-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
7+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
88
```html
99
<div class="align-content:normal:hover align-content:normal@sm align-content:normal@dark align-content:normal@print">…</div>
1010
```

site/app/[locale]/reference/align-items/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66
## Conditionally apply
7-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
7+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
88
```html
99
<div class="align-items:center:hover align-items:center@sm align-items:center@dark align-items:center@print">…</div>
1010
```

site/app/[locale]/reference/align-self/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66
## Conditionally apply
7-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
7+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
88
```html
99
<div class="align-self:auto:hover align-self:auto@sm align-self:auto@dark align-self:auto@print">…</div>
1010
```

site/app/[locale]/reference/animation-delay/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Overview/>
33

44
## Conditionally apply
5-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
5+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
66
```html
77
<div class="@delay:300ms:hover @delay:300ms@sm @delay:300ms@dark @delay:300ms@print">…</div>
88
```

site/app/[locale]/reference/animation-direction/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ For one-shot animations, remove `infinite`.
4242
---
4343

4444
## Conditionally apply
45-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
45+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
4646
```html
4747
<div class="@direction:normal:hover">…</div>
4848
<div class="@direction:normal@sm">…</div>

site/app/[locale]/reference/animation-duration/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Overview/>
33

44
## Conditionally apply
5-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
5+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
66
```html
77
<div class="@duration:1s:hover @duration:1s@sm @duration:1s@dark @duration:1s@print">…</div>
88
```

site/app/[locale]/reference/animation-fill-mode/content.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Simplify the native syntax using the derived symbol.
1010
---
1111

1212
## Conditionally apply
13-
Apply styles based on different states using [selectors](/guide/state-selectors) and [applying conditionally](/guide/applying-conditionally).
13+
Apply styles based on different states using [selectors](/guide/state-selectors) and [conditional queries](/guide/conditional-queries).
1414
```html
1515
<div class="@fill-mode:none:hover @fill-mode:none@sm @fill-mode:none@dark @fill-mode:none@print">…</div>
1616
```

0 commit comments

Comments
 (0)