1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-12 18:45:20 +02:00

[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
This commit is contained in:
Vjacheslav Trushkin 2013-10-20 20:48:57 +03:00
parent 61b5ebfdd3
commit ff10f1ab6a

View File

@ -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;
}