diff options
| author | 2021-09-03 08:35:44 +0200 | |
|---|---|---|
| committer | 2021-09-03 08:35:44 +0200 | |
| commit | 9aed5ef48facac6658eeebfc8b66d2ac61d361f7 (patch) | |
| tree | c38731c3bb73f3e6a9d213595474777c03ffa407 /p/themes/base-theme/template.css | |
| parent | be61a3f7715dc446770934daa579a7c03c4bf79e (diff) | |
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
Diffstat (limited to 'p/themes/base-theme/template.css')
| -rw-r--r-- | p/themes/base-theme/template.css | 5 |
1 files changed, 5 insertions, 0 deletions
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 { |
