diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-21 15:38:58 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-24 18:36:14 +0300 |
commit | af5e25cdf59f5c3e64d18810f1972dfb89be5506 (patch) | |
tree | 00717985363827ea38998b0d135afc4b54a1641a | |
parent | e660c1a5543c96d299b477731dedf3d144b685a0 (diff) | |
download | forums-af5e25cdf59f5c3e64d18810f1972dfb89be5506.tar forums-af5e25cdf59f5c3e64d18810f1972dfb89be5506.tar.gz forums-af5e25cdf59f5c3e64d18810f1972dfb89be5506.tar.bz2 forums-af5e25cdf59f5c3e64d18810f1972dfb89be5506.tar.xz forums-af5e25cdf59f5c3e64d18810f1972dfb89be5506.zip |
[ticket/11956] Scale down large avatars
Prevent large avatars from breaking layout on any resolution.
PHPBB3-11956
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 7d91d331d6..ad6f27665d 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -711,6 +711,11 @@ fieldset.polls dd div { margin-bottom: 3px; } +.postprofile .avatar img { + max-width: 90%; + height: auto !important; +} + .online { background-image: none; background-position: 100% 0; |