| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-balloon-panel {
- 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;
- }
- }
|