| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- @import "../../helpers/zindex.css";
- .ck-balloon-panel {
- display: none;
- position: absolute;
- z-index: var(--ck-z-modal);
- &.ck-balloon-panel_with-arrow {
- &:before,
- &:after {
- content: "";
- position: absolute;
- }
- &:before {
- z-index: var(--ck-z-default);
- }
- &:after {
- z-index: calc(var(--ck-z-default) + 1 );
- }
- }
- &[class*="arrow_n"] {
- &:before {
- z-index: var(--ck-z-default);
- }
- &:after {
- z-index: calc(var(--ck-z-default) + 1);
- }
- }
- &[class*="arrow_s"] {
- &:before {
- z-index: var(--ck-z-default);
- }
- &:after {
- z-index: calc(var(--ck-z-default) + 1);
- }
- }
- }
- .ck-balloon-panel_visible {
- display: block;
- }
|