From fdbe6344d907531e6011e179060a4d83043ab2df Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Thu, 25 Apr 2019 09:00:44 +0200 Subject: [PATCH] Disable diff hover highlight --- app/src/components/Sidebar/CodeDiff.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/components/Sidebar/CodeDiff.tsx b/app/src/components/Sidebar/CodeDiff.tsx index c44dae2..b3f057f 100644 --- a/app/src/components/Sidebar/CodeDiff.tsx +++ b/app/src/components/Sidebar/CodeDiff.tsx @@ -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)', + // }, }, } }