From 33a58a3f9d6f6a57df0ffb9da4004b16c07f4500 Mon Sep 17 00:00:00 2001 From: qu1ck Date: Fri, 8 Sep 2023 21:47:03 -0700 Subject: [PATCH] Make keyboard scrolling work on webkit Issue #72 --- src/components/tables/common.tsx | 2 +- src/css/torrenttable.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/tables/common.tsx b/src/components/tables/common.tsx index a47ce9a..1586f01 100644 --- a/src/components/tables/common.tsx +++ b/src/components/tables/common.tsx @@ -479,7 +479,7 @@ export function TrguiTable(props: { }} /> ))} -
+
{virtualizer.getVirtualItems() diff --git a/src/css/torrenttable.css b/src/css/torrenttable.css index 6e3ac18..675f9ce 100644 --- a/src/css/torrenttable.css +++ b/src/css/torrenttable.css @@ -61,6 +61,10 @@ overflow: auto; } +.torrent-table-rows:focus { + outline: 0; +} + .torrent-table { position: absolute; left: 0;