Skip to content

Commit f35bfa4

Browse files
authored
Merge branch 'trunk' into fix/dataviews-list-groupby-item-gap
2 parents 943b5b9 + 3ca4372 commit f35bfa4

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

packages/dataviews/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Bug Fix
66

7+
- Fix Dataviews popover hover text color readability issue on WordPress 7.0. [#80105](https://github.com/WordPress/gutenberg/pull/80105)
78
- DataViews: Fix the unintended gap between `list` layout items when `groupBy` is set. [#80254](https://github.com/WordPress/gutenberg/pull/80254)
89

910
## 17.2.0 (2026-07-14)
@@ -15,6 +16,7 @@
1516
### Bug Fix
1617

1718
- DataViews: Stop the infinite-scroll list from jumping while pages load asynchronously. The scroll-anchor restoration no longer discards scrolling the user did during the load, and the footer's visibility no longer depends on the loading state, so it no longer mounts mid-load (resizing the scroll container). [#79546](https://github.com/WordPress/gutenberg/pull/79546)
19+
- Fix Dataviews popover hover text color readability issue on WordPress 7.0. [#80105](https://github.com/WordPress/gutenberg/pull/80105)
1820

1921
### Internal
2022

packages/dataviews/src/components/dataviews-filters/style.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@
198198
cursor: default;
199199
min-height: var(--wpds-dimension-size-md);
200200
@include body-medium();
201+
color: var(--wpds-color-foreground-interactive-neutral);
201202

202203
&:last-child {
203204
margin-block-end: 0;
@@ -207,6 +208,7 @@
207208
&[data-active-item],
208209
&:focus {
209210
background-color: var(--wpds-color-background-interactive-brand-weak-active);
211+
color: var(--wpds-color-foreground-interactive-neutral-active);
210212

211213
.dataviews-filters__search-widget-listitem-single-selection {
212214
border-color: var(--wpds-color-stroke-interactive-brand-active);
@@ -226,6 +228,10 @@
226228
background: var(--wpds-color-background-interactive-brand-strong-active);
227229
}
228230
}
231+
232+
.dataviews-filters__search-widget-listitem-description {
233+
color: var(--wpds-color-foreground-interactive-neutral-weak-active);
234+
}
229235
}
230236

231237
.dataviews-filters__search-widget-listitem-value {
@@ -241,7 +247,7 @@
241247
text-overflow: ellipsis;
242248
font-size: var(--wpds-typography-font-size-sm);
243249
line-height: 16px;
244-
color: var(--wpds-color-foreground-content-neutral-weak);
250+
color: var(--wpds-color-foreground-interactive-neutral-weak);
245251
}
246252

247253
.dataviews-filters__search-widget-listitem-single-selection {

0 commit comments

Comments
 (0)