| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // 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;
- &-left {
- float: left;
- margin-right: ck-spacing( 'small' );
- }
- &-right {
- float: right;
- margin-left: ck-spacing( 'small' );
- }
- * {
- // Inherit cursor style (#5).
- cursor: inherit;
- // Allows dynamic coloring of the icons.
- color: inherit;
- // Needed by FF.
- fill: currentColor;
- }
- }
|