formheader.css 567 B

1234567891011121314151617181920
  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. :root {
  6. --ck-table-form-header-height: 38px;
  7. }
  8. .ck.ck-form__header {
  9. display: flex;
  10. flex-direction: row;
  11. flex-wrap: nowrap;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: var(--ck-spacing-small) var(--ck-spacing-large);
  15. height: var(--ck-table-form-header-height);
  16. line-height: var(--ck-table-form-header-height);
  17. border-bottom: 1px solid var(--ck-color-base-border);
  18. }