splitbutton.css 444 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-splitbutton-arrow {
  4. // padding-right: var(--ck-spacing-small);
  5. & svg {
  6. width: 0;
  7. min-width: 0;
  8. }
  9. &::after {
  10. content: '';
  11. width: 0;
  12. height: 0;
  13. pointer-events: none;
  14. z-index: var(--ck-z-default);
  15. position: absolute;
  16. top: 50%;
  17. transform: translate3d(-50%, -50%, 0);
  18. }
  19. }