balloonpanel.scss 726 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-balloon-panel {
  4. @include ck-unselectable();
  5. display: none;
  6. position: absolute;
  7. z-index: ck-z( 'modal' );
  8. &:before,
  9. &:after {
  10. content: "";
  11. position: absolute;
  12. }
  13. &:before {
  14. z-index: ck-z();
  15. }
  16. &:after {
  17. z-index: ck-z( 'default', 1 );
  18. }
  19. &_arrow_s,
  20. &_arrow_se,
  21. &_arrow_sw {
  22. &:before {
  23. z-index: ck-z( 'default' );
  24. }
  25. &:after {
  26. z-index: ck-z( 'default', 1 );
  27. }
  28. }
  29. &_arrow_n,
  30. &_arrow_ne,
  31. &_arrow_nw {
  32. &:before {
  33. z-index: ck-z( 'default' );
  34. }
  35. &:after {
  36. z-index: ck-z( 'default', 1 );
  37. }
  38. }
  39. &_visible {
  40. display: block;
  41. }
  42. }