mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
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:
parent
8de8a2a412
commit
59db7844e4
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue