kopia lustrzana https://github.com/wagtail/wagtail
rodzic
d1a668a3b1
commit
eef0b2701d
|
@ -58,6 +58,7 @@ Changelog
|
||||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Fix: Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
* Docs: Add code block to make it easier to understand contribution docs (Suyash Singh)
|
* Docs: Add code block to make it easier to understand contribution docs (Suyash Singh)
|
||||||
* Docs: Add new "Icons" page for icons customisation and reuse across the admin interface (Coen van der Kamp, Thibaud Colas)
|
* Docs: Add new "Icons" page for icons customisation and reuse across the admin interface (Coen van der Kamp, Thibaud Colas)
|
||||||
* Docs: Fix broken formatting for MultiFieldPanel / FieldRowPanel permission kwarg docs (Matt Westcott)
|
* Docs: Fix broken formatting for MultiFieldPanel / FieldRowPanel permission kwarg docs (Matt Westcott)
|
||||||
|
@ -103,6 +104,7 @@ Changelog
|
||||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Fix: Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
|
|
||||||
|
|
||||||
4.2.1 (13.03.2023)
|
4.2.1 (13.03.2023)
|
||||||
|
@ -282,6 +284,7 @@ Changelog
|
||||||
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Fix: Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Fix: Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix: Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Fix: Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
|
|
||||||
|
|
||||||
4.1.3 (13.03.2023)
|
4.1.3 (13.03.2023)
|
||||||
|
|
|
@ -702,6 +702,7 @@ Contributors
|
||||||
* Mng
|
* Mng
|
||||||
* George Sakkis
|
* George Sakkis
|
||||||
* Mehul Aggarwal
|
* Mehul Aggarwal
|
||||||
|
* Babitha Kumari
|
||||||
|
|
||||||
Translators
|
Translators
|
||||||
===========
|
===========
|
||||||
|
|
|
@ -33,7 +33,7 @@ $spacing-sm: theme('spacing.5');
|
||||||
|
|
||||||
.w-combobox__menu {
|
.w-combobox__menu {
|
||||||
max-height: min(480px, 70vh);
|
max-height: min(480px, 70vh);
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-combobox__optgroup {
|
.w-combobox__optgroup {
|
||||||
|
|
|
@ -19,3 +19,4 @@ depth: 1
|
||||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
|
|
|
@ -19,3 +19,4 @@ depth: 1
|
||||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
|
|
|
@ -75,6 +75,7 @@ Support for adding custom validation logic to StreamField blocks has been formal
|
||||||
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
* Ensure TableBlock initialisation correctly runs after load and its width is aligned with the parent panel (Dan Braghis)
|
||||||
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
* Ensure that the JavaScript media files are loaded by default in Snippet index listings for date fields (Sage Abdullah)
|
||||||
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
* Fix server-side caching of the icons sprite (Thibaud Colas)
|
||||||
|
* Avoid showing scrollbars in the block picker unless necessary (Babitha Kumari)
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue