formrow.css 749 B

123456789101112131415161718192021222324252627282930313233343536
  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. @import "@ckeditor/ckeditor5-ui/theme/mixins/_dir.css";
  6. .ck.ck-form__row {
  7. padding: var(--ck-spacing-standard) var(--ck-spacing-large) 0;
  8. /* Ignore labels that work as fieldset legends */
  9. & > *:not(.ck-label) {
  10. & + * {
  11. @mixin ck-dir ltr {
  12. margin-left: var(--ck-spacing-large);
  13. }
  14. @mixin ck-dir rtl {
  15. margin-right: var(--ck-spacing-large);
  16. }
  17. }
  18. }
  19. & > .ck-label {
  20. width: 100%;
  21. min-width: 100%;
  22. }
  23. &.ck-table-form__action-row {
  24. margin-top: var(--ck-spacing-large);
  25. & .ck-button .ck-button__label {
  26. color: var(--ck-color-text);
  27. }
  28. }
  29. }