// 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; * { color: inherit; // allows dynamic coloring of the icons fill: currentColor; // needed by Webkit/Blink } } .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; &-left { float: left; margin-right: ck-spacing( 'small' ); } &-right { float: right; margin-left: ck-spacing( 'small' ); } * { color: inherit; // allows dynamic coloring of the icons fill: currentColor; // needed by FF } use { width: $ck-icon-size; height: $ck-icon-size; } }