prism-show-invisibles.css 456 B

12345678910111213141516171819202122232425262728293031323334
  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: #808080;
  12. opacity: 0.6;
  13. position: absolute;
  14. }
  15. .token.tab:not(:empty):before {
  16. content: '\21E5';
  17. }
  18. .token.cr:before {
  19. content: '\240D';
  20. }
  21. .token.crlf:before {
  22. content: '\240D\240A';
  23. }
  24. .token.lf:before {
  25. content: '\240A';
  26. }
  27. .token.space:before {
  28. content: '\00B7';
  29. }