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:
parent
61b5ebfdd3
commit
ff10f1ab6a
@ -879,8 +879,9 @@ form > p.post-notice strong {
|
|||||||
|
|
||||||
.notification_list ul li img {
|
.notification_list ul li img {
|
||||||
float: left;
|
float: left;
|
||||||
max-width: 50px;
|
|
||||||
max-height: 50px;
|
max-height: 50px;
|
||||||
|
width: auto !important;
|
||||||
|
height: auto !important;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user