| 1234567891011121314151617181920212223 |
- /*
- * 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-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-table-form__action-row {
- & .ck-button-save,
- & .ck-button-cancel {
- justify-content: center;
- }
- }
- }
|