| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- /**
- * Default width/height of an icon.
- *
- * @access public
- */
- $ck-icon-size: 20px;
- .ck-icon-manager-sprite {
- display: none;
- * {
- // Allows dynamic coloring of the icons.
- color: inherit;
- // Needed by Webkit/Blink.
- fill: currentColor;
- }
- }
- .ck-icon {
- min-width: $ck-icon-size;
- min-height: $ck-icon-size;
- width: #{$ck-icon-size / $ck-font-size-base}em;
- height: #{$ck-icon-size / $ck-font-size-base}em;
- 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;
- }
- }
|