This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 099dda2a66cecd02a8938e6b5566ae38e93a487a Author: Dheeraj Turaga <[email protected]> AuthorDate: Sun Sep 14 00:46:07 2025 -0500 Improve contrast in Clear Task Instance dialog selectors (#55423) (cherry picked from commit 573a24720ce2bf951caaaeae1f05d84be96261f0) --- airflow-core/src/airflow/ui/src/components/ui/SegmentedControl.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airflow-core/src/airflow/ui/src/components/ui/SegmentedControl.tsx b/airflow-core/src/airflow/ui/src/components/ui/SegmentedControl.tsx index bb0a6b50df0..3ab69b4065e 100644 --- a/airflow-core/src/airflow/ui/src/components/ui/SegmentedControl.tsx +++ b/airflow-core/src/airflow/ui/src/components/ui/SegmentedControl.tsx @@ -61,6 +61,8 @@ const SegmentedControl = ({ defaultValues, multiple = false, onChange, options } <Button _hover={{ backgroundColor: "bg.emphasized" }} bg={selectedOptions.includes(value) ? "bg.panel" : undefined} + borderColor={selectedOptions.includes(value) ? "border.emphasized" : "transparent"} + borderWidth={selectedOptions.includes(value) ? 1 : 0} disabled={disabled} key={value} onClick={() => onClick(value)}
