diff options
author | PayBas <contact@paybas.com> | 2015-01-16 19:10:04 +0100 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2015-01-16 19:10:04 +0100 |
commit | 9e38e9dc6f65bae5c0d6de826a2f92342aeccd38 (patch) | |
tree | 7d22d21136e9475bac02117e2adcbb0a3923e97f /phpBB/styles/prosilver | |
parent | e3e16a0166eafc9f273d3eabc61a8bd711610787 (diff) | |
download | forums-9e38e9dc6f65bae5c0d6de826a2f92342aeccd38.tar forums-9e38e9dc6f65bae5c0d6de826a2f92342aeccd38.tar.gz forums-9e38e9dc6f65bae5c0d6de826a2f92342aeccd38.tar.bz2 forums-9e38e9dc6f65bae5c0d6de826a2f92342aeccd38.tar.xz forums-9e38e9dc6f65bae5c0d6de826a2f92342aeccd38.zip |
[ticket/13507] Fix horizontal scrollbar for large images in posts
PHPBB3-13507
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 4768309c29..e73f8c9d54 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -276,6 +276,9 @@ dd.option { .postbody img.postimage { max-width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } .search .postbody { |