Skip to content

Commit ba1662e

Browse files
committed
Rename media features and files
1 parent f7c3c5c commit ba1662e

40 files changed

+81
-81
lines changed

.DS_Store

6 KB
Binary file not shown.

features/color-gamut.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: color-gamut media query
2+
description: The `color-gamut` media query sets styles based on the colors a device can display. Values are `srgb` if the device can display at least sRGB, `p3` if the device can display at least Display P3, and `rec2020` if the device can display at least REC. 2020.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#color-gamut
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.color-gamut

features/media-queries-color-gamut.yml.dist features/color-gamut.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-color-gamut.yml
1+
# Generated from: color-gamut.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/display-mode.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: display-mode media query
2+
description: The `display-mode` CSS media query sets styles based on whether the web page is in `fullscreen`, `standalone`, `minimal-ui,` `browser`, or `picture-in-picture` mode.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#display-modes
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.display-mode
7+
- css.at-rules.media.display-mode.picture-in-picture

features/media-queries-display-mode.yml.dist features/display-mode.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-display-mode.yml
1+
# Generated from: display-mode.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/dynamic-range.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: dynamic-range media query
2+
description: The `dynamic-range` CSS media query sets styles based on whether a device can display at least `standard` range colors or at least `high` range colors. Non-visual devices will match neither.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#dynamic-range
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.dynamic-range

features/media-queries-dynamic-range.yml.dist features/dynamic-range.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-dynamic-range.yml
1+
# Generated from: dynamic-range.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/media-queries-interaction.yml features/interaction.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: Interaction media features
2-
description: "The `pointer`, `any-pointer`, `hover`, and `any-hover` CSS media features set styles based on the presence of pointing devices and their ability to hover over elements. For example, a smartphone device would match the `(hover: none) and (pointer: coarse)` media feature."
1+
name: Interaction media queries
2+
description: "The `pointer`, `any-pointer`, `hover`, and `any-hover` CSS media queries set styles based on the presence of pointing devices and their ability to hover over elements. For example, a smartphone device would match the `(hover: none) and (pointer: coarse)` media query."
33
spec: https://drafts.csswg.org/mediaqueries-5/#mf-interaction
44
caniuse: css-media-interaction
55
group: media-queries

features/media-queries-interaction.yml.dist features/interaction.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-interaction.yml
1+
# Generated from: interaction.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/inverted-colors.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: inverted-colors media query
2+
description: The `inverted-colors` CSS media query sets styles based on whether the user has inverted all colors, such as with mobile accessibility settings.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#inverted
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.inverted-colors

features/media-queries-inverted-colors.yml.dist features/inverted-colors.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-inverted-colors.yml
1+
# Generated from: inverted-colors.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/media-queries-color-gamut.yml

-6
This file was deleted.

features/media-queries-display-mode.yml

-7
This file was deleted.

features/media-queries-dynamic-range.yml

-6
This file was deleted.

features/media-queries-inverted-colors.yml

-6
This file was deleted.

features/media-queries-prefers-contrast.yml

-6
This file was deleted.

features/media-queries-prefers-reduced-data.yml

-6
This file was deleted.

features/media-queries-scripting.yml

-5
This file was deleted.

features/media-queries-update.yml

-6
This file was deleted.

features/media-queries-video-dynamic-range.yml

-6
This file was deleted.

features/media-query-range-syntax.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Media query range syntax
2-
description: "The range syntax of CSS media queries allows you to use mathematical comparison operators such as `<`, `>`, `<=`, and `>=` to define a range of values for a media feature. For example, `(400px < width < 1000px)` returns true if the viewport width is between 400px and 1000px."
2+
description: "The range syntax of CSS media queries allows you to use mathematical comparison operators such as `<`, `>`, `<=`, and `>=` to define a range of values for a media query. For example, `(400px < width < 1000px)` returns true if the viewport width is between 400px and 1000px."
33
caniuse: css-media-range-syntax
44
group: media-queries
55
spec: https://drafts.csswg.org/mediaqueries-4/#mq-range-context

features/media-queries-overflow.yml features/overflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: Overflow media features
2-
description: The `overflow-block` and `overflow-inline` CSS media features set styles based on the way a device displays content that's larger than the viewport or page area. For example, a laptop lets users scroll to reveal content, while a printer displays overflowing content on additional pages.
1+
name: Overflow media queries
2+
description: The `overflow-block` and `overflow-inline` CSS media queries set styles based on the way a device displays content that's larger than the viewport or page area. For example, a laptop lets users scroll to reveal content, while a printer displays overflowing content on additional pages.
33
spec:
44
- https://drafts.csswg.org/mediaqueries-5/#mf-overflow-block
55
- https://drafts.csswg.org/mediaqueries-5/#mf-overflow-inline

features/media-queries-overflow.yml.dist features/overflow.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-overflow.yml
1+
# Generated from: overflow.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/prefers-color-scheme.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: prefers-color-scheme media feature
2-
description: The `prefers-color-scheme` CSS media feature sets styles based on the requested color scheme, light or dark.
1+
name: prefers-color-scheme media query
2+
description: The `prefers-color-scheme` CSS media query sets styles based on the requested color scheme, light or dark.
33
spec: https://drafts.csswg.org/mediaqueries-5/#prefers-color-scheme
44
group: media-queries
55
status:

features/prefers-contrast.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: prefers-contrast media query
2+
description: The `prefers-contrast` CSS media query sets styles based on whether the user prefers more or less contrast.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#prefers-contrast
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.prefers-contrast

features/media-queries-prefers-contrast.yml.dist features/prefers-contrast.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-prefers-contrast.yml
1+
# Generated from: prefers-contrast.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/prefers-reduced-data.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: prefers-reduced-data media query
2+
description: The `prefers-reduced-data` CSS media query detects whether the user has a preference for using less internet traffic. For example, you can use this media query to avoid loading large font files and use a system font instead.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-data
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.prefers-reduced-data

features/media-queries-prefers-reduced-data.yml.dist features/prefers-reduced-data.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-prefers-reduced-data.yml
1+
# Generated from: prefers-reduced-data.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/media-queries-prefers-reduced-motion.yml features/prefers-reduced-motion.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: prefers-reduced-motion media feature
2-
description: The `prefers-reduced-motion` CSS media feature sets styles based on whether the user prefers to minimize the amount of non-essential animations on the device.
1+
name: prefers-reduced-motion media query
2+
description: The `prefers-reduced-motion` CSS media query sets styles based on whether the user prefers to minimize the amount of non-essential animations on the device.
33
spec:
44
- https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-motion
55
- https://wicg.github.io/user-preference-media-features-headers/#sec-ch-prefers-reduced-motion

features/media-queries-prefers-reduced-motion.yml.dist features/prefers-reduced-motion.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-prefers-reduced-motion.yml
1+
# Generated from: prefers-reduced-motion.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/media-queries-prefers-reduced-transparency.yml features/prefers-reduced-transparency.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: prefers-reduced-transparency media feature
2-
description: The `prefers-reduced-transparency` CSS media feature sets styles based on whether the user prefers to reduce the amount of transparent effects on their device, for example to improve contrast and readability.
1+
name: prefers-reduced-transparency media query
2+
description: The `prefers-reduced-transparency` CSS media query sets styles based on whether the user prefers to reduce the amount of transparent effects on their device, for example to improve contrast and readability.
33
spec:
44
- https://drafts.csswg.org/mediaqueries-5/#prefers-reduced-transparency
55
- https://wicg.github.io/user-preference-media-features-headers/#sec-ch-prefers-reduced-transparency

features/media-queries-prefers-reduced-transparency.yml.dist features/prefers-reduced-transparency.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-prefers-reduced-transparency.yml
1+
# Generated from: prefers-reduced-transparency.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/media-queries-resolution.yml features/resolution.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: resolution media feature
2-
description: The `resolution` CSS media feature sets styles based on the pixel density, or how many pixels a device uses to display a single CSS pixel.
1+
name: resolution media query
2+
description: The `resolution` CSS media query sets styles based on the pixel density, or how many pixels a device uses to display a single CSS pixel.
33
spec: https://drafts.csswg.org/mediaqueries-5/#resolution
44
caniuse: css-media-resolution
55
compat_features:

features/media-queries-resolution.yml.dist features/resolution.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-resolution.yml
1+
# Generated from: resolution.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/scripting.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: scripting media query
2+
description: The `scripting` CSS media query sets styles based on whether scripting such as JavaScript is available. Values are `enabled` if scripting is available, `initial-only` if scripting is only available on page load (for example, printed or server-rendered content), or `none`.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#scripting
4+
compat_features:
5+
- css.at-rules.media.scripting

features/media-queries-scripting.yml.dist features/scripting.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-scripting.yml
1+
# Generated from: scripting.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/update.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: Update frequency media query
2+
description: The `update` CSS media query sets styles based on whether and how fast the user's device can modify display after it has been rendered.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#update
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.update

features/media-queries-update.yml.dist features/update.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-update.yml
1+
# Generated from: update.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

features/video-dynamic-range.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: video-dynamic-range media query
2+
description: The `video-dynamic-range` CSS media query sets styles based on whether a device can display video with at least `standard` range colors or at least `high` range colors. Non-visual devices will match neither.
3+
spec: https://drafts.csswg.org/mediaqueries-5/#dynamic-range
4+
group: media-queries
5+
compat_features:
6+
- css.at-rules.media.video-dynamic-range

features/media-queries-video-dynamic-range.yml.dist features/video-dynamic-range.yml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated from: media-queries-video-dynamic-range.yml
1+
# Generated from: video-dynamic-range.yml
22
# Do not edit this file by hand. Edit the source file instead!
33

44
status:

0 commit comments

Comments
 (0)