From ff10f1ab6aef3cddcc1bd754453881c37e4b976f Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Sun, 20 Oct 2013 20:48:57 +0300 Subject: [PATCH] [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 --- phpBB/styles/prosilver/theme/common.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }