| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-balloon-panel {
- @include ck-unselectable();
- display: none;
- position: absolute;
- z-index: ck-z( 'modal' );
- &.ck-balloon-panel_with-arrow {
- &:before,
- &:after {
- content: "";
- position: absolute;
- }
- &:before {
- z-index: ck-z();
- }
- &:after {
- z-index: ck-z( 'default', 1 );
- }
- }
- &.ck-balloon-panel_arrow {
- &_n,
- &_ne,
- &_nw {
- &:before {
- z-index: ck-z( 'default' );
- }
- &:after {
- z-index: ck-z( 'default', 1 );
- }
- }
- &_s,
- &_se,
- &_sw {
- &:before {
- z-index: ck-z( 'default' );
- }
- &:after {
- z-index: ck-z( 'default', 1 );
- }
- }
- }
- &_visible {
- display: block;
- }
- }
|