| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-editor-toolbar {
- // Toolbars should not react to ck-rounded-corners() mixin.
- border-radius: 0;
- .ck-button {
- border-width: 0;
- &:not(:hover):not(:focus):not(.ck-on),
- &.ck-disabled {
- background: ck-color( 'foreground' );
- }
- &.ck-on {
- @include ck-button-colors( 'foreground', -10 );
- }
- }
- .ck-dropdown__button {
- border-width: 1px;
- &:not(:hover):not(:focus):not(.ck-on) {
- background: ck-color( 'background' );
- }
- }
- .ck-toolbar-container & {
- background: ck-color( 'foreground' );
- }
- }
- .ck-editor-toolbar-container.ck-balloon-panel_arrow {
- &_n,
- &_ne,
- &_nw {
- &:after {
- border-bottom-color: ck-color( 'foreground' );
- }
- }
- &_s,
- &_se,
- &_sw {
- &:after {
- border-top-color: ck-color( 'foreground' );
- }
- }
- }
|