| 12345678910111213141516171819202122232425262728293031 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- svg.ck-icon {
- font-size: 1em;
- /* Must be consistent with .ck-button__label's vertical align. Otherwise, buttons with and
- without labels (but with icons) have different sizes in Chrome */
- vertical-align: top;
- color: inherit;
- /* Inherit cursor style (#5). */
- cursor: inherit;
- /* This will prevent blurry icons on Firefox. See #340. */
- will-change: transform;
- & * {
- /* Inherit cursor style (#5). */
- cursor: inherit;
- /* Allows dynamic coloring of the icons. */
- color: inherit;
- /* Needed by FF. */
- fill: currentColor;
- }
- }
|