From 41b3c2854c729d7d357227cb6d060e745e824e16 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Tue, 15 Mar 2016 10:21:17 +0100 Subject: [PATCH] Tables can now be horizontally scrolled on mobile Some tables (especially within ACP) hold a lot of content that cannot be dumbed down for mobile. Adding `overflow: auto` will allow it to be scrolled rather than exceeding the content boundary. --- wcfsetup/install/files/style/ui/tabularBox.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wcfsetup/install/files/style/ui/tabularBox.scss b/wcfsetup/install/files/style/ui/tabularBox.scss index 2b999916a2..bc9845c4ca 100644 --- a/wcfsetup/install/files/style/ui/tabularBox.scss +++ b/wcfsetup/install/files/style/ui/tabularBox.scss @@ -80,6 +80,12 @@ } } +.tabularBox { + @include small-screen-only { + overflow: auto; + } +} + .tabularBoxTitle { > header { border-bottom: 1px solid currentColor; -- 2.20.1