| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @import "../mixins/_rounded.css";
- :root {
- --ck-character-grid-tile-size: 24px;
- }
- .ck.ck-character-grid {
- grid-gap: 5px;
- padding: 8px;
- max-height: calc(var(--ck-character-grid-tile-size) * 6);
- overflow-y: auto;
- overflow-x: hidden;
- & .ck-character-grid__tile {
- width: var(--ck-character-grid-tile-size);
- height: var(--ck-character-grid-tile-size);
- min-width: var(--ck-character-grid-tile-size);
- min-height: var(--ck-character-grid-tile-size);
- padding: 0;
- transition: .2s ease box-shadow;
- border: 0;
- &:focus:not( .ck-disabled ),
- &:hover:not( .ck-disabled ) {
- /* Disable the default .ck-button's border ring. */
- border: 0;
- box-shadow: inset 0 0 0 1px var(--ck-color-base-background), 0 0 0 2px var(--ck-color-focus-border);
- }
- /* Make sure the glyph is rendered in the center of the button */
- & .ck-button__label {
- line-height: inherit;
- width: 100%;
- text-align: center;
- }
- }
- }
|