8
0

contextualtoolbar.scss 527 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. .ck-toolbar__container {
  4. background: ck-color( 'foreground' );
  5. .ck-toolbar {
  6. @include ck-editor-toolbar;
  7. border: 0;
  8. }
  9. &.ck-balloon-panel {
  10. &_arrow_s,
  11. &_arrow_se,
  12. &_arrow_sw {
  13. &:after {
  14. border-bottom-color: ck-color( 'foreground' );
  15. }
  16. }
  17. &_arrow_n,
  18. &_arrow_ne,
  19. &_arrow_nw {
  20. &:after {
  21. border-top-color: ck-color( 'foreground' );
  22. }
  23. }
  24. }
  25. }