Avoid showing scrollbars in the block picker unless necessary. Fix #10253 (#10268)

pull/10279/head
Babitha Kumari 2023-03-28 21:45:38 +05:30 zatwierdzone przez GitHub
rodzic d1a668a3b1
commit eef0b2701d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
6 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -702,6 +702,7 @@ Contributors
* Mng * Mng
* George Sakkis * George Sakkis
* Mehul Aggarwal * Mehul Aggarwal
* Babitha Kumari
Translators Translators
=========== ===========

Wyświetl plik

@ -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 {

Wyświetl plik

@ -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)

Wyświetl plik

@ -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)

Wyświetl plik

@ -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