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 5538d4ff7a
commit f026c56891
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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