classiceditor.css 798 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. @import "../mixins/_rounded.css";
  6. .ck-editor__top {
  7. & .ck-sticky-panel {
  8. & .ck-toolbar {
  9. @mixin ck-rounded-corners {
  10. border-bottom-left-radius: 0;
  11. border-bottom-right-radius: 0;
  12. }
  13. /* https://github.com/ckeditor/ckeditor5-editor-classic/issues/62 */
  14. background: var(--ck-color-editor-toolbar-background);
  15. border-bottom-width: 0;
  16. }
  17. & .ck-sticky-panel__content_sticky .ck-toolbar {
  18. border-bottom-width: 1px;
  19. @mixin ck-rounded-corners {
  20. border-radius: 0;
  21. }
  22. }
  23. }
  24. }
  25. .ck-editor__editable {
  26. @mixin ck-rounded-corners {
  27. border-top-left-radius: 0;
  28. border-top-right-radius: 0;
  29. }
  30. border: 1px solid var(--ck-color-editor-border);
  31. }