@ckeditor/ckeditor5-ui 45.0.0-alpha.7 → 45.0.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-editor.css +0 -7
- package/dist/index.css +0 -7
- package/dist/index.css.map +1 -1
- package/dist/index.js +39 -50
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/panel/sticky/stickypanelview.d.ts +2 -2
- package/src/panel/sticky/stickypanelview.js +35 -56
- package/theme/components/panel/stickypanel.css +0 -7
package/dist/index-editor.css
CHANGED
@@ -577,22 +577,15 @@ a.ck.ck-button{
|
|
577
577
|
z-index:1;
|
578
578
|
}
|
579
579
|
|
580
|
-
:root{
|
581
|
-
--ck-visual-viewport-left:0px;
|
582
|
-
--ck-visual-viewport-top:0px;
|
583
|
-
}
|
584
|
-
|
585
580
|
.ck.ck-sticky-panel .ck-sticky-panel__content_sticky{
|
586
581
|
z-index:var(--ck-z-panel);
|
587
582
|
position:fixed;
|
588
583
|
top:0;
|
589
|
-
transform:translate(var(--ck-visual-viewport-left, 0px), var(--ck-visual-viewport-top, 0px));
|
590
584
|
}
|
591
585
|
|
592
586
|
.ck.ck-sticky-panel .ck-sticky-panel__content_sticky_bottom-limit{
|
593
587
|
top:auto;
|
594
588
|
position:absolute;
|
595
|
-
transform:none;
|
596
589
|
}
|
597
590
|
|
598
591
|
.ck.ck-autocomplete{
|
package/dist/index.css
CHANGED
@@ -816,22 +816,15 @@ a.ck.ck-button {
|
|
816
816
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
817
817
|
*/
|
818
818
|
|
819
|
-
:root {
|
820
|
-
--ck-visual-viewport-left: 0px;
|
821
|
-
--ck-visual-viewport-top: 0px;
|
822
|
-
}
|
823
|
-
|
824
819
|
.ck.ck-sticky-panel .ck-sticky-panel__content_sticky {
|
825
820
|
z-index: var(--ck-z-panel); /* #315 */
|
826
821
|
position: fixed;
|
827
822
|
top: 0;
|
828
|
-
transform: translate(var(--ck-visual-viewport-left, 0px), var(--ck-visual-viewport-top, 0px));
|
829
823
|
}
|
830
824
|
|
831
825
|
.ck.ck-sticky-panel .ck-sticky-panel__content_sticky_bottom-limit {
|
832
826
|
top: auto;
|
833
827
|
position: absolute;
|
834
|
-
transform: none;
|
835
828
|
}
|
836
829
|
|
837
830
|
/*
|