icon.css 424 B

123456789101112131415161718192021222324
  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. & * {
  12. /* Inherit cursor style (#5). */
  13. cursor: inherit;
  14. /* Allows dynamic coloring of the icons. */
  15. color: inherit;
  16. /* Needed by FF. */
  17. fill: currentColor;
  18. }
  19. }