| 12345678910111213141516171819202122232425262728 |
- /*
- * 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-dropdown__color-picker-button .ck-dropdown__arrow {
- display: none;
- }
- }
- }
|