Default.css 875 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* https://svgwg.org/svg2-draft/styling.html#UAStyleSheet */
  2. @namespace url(http://www.w3.org/2000/svg);
  3. @namespace xml url(http://www.w3.org/XML/1998/namespace);
  4. svg:not(:root), image, marker, pattern, symbol { overflow: hidden; }
  5. *:not(svg),
  6. *:not(foreignObject) > svg {
  7. transform-origin: 0 0;
  8. }
  9. *[xml|space=preserve] {
  10. text-space-collapse: preserve-spaces;
  11. }
  12. /* FIXME: Allow setting the rest of these to `display: none`.
  13. Currently that breaks <use> and <mask> and probably others. */
  14. desc, title, metadata,
  15. pattern, linearGradient, radialGradient,
  16. script, style {
  17. display: none !important;
  18. }
  19. /*
  20. defs,
  21. clipPath, mask, marker,
  22. desc, title, metadata,
  23. pattern, linearGradient, radialGradient,
  24. script, style,
  25. symbol {
  26. display: none !important;
  27. }
  28. */
  29. :host(use) > symbol {
  30. display: inline !important;
  31. }
  32. :link, :visited {
  33. cursor: pointer;
  34. }