| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- .ck.ck-input-color {
- width: 100%;
- display: flex;
- & > input.ck.ck-input-text {
- min-width: auto;
- flex-grow: 1;
- &:active,
- &:focus {
- z-index: var(--ck-z-default);
- }
- }
- & > div.ck.ck-dropdown {
- min-width: auto;
- /* This dropdown has no arrow but a color preview instead. */
- & > .ck-input-color__button .ck-dropdown__arrow {
- display: none;
- }
- }
- & .ck.ck-input-color__button {
- & .ck.ck-input-color__button__preview {
- position: relative;
- overflow: hidden;
- & > .ck.ck-input-color__button__preview__no-color-indicator {
- position: absolute;
- display: block;
- }
- }
- }
- }
|