From ed6b8073ccf4165bf0800e2ef61f28abfb9382cd Mon Sep 17 00:00:00 2001 From: MeeseeksMachine <39504233+meeseeksmachine@users.noreply.github.com> Date: Thu, 16 Sep 2021 01:46:49 -0700 Subject: [PATCH] Backport PR #1036: Fix pointer on CommitBox not displaying (#1037) Co-authored-by: Andrew H. Li --- src/style/CommitBox.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/style/CommitBox.ts b/src/style/CommitBox.ts index c15b4ac50..da528170c 100644 --- a/src/style/CommitBox.ts +++ b/src/style/CommitBox.ts @@ -109,5 +109,7 @@ export const activeStyle = style({ export const disabledStyle = style({ cursor: 'not-allowed !important', color: 'var(--jp-ui-font-color2) !important', - backgroundColor: 'var(--jp-layout-color3) !important' + backgroundColor: 'var(--jp-layout-color3) !important', + // TypeScript does not know about the value with `!important` flag + pointerEvents: 'auto !important' as any });