File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
airflow-core/src/airflow/ui/src/components/Graph Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const AliasNode = ({
31
31
bg = "bg"
32
32
borderColor = { isSelected ? "border.inverted" : "border" }
33
33
borderRadius = { 5 }
34
- borderWidth = { isSelected ? 6 : 2 }
34
+ borderWidth = { isSelected ? 4 : 2 }
35
35
cursor = "default"
36
36
flexDirection = "column"
37
37
height = { `${ height } px` }
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export const AssetNode = ({
57
57
bg = "bg"
58
58
borderColor = { isSelected ? "border.inverted" : "border" }
59
59
borderRadius = { 5 }
60
- borderWidth = { isSelected ? 6 : 2 }
60
+ borderWidth = { isSelected ? 4 : 2 }
61
61
cursor = "default"
62
62
flexDirection = "column"
63
63
height = { `${ height } px` }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const DagNode = ({
37
37
< Flex
38
38
bg = { isOpen ? "bg.muted" : "bg" }
39
39
borderRadius = { 5 }
40
- borderWidth = { isSelected ? 6 : 2 }
40
+ borderWidth = { isSelected ? 4 : 2 }
41
41
cursor = "default"
42
42
flexDirection = "column"
43
43
height = { `${ height } px` }
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ const CustomEdge = ({ data }: Props) => {
67
67
key = { section . id }
68
68
stroke = { colorMode === "dark" ? darkStroke : lightStroke }
69
69
strokeDasharray = { rest . isSetupTeardown ? "10,5" : undefined }
70
- strokeWidth = { rest . isSelected ? 4 : 1 }
70
+ strokeWidth = { rest . isSelected ? 2 : 1 }
71
71
x = { ( point : ElkPoint ) => point . x }
72
72
y = { ( point : ElkPoint ) => point . y }
73
73
/>
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export const TaskNode = ({
70
70
taskInstance ?. state ? `${ taskInstance . state } .solid` : isSelected ? "border.inverted" : "border"
71
71
}
72
72
borderRadius = { 5 }
73
- borderWidth = { isSelected ? 6 : 2 }
73
+ borderWidth = { isSelected ? 4 : 2 }
74
74
height = { `${ height + ( isSelected ? 4 : 0 ) } px` }
75
75
justifyContent = "space-between"
76
76
px = { isSelected ? 1 : 2 }
You can’t perform that action at this time.
0 commit comments