imageinsertformrowview.css 736 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. .ck.ck-image-insert-form {
  6. &:focus {
  7. /* See: https://github.com/ckeditor/ckeditor5/issues/4773 */
  8. outline: none;
  9. }
  10. }
  11. .ck.ck-form__row {
  12. display: flex;
  13. flex-direction: row;
  14. flex-wrap: nowrap;
  15. justify-content: space-between;
  16. /* Ignore labels that work as fieldset legends */
  17. & > *:not(.ck-label) {
  18. flex-grow: 1;
  19. }
  20. &.ck-image-insert-form__action-row {
  21. margin-top: var(--ck-spacing-standard);
  22. & .ck-button-save,
  23. & .ck-button-cancel {
  24. justify-content: center;
  25. }
  26. & .ck-button .ck-button__label {
  27. color: var(--ck-color-text);
  28. }
  29. }
  30. }