| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- :root {
- --ck-icon-size: calc(var(--ck-line-height-base) * var(--ck-font-size-normal));
- }
- svg.ck.ck-icon {
- width: var(--ck-icon-size);
- height: var(--ck-icon-size);
- /* Multiplied by the height of the line in "px" should give SVG "viewport" dimensions */
- font-size: .8333350694em;
- 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;
- }
- }
|