ui: Table element's have vertical scrollbars (#8296)
Close #8294. Set overflow to hidden for both x and y axis. This prevents the overflow-y defaulting to auto, and creating scrollbars. Given the text overflow is set to ellipsis, this doesn't change the UI functionality.
This commit is contained in:
parent
5538d4ff7a
commit
f026c56891
|
@ -30,7 +30,7 @@
|
|||
display: none;
|
||||
}
|
||||
%table td:not(.actions) > *:only-child {
|
||||
overflow-x: hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
%table td:not(.actions) > * {
|
||||
white-space: nowrap;
|
||||
|
|
Loading…
Reference in New Issue