| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_button.scss';
- .ck-editor-toolbar {
- .ck-button {
- border-width: 0;
- &:not(:hover):not(:focus):not(.ck-on),
- &.ck-disabled {
- background: ck-color( 'editor-toolbar-background' );
- }
- &.ck-on {
- @include ck-button-colors( 'editor-toolbar-button-background', 'button-default-border', -10 );
- }
- }
- .ck-button.ck-dropdown__button {
- border-width: 1px;
- &:not(:hover):not(:focus):not(.ck-on) {
- background: ck-color( 'editor-dropdown-background' );
- }
- }
- .ck-toolbar-container & {
- background: ck-color( 'editor-toolbar-background' );
- }
- }
- .ck-editor-toolbar-container.ck-balloon-panel_arrow {
- &_n,
- &_ne,
- &_nw {
- &:after {
- border-bottom-color: ck-color( 'editor-toolbar-background' );
- }
- }
- &_s,
- &_se,
- &_sw {
- &:after {
- border-top-color: ck-color( 'editor-toolbar-background' );
- }
- }
- }
|