Fix oversized gravatars in in-app notifications

Bug was introduced by 9152e6e128e0ac38d97d893cb8243e3b9185351b, which
requests gravatars at 2x size (for retina displays).

They are now 25px, which is a little on the small side, but will do for
now. Properly centered.

(imported from commit 769b71101d62206cde1341b9b6b11fbb7925ae28)
This commit is contained in:
Scott Feeney 2013-08-05 14:43:57 -04:00
parent f9614d76a2
commit 6feb77e7dc

View File

@ -1774,6 +1774,13 @@ table.floating_recipient {
height: 35px;
}
.notifications-gravatar img {
max-width: 25px;
max-height: 25px;
padding-left: 4px;
padding-top: 4px;
}
#notifications-bar {
z-index: 9000;
position: absolute;