@steroidsjs/ckeditor5
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
33 lines (26 loc) • 610 B
CSS
/*
* Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
.ck.ck-form {
padding: 0 0 var(--ck-spacing-large);
&:focus {
/* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
outline: none;
}
& .ck.ck-input-text {
min-width: 100%;
width: 0;
}
& .ck.ck-dropdown {
min-width: 100%;
& .ck-dropdown__button {
&:not(:focus) {
border: 1px solid var(--ck-color-base-border);
}
& .ck-button__label {
width: 100%;
}
}
}
}