| 1234567891011121314151617 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- .ck.ck-sticky-panel {
- & .ck-sticky-panel__content_sticky {
- z-index: var(--ck-z-modal); /* #315 */
- position: fixed;
- top: 0;
- }
- & .ck-sticky-panel__content_sticky_bottom-limit {
- top: auto;
- position: absolute;
- }
- }
|