Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 917B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # media-feature-name-no-vendor-prefix
  2. Disallow vendor prefixes for media feature names.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @media (-webkit-min-device-pixel-ratio: 1) {}
  6. /** ↑
  7. * This prefixe */
  8. ```
  9. Right now this rule simply checks for prefixed _resolutions_.
  10. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  11. ## Options
  12. ### `true`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. @media (-webkit-min-device-pixel-ratio: 1) {}
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. @media (min--mox-device-pixel-ratio: 1) {}
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. @media (-o-max-device-pixel-ratio: 1/1) {}
  25. ```
  26. The following patterns are _not_ considered violations:
  27. <!-- prettier-ignore -->
  28. ```css
  29. @media (min-resolution: 96dpi) {}
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. @media (max-resolution: 900dpi) {}
  34. ```