diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:16:03 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:16:03 -0700 |
commit | 2b9b6412b86aa0f0f38d07256bf54413498986bf (patch) | |
tree | 1106b9f414680b40d390f4cd2a49c6b7e5f8e143 | |
parent | f5262eb92885e76eb6ebd09265882426f4b11b31 (diff) | |
download | forums-2b9b6412b86aa0f0f38d07256bf54413498986bf.tar forums-2b9b6412b86aa0f0f38d07256bf54413498986bf.tar.gz forums-2b9b6412b86aa0f0f38d07256bf54413498986bf.tar.bz2 forums-2b9b6412b86aa0f0f38d07256bf54413498986bf.tar.xz forums-2b9b6412b86aa0f0f38d07256bf54413498986bf.zip |
[ticket/12332] Add break-word to fixed width table CSS
This ensures long words break and remain within the table cell
PHPBB3-12332
-rw-r--r-- | phpBB/adm/style/admin.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 18a2084b36..60a5cd9472 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -913,6 +913,7 @@ table.styles td.users, table td.mark { table.fixed-width-table { table-layout: fixed; + word-break: break-word; } @media only screen and (max-width: 700px), only screen and (max-device-width: 700px) |