| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * 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;
- padding: var(--ck-spacing-standard) var(--ck-spacing-large) 0;
- /* Ignore labels that work as fieldset legends */
- & > *:not(.ck-label) {
- flex-grow: 1;
- & + * {
- margin-left: var(--ck-spacing-large);
- }
- }
- & > .ck-label {
- width: 100%;
- min-width: 100%;
- }
- &.ck-table-form__action-row {
- margin-top: var(--ck-spacing-large);
- & .ck-button-save,
- & .ck-button-cancel {
- justify-content: center;
- }
- & .ck-button .ck-button__label {
- color: var(--ck-color-text);
- }
- }
- }
|