diff options
author | Fomafix <fomafix@googlemail.com> | 2020-03-30 12:46:12 +0200 |
---|---|---|
committer | Fomafix <fomafix@googlemail.com> | 2020-03-30 14:42:52 +0200 |
commit | 4e7c376d2992d9a03953984aa0771c25436bb429 (patch) | |
tree | 08000322db94a88a0feb3625c8b12739b65a99ca /mw-config | |
parent | d5142e021adee817c5cd78b66c4440746c9098fb (diff) | |
download | mediawikicore-4e7c376d2992d9a03953984aa0771c25436bb429.tar.gz mediawikicore-4e7c376d2992d9a03953984aa0771c25436bb429.zip |
installer: Add overflow:hidden to help box
This avoids an overlap of the help box with the floating page list.
The min-width:min-content prevents that long words get cut.
Change-Id: I2d9f38e84d6030de6b00f7105a8373ff9b69e0f9
Diffstat (limited to 'mw-config')
-rw-r--r-- | mw-config/config.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mw-config/config.css b/mw-config/config.css index 63cb619c9e65..7a8ebe78aa78 100644 --- a/mw-config/config.css +++ b/mw-config/config.css @@ -200,6 +200,8 @@ .config-help-field-data { display: block; + overflow: hidden; + min-width: min-content; background-color: #d6f3ff; padding: 5px 8px 4px 8px; border: 1px solid #5dc9f4; |