8
0

icon.css 772 B

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