icon.css 510 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. svg.ck-icon {
  6. font-size: 1em;
  7. vertical-align: middle;
  8. color: inherit;
  9. /* Inherit cursor style (#5). */
  10. cursor: inherit;
  11. /* This will prevent blurry icons on Firefox. See #340. */
  12. will-change: transform;
  13. & * {
  14. /* Inherit cursor style (#5). */
  15. cursor: inherit;
  16. /* Allows dynamic coloring of the icons. */
  17. color: inherit;
  18. /* Needed by FF. */
  19. fill: currentColor;
  20. }
  21. }