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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # selector-pseudo-element-case
  2. Specify lowercase or uppercase for pseudo-element selectors.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a::before {}
  6. /** ↑
  7. * This pseudo-element 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:Before {}
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. a:bEfOrE {}
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a:BEFORE {}
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. a::Before {}
  29. ```
  30. <!-- prettier-ignore -->
  31. ```css
  32. a::bEfOrE {}
  33. ```
  34. <!-- prettier-ignore -->
  35. ```css
  36. a::BEFORE {}
  37. ```
  38. <!-- prettier-ignore -->
  39. ```css
  40. input::-MOZ-PLACEHOLDER {}
  41. ```
  42. The following patterns are _not_ considered violations:
  43. <!-- prettier-ignore -->
  44. ```css
  45. a:before {}
  46. ```
  47. <!-- prettier-ignore -->
  48. ```css
  49. a::before {}
  50. ```
  51. <!-- prettier-ignore -->
  52. ```css
  53. input::-moz-placeholder {}
  54. ```
  55. ### `"upper"`
  56. The following patterns are considered violations:
  57. <!-- prettier-ignore -->
  58. ```css
  59. a:Before {}
  60. ```
  61. <!-- prettier-ignore -->
  62. ```css
  63. a:bEfOrE {}
  64. ```
  65. <!-- prettier-ignore -->
  66. ```css
  67. a:BEFORE {}
  68. ```
  69. <!-- prettier-ignore -->
  70. ```css
  71. a::Before {}
  72. ```
  73. <!-- prettier-ignore -->
  74. ```css
  75. a::bEfOrE {}
  76. ```
  77. <!-- prettier-ignore -->
  78. ```css
  79. a::before {}
  80. ```
  81. <!-- prettier-ignore -->
  82. ```css
  83. input::-moz-placeholder {}
  84. ```
  85. The following patterns are _not_ considered violations:
  86. <!-- prettier-ignore -->
  87. ```css
  88. a:BEFORE {}
  89. ```
  90. <!-- prettier-ignore -->
  91. ```css
  92. a::BEFORE {}
  93. ```
  94. <!-- prettier-ignore -->
  95. ```css
  96. input::-MOZ-PLACEHOLDER {}
  97. ```