Temporarily disable tooltip display for truncated cells (8de1ddc
)
Closes #2392, reopens #2321
This commit is contained in:
parent
12cd201b48
commit
8e2790e2d2
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue