8
0

tableproperties.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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__dimensions-row,
  9. &.ck-table-properties-form__alignment-row {
  10. padding-left: 0;
  11. padding-right: 0;
  12. }
  13. &.ck-table-properties-form__dimensions-row {
  14. & .ck-labeled-view > .ck-label {
  15. font-size: 10px;
  16. }
  17. & .ck-table-properties-form__width {
  18. margin-right: var(--ck-spacing-small);
  19. }
  20. & .ck-table-properties-form__dimension-operator {
  21. margin: 0;
  22. align-self: start;
  23. display: inline-block;
  24. height: var(--ck-ui-component-min-height);
  25. line-height: var(--ck-ui-component-min-height);
  26. }
  27. & .ck-table-properties-form__height {
  28. margin-left: var(--ck-spacing-small);
  29. }
  30. }
  31. &.ck-table-properties-form__alignment-row {
  32. & .ck.ck-toolbar {
  33. background: none;
  34. & .ck-toolbar__items > * {
  35. width: 40px;
  36. }
  37. }
  38. }
  39. }
  40. }