From 6778d58a7429ded509eab3a7f9e2851e5e775500 Mon Sep 17 00:00:00 2001 From: duncanKr Date: Tue, 21 Jul 2020 14:41:11 +0100 Subject: [PATCH] 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. --- ui-v2/app/styles/base/components/table/layout.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-v2/app/styles/base/components/table/layout.scss b/ui-v2/app/styles/base/components/table/layout.scss index 52fa643a4f..8936d4d976 100644 --- a/ui-v2/app/styles/base/components/table/layout.scss +++ b/ui-v2/app/styles/base/components/table/layout.scss @@ -30,7 +30,7 @@ display: none; } %table td:not(.actions) > *:only-child { - overflow-x: hidden; + overflow: hidden; } %table td:not(.actions) > * { white-space: nowrap;