From 8e2790e2d2a1d8b15efbf84935f0a80d58db4e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Mon, 14 Mar 2022 13:08:21 +0200 Subject: [PATCH] Temporarily disable tooltip display for truncated cells (8de1ddc) Closes #2392, reopens #2321 --- scss/components/_virtualized-table.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scss/components/_virtualized-table.scss b/scss/components/_virtualized-table.scss index 9d49585c8d..e78c74fa72 100644 --- a/scss/components/_virtualized-table.scss +++ b/scss/components/_virtualized-table.scss @@ -237,6 +237,12 @@ text-overflow: ellipsis; overflow: hidden; max-height: 100%; + // TEMP: Disables tooltip display for truncated cells, but without this rule + // you cannot drag items before selecting them first because the ondrag event is + // not called if any children under the drag element are removed for which + // pointer-events are enabled, and we need to rerender the rows for selection + // before dragging. + pointer-events: none; } }