Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md b/assets/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md
deleted file mode 100644
index 9295031..0000000
--- a/assets/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# media-feature-name-no-vendor-prefix
-
-Disallow vendor prefixes for media feature names.
-
-```css
-@media (-webkit-min-device-pixel-ratio: 1) {}
-/** ↑
- * This prefixe */
-```
-
-Right now this rule simply checks for prefixed *resolutions*.
-
-## Options
-
-### `true`
-
-The following patterns are considered violations:
-
-```css
-@media (-webkit-min-device-pixel-ratio: 1) {}
-```
-
-```css
-@media (min--mox-device-pixel-ratio: 1) {}
-```
-
-```css
-@media (-o-max-device-pixel-ratio: 1/1) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@media (min-resolution: 96dpi) {}
-```
-
-```css
-@media (max-resolution: 900dpi) {}
-```