8
0

icon.scss 555 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. /**
  4. * Default width/height of an icon.
  5. */
  6. $ck-icon-size: 20px;
  7. svg.ck-icon {
  8. min-width: $ck-icon-size;
  9. min-height: $ck-icon-size;
  10. font-size: 1em;
  11. vertical-align: middle;
  12. color: inherit;
  13. // Inherit cursor style (#5).
  14. cursor: inherit;
  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. }