splitbutton.css 546 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. @import "../tooltip/mixins/_tooltip.css";
  6. .ck.ck-splitbutton {
  7. /* Enable font size inheritance, which allows fluid UI scaling. */
  8. font-size: inherit;
  9. & .ck-splitbutton__action:focus {
  10. z-index: calc(var(--ck-z-default) + 1);
  11. }
  12. /* Disable tooltips for the buttons when the button is "open" */
  13. &.ck-splitbutton_open > .ck-button {
  14. @mixin ck-tooltip_disabled;
  15. }
  16. }