tableproperties.css 580 B

1234567891011121314151617181920212223242526
  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-table-properties-form {
  6. width: 320px;
  7. & .ck-form__row {
  8. &.ck-table-properties-form__alignment-row {
  9. align-self: flex-end;
  10. padding: 0;
  11. & .ck.ck-toolbar {
  12. background: none;
  13. /* Compensate for missing input label that would push the margin (toolbar has no inputs). */
  14. margin-top: var(--ck-spacing-standard);
  15. & .ck-toolbar__items > * {
  16. width: 40px;
  17. }
  18. }
  19. }
  20. }
  21. }