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 748B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # selector-attribute-operator-blacklist
  2. **_Deprecated: Instead use the [`selector-attribute-operator-disallowed-list`](../selector-attribute-operator-disallowed-list/README.md) rule._**
  3. Specify a list of disallowed attribute operators.
  4. <!-- prettier-ignore -->
  5. ```css
  6. [target="_blank"] {}
  7. /** ↑
  8. * This operator */
  9. ```
  10. ## Options
  11. `array|string`: `["array", "of", "operators"]|"operator"`
  12. Given:
  13. ```
  14. ["*="]
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. [class*="test"] {}
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. [target] {}
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. [target="_blank"] {}
  29. ```
  30. <!-- prettier-ignore -->
  31. ```css
  32. [class|="top"] {}
  33. ```