UNPKG

734 BCSSView Raw
1/*
2 * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5
6.ck.ck-image-insert-form {
7 &:focus {
8 /* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
9 outline: none;
10 }
11}
12
13.ck.ck-form__row {
14 display: flex;
15 flex-direction: row;
16 flex-wrap: nowrap;
17 justify-content: space-between;
18
19 /* Ignore labels that work as fieldset legends */
20 & > *:not(.ck-label) {
21 flex-grow: 1;
22 }
23
24 &.ck-image-insert-form__action-row {
25 margin-top: var(--ck-spacing-standard);
26
27 & .ck-button-save,
28 & .ck-button-cancel {
29 justify-content: center;
30 }
31
32 & .ck-button .ck-button__label {
33 color: var(--ck-color-text);
34 }
35 }
36}