theme-lark.scss 586 B

12345678910111213141516171819
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_shadow.scss';
  4. @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_colors.scss';
  5. @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_button.scss';
  6. $shadow-color: ck-color( 'editor-toolbar-background', 10 );
  7. .ck-editor-toolbar {
  8. .ck-button {
  9. &.ck-dropdown__button {
  10. @include ck-box-shadow(
  11. 0 0 0 1px $shadow-color inset,
  12. 0 0 5px $shadow-color inset
  13. );
  14. }
  15. }
  16. }