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 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # selector-pseudo-class-case
  2. Specify lowercase or uppercase for pseudo-class selectors.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a:hover {}
  6. /** ↑
  7. * This pseudo-class selector */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  10. ## Options
  11. `string`: `"lower"|"upper"`
  12. ### `"lower"`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. a:Hover {}
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. a:hOvEr {}
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a:HOVER {}
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. :ROOT {}
  29. ```
  30. <!-- prettier-ignore -->
  31. ```css
  32. :-MS-INPUT-PLACEHOLDER {}
  33. ```
  34. The following patterns are _not_ considered violations:
  35. <!-- prettier-ignore -->
  36. ```css
  37. a:hover {}
  38. ```
  39. <!-- prettier-ignore -->
  40. ```css
  41. :root {}
  42. ```
  43. <!-- prettier-ignore -->
  44. ```css
  45. :-ms-input-placeholder {}
  46. ```
  47. ### `"upper"`
  48. The following patterns are considered violations:
  49. <!-- prettier-ignore -->
  50. ```css
  51. a:Hover {}
  52. ```
  53. <!-- prettier-ignore -->
  54. ```css
  55. a:hOvEr {}
  56. ```
  57. <!-- prettier-ignore -->
  58. ```css
  59. a:hover {}
  60. ```
  61. <!-- prettier-ignore -->
  62. ```css
  63. :root {}
  64. ```
  65. <!-- prettier-ignore -->
  66. ```css
  67. :-ms-input-placeholder {}
  68. ```
  69. The following patterns are _not_ considered violations:
  70. <!-- prettier-ignore -->
  71. ```css
  72. a:HOVER {}
  73. ```
  74. <!-- prettier-ignore -->
  75. ```css
  76. :ROOT {}
  77. ```
  78. <!-- prettier-ignore -->
  79. ```css
  80. :-MS-INPUT-PLACEHOLDER {}
  81. ```