| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- @import "../tooltip/mixins/_tooltip.css";
- .ck.ck-dropdown {
- display: inline-block;
- position: relative;
- & .ck-dropdown__arrow {
- pointer-events: none;
- z-index: var(--ck-z-default);
- }
- /* Dropdown button should span horizontally, e.g. in vertical toolbars */
- & .ck-button.ck-dropdown__button {
- width: 100%;
- /* Disable main button's tooltip when the dropdown is open. Otherwise the panel may
- partially cover the tooltip */
- &.ck-on {
- @mixin ck-tooltip_disabled;
- }
- }
- & .ck-dropdown__panel {
- /* This is to get rid of flickering when the tooltip is shown under the panel,
- which looks like the panel moves vertically a pixel down and up. */
- -webkit-backface-visibility: hidden;
- display: none;
- z-index: var(--ck-z-modal);
- position: absolute;
- &.ck-dropdown__panel-visible {
- display: inline-block;
- /* This will prevent blurry icons in dropdown on Firefox. See #340. */
- will-change: transform;
- }
- &.ck-dropdown__panel_ne,
- &.ck-dropdown__panel_nw {
- bottom: 100%;
- }
- &.ck-dropdown__panel_se,
- &.ck-dropdown__panel_sw {
- transform: translate3d( 0, 100%, 0 );
- }
- &.ck-dropdown__panel_ne,
- &.ck-dropdown__panel_se {
- left: 0px;
- }
- &.ck-dropdown__panel_nw,
- &.ck-dropdown__panel_sw {
- right: 0px;
- }
- }
- }
|