No Description
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.

prism-show-invisibles.css 462B

123456789101112131415161718192021222324252627282930313233
  1. .token.tab:not(:empty),
  2. .token.cr,
  3. .token.lf,
  4. .token.space {
  5. position: relative;
  6. }
  7. .token.tab:not(:empty):before,
  8. .token.cr:before,
  9. .token.lf:before,
  10. .token.space:before {
  11. color: hsl(24, 20%, 85%);
  12. position: absolute;
  13. }
  14. .token.tab:not(:empty):before {
  15. content: '\21E5';
  16. }
  17. .token.cr:before {
  18. content: '\240D';
  19. }
  20. .token.crlf:before {
  21. content: '\240D\240A';
  22. }
  23. .token.lf:before {
  24. content: '\240A';
  25. }
  26. .token.space:before {
  27. content: '\00B7';
  28. }