8
0

splitbutton.scss 424 B

12345678910111213141516171819202122
  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: 2 * ck-spacing();
  5. svg.icon {
  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: ck-z();
  15. position: absolute;
  16. top: 50%;
  17. transform: translate3d(-50%, -50%, 0);
  18. }
  19. }