| 1234567891011121314151617181920212223 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-splitbutton-arrow {
- // padding-right: var(--ck-spacing-small);
- & svg {
- width: 0;
- min-width: 0;
- }
- &::after {
- content: '';
- width: 0;
- height: 0;
- pointer-events: none;
- z-index: var(--ck-z-default);
- position: absolute;
- top: 50%;
- transform: translate3d(-50%, -50%, 0);
- }
- }
|