8
0

icon.css 668 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. svg.ck-icon {
  6. font-size: 1em;
  7. /* Must be consistent with .ck-button__label's vertical align. Otherwise, buttons with and
  8. without labels (but with icons) have different sizes in Chrome */
  9. vertical-align: top;
  10. color: inherit;
  11. /* Inherit cursor style (#5). */
  12. cursor: inherit;
  13. /* This will prevent blurry icons on Firefox. See #340. */
  14. will-change: transform;
  15. & * {
  16. /* Inherit cursor style (#5). */
  17. cursor: inherit;
  18. /* Allows dynamic coloring of the icons. */
  19. color: inherit;
  20. /* Needed by FF. */
  21. fill: currentColor;
  22. }
  23. }