Prevent IE from rendering the badge SVGs ridiculously big

Not sure why it's doing that, because the SVG has explicit 24x24
dimensions, but adding these (theoretically unnecessary) CSS rules helps.
In Chrome/FF (as well as more modern IE versions), this is a no-op.

Bug: T142042
Change-Id: Ibb293f453dc79de90690ab48f522e43d3e66b8e8
This commit is contained in:
Roan Kattouw 2016-08-03 15:18:21 -07:00
parent 8de8a2a412
commit 59db7844e4

View file

@ -31,6 +31,10 @@
cursor: pointer;
opacity: 0.8;
left: 0;
// Prevent IE from making the icon ridiculously big (T142042)
width: 24px;
height: 24px;
}
// Counter