| 12345678910111213141516171819202122232425262728293031 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- .ck-rounded-corners .ck-splitbutton > .ck-button:not(.ck-splitbutton-arrow) {
- border-top-right-radius: unset;
- border-bottom-right-radius: unset;
- &:focus {
- z-index: calc(var(--ck-z-default) + 1);
- }
- }
- .ck-rounded-corners .ck-splitbutton > .ck-splitbutton-arrow {
- border-top-left-radius: unset;
- border-bottom-left-radius: unset;
- }
- .ck-dropdown {
- /* Enable font size inheritance, which allows fluid UI scaling. */
- font-size: inherit;
- & .ck-splitbutton .ck-splitbutton-arrow svg {
- position: static;
- top: initial;
- transform: initial;
- right: auto;
- width: var(--ck-dropdown-icon-size);
- }
- }
|