aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-10-20 20:48:57 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-10-20 20:48:57 +0300
commitff10f1ab6aef3cddcc1bd754453881c37e4b976f (patch)
tree809522ee7286a9d96e93ceeb6cd4671c53757863
parent61b5ebfdd37e953ebddb844344164229e0b20baf (diff)
downloadforums-ff10f1ab6aef3cddcc1bd754453881c37e4b976f.tar
forums-ff10f1ab6aef3cddcc1bd754453881c37e4b976f.tar.gz
forums-ff10f1ab6aef3cddcc1bd754453881c37e4b976f.tar.bz2
forums-ff10f1ab6aef3cddcc1bd754453881c37e4b976f.tar.xz
forums-ff10f1ab6aef3cddcc1bd754453881c37e4b976f.zip
[ticket/11552] Fix non-square avatars in notifications
Old code was changing all avatars to square. This code will keep 50px height limit without changing aspect ratio. PHPBB3-11552
-rw-r--r--phpBB/styles/prosilver/theme/common.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index f95fae45e4..92307a501d 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -879,8 +879,9 @@ form > p.post-notice strong {
.notification_list ul li img {
float: left;
- max-width: 50px;
max-height: 50px;
+ width: auto !important;
+ height: auto !important;
margin-right: 5px;
}