8
0

imageinsertformrowview.css 673 B

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