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
1 changed files with 1 additions and 1 deletions

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;