| 12345678910111213141516171819202122232425262728293031323334 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_fonts';
- /**
- * Default width/height of an icon. Note that it equals the default
- * height of the line of text, so e.g. it matches the height of the
- * button's label.
- */
- $ck-icon-min-size: round( $ck-font-size-base * $ck-line-height-base );
- svg.ck-icon {
- min-width: $ck-icon-min-size;
- min-height: $ck-icon-min-size;
- font-size: 1em;
- vertical-align: middle;
- color: inherit;
- // Inherit cursor style (#5).
- cursor: inherit;
- * {
- // Inherit cursor style (#5).
- cursor: inherit;
- // Allows dynamic coloring of the icons.
- color: inherit;
- // Needed by FF.
- fill: currentColor;
- }
- }
|