Przeglądaj źródła

Merge pull request #109 from ckeditor/t/ckeditor5-ui/297

Feature: The `StickyToolbar` component has become `StickyPanel` (see ckeditor/ckeditor5-ui#297).

BREAKING CHANGE: The former `.ck-toolbar_sticky` class styles are available under `.ck-sticky-panel`.
Aleksander Nowodzinski 8 lat temu
rodzic
commit
957bfc0089

+ 2 - 2
packages/ckeditor5-theme-lark/theme/components/toolbar/stickytoolbar.scss

@@ -2,8 +2,8 @@
 // For licensing, see LICENSE.md or http://ckeditor.com/license
 
 @include ck-editor {
-	.ck-toolbar {
-		&.ck-toolbar_sticky {
+	.ck-sticky-panel {
+		&.ck-sticky-panel_sticky {
 			@include ck-drop-shadow();
 
 			border-width: 0 1px 1px;

+ 2 - 2
packages/ckeditor5-theme-lark/theme/theme.scss

@@ -21,6 +21,6 @@
 @import 'components/list';
 @import 'components/label';
 @import 'components/inputtext';
-@import 'components/panel/balloonpanel';
 @import 'components/editor';
-@import 'components/toolbar/stickytoolbar';
+@import 'components/panel/balloonpanel';
+@import 'components/panel/stickypanel';