htmlembed.css 772 B

12345678910111213141516171819202122232425262728293031
  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. /* The feature container. */
  6. .ck-widget.raw-html-embed {
  7. /* Give the embed some air. */
  8. margin: 1em auto;
  9. position: relative;
  10. /* ----- Emebed label in the upper left corner ----------------------------------------------- */
  11. &::before {
  12. position: absolute;
  13. }
  14. /* ----- Emebed internals --------------------------------------------------------------------- */
  15. /* The switch mode button wrapper. */
  16. & .raw-html-embed__buttons-wrapper {
  17. position: absolute;
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. }
  22. .ck-content .raw-html-embed {
  23. /* Give the embed some air. */
  24. margin: 1em auto;
  25. }