From 44dc2c7f388b14920c3935ae5f24ce9dfe1bb7e2 Mon Sep 17 00:00:00 2001 From: Floyd Wang Date: Tue, 18 Nov 2025 14:57:53 +0800 Subject: [PATCH] input: Use input border on the buttons (#1634) | Before | After | | - | - | | SCR-20251118-nasx | SCR-20251118-nazg | --- crates/ui/src/input/number_input.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ui/src/input/number_input.rs b/crates/ui/src/input/number_input.rs index a14443af..59121fd4 100644 --- a/crates/ui/src/input/number_input.rs +++ b/crates/ui/src/input/number_input.rs @@ -160,6 +160,7 @@ impl RenderOnce for NumberInput { .compact() .tab_stop(false) .disabled(self.disabled) + .border_color(cx.theme().input) .border_corners(Corners { top_left: true, top_right: false, @@ -197,6 +198,7 @@ impl RenderOnce for NumberInput { .compact() .tab_stop(false) .disabled(self.disabled) + .border_color(cx.theme().input) .border_corners(Corners { top_left: false, top_right: true,