Skip to content

Commit 32bca28

Browse files
authored
Merge pull request #2569 from alexzurbonsen/fix-fix-hover-color
fix: fix hover color in diff pop up for good
2 parents efbba43 + e7baa26 commit 32bca28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Frontend/Components/Autocomplete/Autocomplete.style.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const Input = styled(MuiTextField, {
6060
display: 'none',
6161
},
6262
},
63-
'& .Mui-readOnly:hover :not(.Mui-focused) fieldset': {
63+
'& .Mui-readOnly:hover:not(.Mui-focused) fieldset': {
6464
borderColor: 'rgba(0, 0, 0, 0.23)',
6565
},
6666
}));

src/Frontend/Components/InputElements/shared.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const inputElementClasses = {
2727
display: 'none',
2828
},
2929
},
30-
'& .Mui-readOnly:hover :not(.Mui-focused) fieldset': {
30+
'& .Mui-readOnly:hover:not(.Mui-focused) fieldset': {
3131
borderColor: 'rgba(0, 0, 0, 0.23)',
3232
},
3333
},

0 commit comments

Comments
 (0)