| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * 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-tooltip,
- .ck.ck-tooltip .ck-tooltip__text::after {
- position: absolute;
- /* Without this, hovering the tooltip could keep it visible. */
- pointer-events: none;
- /* This is to get rid of flickering when transitioning opacity in Chrome.
- It's weird but it works. */
- -webkit-backface-visibility: hidden;
- }
- .ck.ck-tooltip {
- /* Tooltip is hidden by default. */
- visibility: hidden;
- opacity: 0;
- display: none;
- z-index: var(--ck-z-modal);
- & .ck-tooltip__text {
- display: inline-block;
- &::after {
- content: "";
- width: 0;
- height: 0;
- }
- }
- }
|