From 6818e2a13982ca74fdb186769fcae119cc43ba18 Mon Sep 17 00:00:00 2001 From: Saul Shanabrook Date: Thu, 30 Sep 2021 10:11:54 -0700 Subject: [PATCH] Fix pointer on sidebar table --- src/features/dataflow/Sidebar.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/features/dataflow/Sidebar.css b/src/features/dataflow/Sidebar.css index 56f5bb717..1643fb176 100644 --- a/src/features/dataflow/Sidebar.css +++ b/src/features/dataflow/Sidebar.css @@ -35,6 +35,16 @@ top: 0; } +/* By default the table editor has clickable headers. Revert those to default. */ +.sidebar table.editor-table th { + cursor: default; +} + +/* Make rows clickable instead */ +.sidebar table.editor-table tr { + cursor: pointer; +} + .active-pulse { outline: 1px solid var(--extra-dark-gray-color); }