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:
duncanKr 2020-07-21 14:41:11 +01:00 committed by GitHub
parent 594cb70a73
commit 6778d58a74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@
display: none;
}
%table td:not(.actions) > *:only-child {
overflow-x: hidden;
overflow: hidden;
}
%table td:not(.actions) > * {
white-space: nowrap;