balloonpanel.scss 758 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. display: none;
  5. position: absolute;
  6. z-index: ck-z( 'modal' );
  7. &.ck-balloon-panel_with-arrow {
  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. }
  20. &.ck-balloon-panel_arrow {
  21. &_n,
  22. &_ne,
  23. &_nw {
  24. &:before {
  25. z-index: ck-z( 'default' );
  26. }
  27. &:after {
  28. z-index: ck-z( 'default', 1 );
  29. }
  30. }
  31. &_s,
  32. &_se,
  33. &_sw {
  34. &:before {
  35. z-index: ck-z( 'default' );
  36. }
  37. &:after {
  38. z-index: ck-z( 'default', 1 );
  39. }
  40. }
  41. }
  42. &_visible {
  43. display: block;
  44. }
  45. }