| 1234567891011121314151617181920212223242526272829303132 |
- // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- .ck-toolbar {
- line-height: 1;
- padding: ck-spacing( 'small' );
- border: 1px solid ck-border-color();
- white-space: initial;
- @include ck-unselectable();
- @include ck-rounded-corners();
- &-separator {
- width: 1px;
- height: calc( 1em + 2 * #{ck-spacing( 'medium' )} );
- vertical-align: middle;
- background: ck-border-color();
- }
- &-newline {
- height: ck-spacing( 'small' );
- }
- // (#11) Separate toolbar items.
- & > * {
- margin-right: ck-spacing( 'small' );
- }
- & > *:last-child {
- margin-right: 0;
- }
- }
|