| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- .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;
- }
|