Skip to content

Commit 4bcdae5

Browse files
committed
Fix weird dropdown cursor behavior
1 parent 860017c commit 4bcdae5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/herbie/ExpressionTable.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,6 @@
166166
margin-left: 17px;
167167
transition: all 1s ease-in;
168168
}
169-
.dropdown:hover {
170-
cursor: pointer;
171-
}
172169

173170
.expression-container:hover {
174171
outline: 2px solid var(--highlight);

src/herbie/HerbieUI.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ select {
123123
button {
124124
font-family: 'Ruda', sans-serif;
125125
font-size: 14px;
126+
cursor: pointer;
126127
}
127128

128129
button:disabled {

src/herbie/LocalError/newLocalError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function TreeRow({
9797
return (
9898
<>
9999
<tr className={ rowClassName }>
100-
<td className="border px-4 py-2 program-col">
100+
<td className="program-col">
101101
<span
102102
style={{ marginLeft: `${depth * 15}px`, cursor: "pointer" }}
103103
onClick={() => setIsExpanded(prev => !prev)}

0 commit comments

Comments
 (0)