@steroidsjs/ckeditor5
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
37 lines (30 loc) • 772 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-image-insert-form {
&:focus {
/* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
outline: none;
}
}
.ck.ck-form__row {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
/* Ignore labels that work as fieldset legends */
& > *:not(.ck-label) {
flex-grow: 1;
}
&.ck-image-insert-form__action-row {
margin-top: var(--ck-spacing-standard);
& .ck-button-save,
& .ck-button-cancel {
justify-content: center;
}
& .ck-button .ck-button__label {
color: var(--ck-color-text);
}
}
}