This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new e6745d13b3a Fix log text selection contrast in light mode (#56216)
(#56893)
e6745d13b3a is described below
commit e6745d13b3a08d52610eaa400ab6e5c7c138346d
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Mon Oct 20 23:04:40 2025 +0200
Fix log text selection contrast in light mode (#56216) (#56893)
* Fix log text selection contrast in light mode
Changed selection background from brand.subtle to gray.emphasized
to improve readability when highlighting text in the log viewer.
This aligns with the DAG code viewer styling and provides better
contrast across both light and dark themes.
* Brent's suggestions
(cherry picked from commit 8966d288271952464b0f375beb940aafc4c59964)
Co-authored-by: Dheeraj Turaga <[email protected]>
---
.../src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx | 5 -----
1 file changed, 5 deletions(-)
diff --git
a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
index e66d2202f2f..1eefd5cc7ac 100644
--- a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx
@@ -114,11 +114,6 @@ export const TaskLogContent = ({ error, isLoading,
logError, parsedLogs, wrap }:
<ErrorAlert error={error ?? logError} />
<ProgressBar size="xs" visibility={isLoading ? "visible" : "hidden"} />
<Code
- css={{
- "& *::selection": {
- bg: "brand.subtle",
- },
- }}
data-testid="virtualized-list"
flexGrow={1}
h="auto"