Skip to content

Commit 3de1b53

Browse files
RoyLee1224pierrejeambrun
authored andcommitted
style: modify log highlight color (#56379)
* style: modify log highlight color * style: modify code highlight color (cherry picked from commit 235d6f8)
1 parent 8e46df4 commit 3de1b53

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

airflow-core/src/airflow/ui/src/pages/Dag/Code/Code.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export const Code = () => {
156156
<Box
157157
css={{
158158
"& *::selection": {
159-
bg: "gray.emphasized",
159+
bg: "blue.emphasized",
160160
},
161161
}}
162162
fontSize="14px"

airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogContent.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ export const TaskLogContent = ({ error, isLoading, logError, parsedLogs, wrap }:
114114
<ErrorAlert error={error ?? logError} />
115115
<ProgressBar size="xs" visibility={isLoading ? "visible" : "hidden"} />
116116
<Code
117+
css={{
118+
"& *::selection": {
119+
bg: "blue.emphasized",
120+
},
121+
}}
117122
data-testid="virtualized-list"
118123
flexGrow={1}
119124
h="auto"

0 commit comments

Comments
 (0)