Merge "Hack around browser bug in IE breaking badge alignment in Monobook"

This commit is contained in:
jenkins-bot 2016-08-05 21:53:03 +00:00 committed by Gerrit Code Review
commit e86a21e1eb

View file

@ -47,4 +47,17 @@
#p-personal #pt-notifications-alert,
#p-personal #pt-notifications-notice {
display: inline-block;
position: relative;
// HACK for IE6-9 (T142053)
top: ~"-1em\9";
}
// HACK for IE10 and IE11 (T142053)
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
#p-personal #pt-notifications-alert,
#p-personal #pt-notifications-notice {
top: -1em;
}
}