fakepanel.css 480 B

1234567891011121314151617181920212223
  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-fake-panel {
  6. position: absolute;
  7. /* Fake panels should be placed under main balloon content. */
  8. z-index: calc(var(--ck-z-modal) - 1);
  9. }
  10. .ck .ck-fake-panel div {
  11. position: absolute;
  12. }
  13. .ck .ck-fake-panel div:nth-child( 1 ) {
  14. z-index: 2;
  15. }
  16. .ck .ck-fake-panel div:nth-child( 2 ) {
  17. z-index: 1;
  18. }