Temporarily disable tooltip display for truncated cells (8de1ddc)

Closes #2392, reopens #2321
This commit is contained in:
Adomas Venčkauskas 2022-03-14 13:08:21 +02:00
parent 12cd201b48
commit 8e2790e2d2

View file

@ -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;
}
}