diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-19 21:13:41 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-19 21:13:41 +0100 |
| commit | c29db8e7a4e0acd27078f2fd40532670e9c94fa7 (patch) | |
| tree | 40b7d6ae4fda269ef77ef9b397848c6c98bba10d /phpBB/styles | |
| parent | add3d3e76001c6f0355da37355b0ff89cc8b8f04 (diff) | |
| parent | 9e38e9dc6f65bae5c0d6de826a2f92342aeccd38 (diff) | |
| download | forums-c29db8e7a4e0acd27078f2fd40532670e9c94fa7.tar forums-c29db8e7a4e0acd27078f2fd40532670e9c94fa7.tar.gz forums-c29db8e7a4e0acd27078f2fd40532670e9c94fa7.tar.bz2 forums-c29db8e7a4e0acd27078f2fd40532670e9c94fa7.tar.xz forums-c29db8e7a4e0acd27078f2fd40532670e9c94fa7.zip | |
Merge pull request #3294 from PayBas/ticket/13507
[ticket/13507] Fix horizontal scrollbar for large images in posts
Diffstat (limited to 'phpBB/styles')
| -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 { |
