8
0

balloonpanel.scss 788 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. &.ck-balloon-panel_with-arrow {
  9. &:before,
  10. &:after {
  11. content: "";
  12. position: absolute;
  13. }
  14. &:before {
  15. z-index: ck-z();
  16. }
  17. &:after {
  18. z-index: ck-z( 'default', 1 );
  19. }
  20. }
  21. &.ck-balloon-panel_arrow {
  22. &_n,
  23. &_ne,
  24. &_nw {
  25. &:before {
  26. z-index: ck-z( 'default' );
  27. }
  28. &:after {
  29. z-index: ck-z( 'default', 1 );
  30. }
  31. }
  32. &_s,
  33. &_se,
  34. &_sw {
  35. &:before {
  36. z-index: ck-z( 'default' );
  37. }
  38. &:after {
  39. z-index: ck-z( 'default', 1 );
  40. }
  41. }
  42. }
  43. &_visible {
  44. display: block;
  45. }
  46. }