From 9aed5ef48facac6658eeebfc8b66d2ac61d361f7 Mon Sep 17 00:00:00 2001 From: maTh Date: Fri, 3 Sep 2021 08:35:44 +0200 Subject: Fixed: overflowing tables on small screens (#3819) * fix * overflow-x * a better fix, that fix all tables * Revert "a better fix, that fix all tables" This reverts commit 3bc94473474607415e30e2056899975421fb8a01. * user list table with wrapper * scrolling table: extension table --- p/themes/base-theme/template.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'p/themes/base-theme/template.css') diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index d98ac734f..b290ec64f 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -173,6 +173,10 @@ button.as-link[disabled] { } /*=== Tables */ +.table-wrapper { + overflow-x: auto; +} + table { max-width: 100%; } @@ -208,6 +212,7 @@ td.numeric { .form-group .group-controls { min-width: 250px; margin: 0 0 0 220px; + overflow-x: auto; } .form-group .group-controls .control { -- cgit v1.2.3