8
0

formrow.css 591 B

12345678910111213141516171819202122232425262728
  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. padding: var(--ck-spacing-standard) var(--ck-spacing-large) 0;
  7. /* Ignore labels that work as fieldset legends */
  8. & > *:not(.ck-label) {
  9. & + * {
  10. margin-left: var(--ck-spacing-large);
  11. }
  12. }
  13. & > .ck-label {
  14. width: 100%;
  15. min-width: 100%;
  16. }
  17. &.ck-table-form__action-row {
  18. margin-top: var(--ck-spacing-large);
  19. & .ck-button .ck-button__label {
  20. color: var(--ck-color-text);
  21. }
  22. }
  23. }