formrow.css 490 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .ck.ck-form__row {
  6. display: flex;
  7. flex-direction: row;
  8. flex-wrap: nowrap;
  9. justify-content: space-between;
  10. /* Ignore labels that work as fieldset legends */
  11. & > *:not(.ck-label) {
  12. flex-grow: 1;
  13. }
  14. &.ck-table-form__action-row {
  15. & .ck-button-save,
  16. & .ck-button-cancel {
  17. justify-content: center;
  18. }
  19. }
  20. }