Fix horizontal positioning of rich text inline toolbar

pull/8746/head
Thibaud Colas 2022-12-08 13:44:09 +00:00 zatwierdzone przez LB (Ben Johnston)
rodzic 25fa8793a7
commit 0bf26a73c1
3 zmienionych plików z 5 dodań i 1 usunięć
client/src/components/Draftail
docs/releases

Wyświetl plik

@ -47,6 +47,7 @@ Changelog
* Fix: Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
* Fix: Use the correct padding for autocomplete block picker (Umar Farouk Yunusa)
* Fix: Ensure that short content pages (such as editing snippets) do not show an inconsistent background (Sage Abdullah)
* Fix: Fix horizontal positioning of rich text inline toolbar (Thibaud Colas)
* Docs: Add custom permissions section to permissions documentation page (Dan Hayden)
* Docs: Add documentation for how to get started with contributing translations for the Wagtail admin (Ogunbanjo Oluwadamilare)
* Docs: Officially recommend `fnm` over `nvm` in development documentation (LB (Ben) Johnston)

Wyświetl plik

@ -76,7 +76,9 @@ $draftail-editor-font-family: $font-sans;
}
.Draftail-Editor {
--draftail-offset-inline-start: 0;
// Number used inside a `calc` function, which doesnt support unitless zero.
// stylelint-disable-next-line length-zero-no-unit
--draftail-offset-inline-start: 0px;
}
.Draftail-Editor__wrapper {

Wyświetl plik

@ -61,6 +61,7 @@ Wagtail now provides a set of utilities for creating data migrations on StreamFi
* Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
* Use the correct padding for autocomplete block picker (Umar Farouk Yunusa)
* Ensure that short content pages (such as editing snippets) do not show an inconsistent background (Sage Abdullah)
* Fix horizontal positioning of rich text inline toolbar (Thibaud Colas)
### Documentation