From d8fc2250047b1d0d22248e2e0e9334e7f878ae08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Ranouch?= <69421356+Clems54120@users.noreply.github.com> Date: Fri, 17 Jul 2026 23:50:54 +0200 Subject: [PATCH] select: Use popover background for dropdown menus --- crates/ui/src/combobox.rs | 2 +- crates/ui/src/select.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ui/src/combobox.rs b/crates/ui/src/combobox.rs index 6474c58f33..8edd92aab8 100644 --- a/crates/ui/src/combobox.rs +++ b/crates/ui/src/combobox.rs @@ -986,7 +986,7 @@ fn render_popup_shell( v_flex() .occlude() .mt_1p5() - .bg(cx.theme().tokens.background) + .bg(cx.theme().tokens.popover) .border_1() .border_color(cx.theme().border) .rounded(popup_radius) diff --git a/crates/ui/src/select.rs b/crates/ui/src/select.rs index 5d8c573714..184e514190 100644 --- a/crates/ui/src/select.rs +++ b/crates/ui/src/select.rs @@ -558,7 +558,7 @@ where v_flex() .occlude() .mt_1p5() - .bg(cx.theme().tokens.background) + .bg(cx.theme().tokens.popover) .border_1() .border_color(cx.theme().border) .rounded(popup_radius)