From 472ea7191f60eec4ef0e93e242cc1f6ace5861ec Mon Sep 17 00:00:00 2001 From: R-J Lim Date: Tue, 18 Jun 2024 18:39:16 -0700 Subject: [PATCH] Disable focus outline around subtitle player on key input --- common/app/components/SubtitlePlayer.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/app/components/SubtitlePlayer.tsx b/common/app/components/SubtitlePlayer.tsx index 103848f5..fcd9d45b 100755 --- a/common/app/components/SubtitlePlayer.tsx +++ b/common/app/components/SubtitlePlayer.tsx @@ -110,6 +110,9 @@ const useSubtitlePlayerStyles = makeStyles((theme) = overflowX: 'hidden', backgroundColor: theme.palette.background.default, width: ({ resizable }) => (resizable ? 'auto' : '100%'), + '&:focus': { + outline: 'none', + }, }, table: { backgroundColor: theme.palette.background.default,