diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7a4075df3e..eb0fa48ce0 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) diff --git a/client/scss/components/_listing.scss b/client/scss/components/_listing.scss index 0ab054d71f..743d38d3fd 100644 --- a/client/scss/components/_listing.scss +++ b/client/scss/components/_listing.scss @@ -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, diff --git a/docs/releases/6.0.2.md b/docs/releases/6.0.2.md index 1da2b8ecf3..3ffb219012 100644 --- a/docs/releases/6.0.2.md +++ b/docs/releases/6.0.2.md @@ -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