Remove extraneous padding in chooser modal listings (#11708)

Fixes #11704

# Conflicts:
#	CHANGELOG.txt
#	docs/releases/6.1.md
pull/11754/head
Sage Abdullah 2024-02-29 12:15:50 +00:00 zatwierdzone przez LB Johnston
rodzic 266ccea1b8
commit c91d32f7b0
3 zmienionych plików z 11 dodań i 3 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ Changelog
* Fix: Ensure that modal tabs width are not impacted by side panel opening (LB (Ben) Johnston)
* Fix: Resolve issue local development of docs when running `make livehtml` (Sage Abdullah)
* Fix: Resolve issue with unwanted padding in chooser modal listings (Sage Abdullah)
* Docs: Update Sphinx theme to `6.3.0` with a fix for the missing favicon (Sage Abdullah)

Wyświetl plik

@ -635,9 +635,15 @@ table.listing {
}
}
// If no bulk actions are present, and nice padding is not applied,
// apply the same 80px padding via the first column's left padding.
&:not(.nice-padding &, .report &):not(
// If either:
// - no nice padding is applied,
// - we're not in a report listing,
// - we're not in the editor view,
// and:
// - no bulk actions are present,
// - we're not in the "custom ordering" mode,
// then apply the same 80px padding via the first column's left padding.
&:not(.nice-padding &, .report &, .editor-view &):not(
:has(.bulk-actions-filter-checkbox, .ord)
) {
th:first-child,

Wyświetl plik

@ -15,6 +15,7 @@ depth: 1
* Ensure that modal tabs width are not impacted by side panel opening (LB (Ben) Johnston)
* Resolve issue local development of docs when running `make livehtml` (Sage Abdullah)
* Resolve issue with unwanted padding in chooser modal listings (Sage Abdullah)
### Documentation