Disable diff hover highlight

This commit is contained in:
Thomas Nordquist
2019-04-25 09:00:44 +02:00
parent a56b41635c
commit fdbe6344d9

View File

@@ -182,16 +182,16 @@ const style = (theme: Theme) => {
deletion: {
...gutterBaseStyle,
backgroundColor: 'rgba(255, 10, 10, 0.3)',
'&:hover': {
backgroundColor: 'rgba(255, 10, 10, 0.6)',
},
// '&:hover': {
// backgroundColor: 'rgba(255, 10, 10, 0.3)',
// },
},
addition: {
...gutterBaseStyle,
backgroundColor: 'rgba(10, 255, 10, 0.3)',
'&:hover': {
backgroundColor: 'rgba(10, 255, 10, 0.5)',
},
// '&:hover': {
// backgroundColor: 'rgba(10, 255, 10, 0.5)',
// },
},
}
}