tablecellproperties.css 864 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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-table-cell-properties-form {
  7. width: 320px;
  8. & .ck-form__row {
  9. &.ck-table-cell-properties-form__padding-row {
  10. padding: 0;
  11. width: 35%;
  12. }
  13. &.ck-table-cell-properties-form__alignment-row {
  14. & .ck.ck-toolbar {
  15. background: none;
  16. & .ck-button {
  17. margin: 0;
  18. @mixin ck-dir rtl {
  19. &:first-child {
  20. border-radius: var(--ck-border-radius);
  21. border-top-left-radius: 0;
  22. border-bottom-left-radius: 0;
  23. }
  24. &:last-child {
  25. border-radius: var(--ck-border-radius);
  26. border-top-right-radius: 0;
  27. border-bottom-right-radius: 0;
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }
  34. }