This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 573a24720ce Improve contrast in Clear Task Instance dialog selectors
(#55423)
573a24720ce is described below
commit 573a24720ce2bf951caaaeae1f05d84be96261f0
Author: Dheeraj Turaga <[email protected]>
AuthorDate: Sun Sep 14 00:46:07 2025 -0500
Improve contrast in Clear Task Instance dialog selectors (#55423)
---
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)}