From: kaldari Date: Wed, 1 May 2013 21:33:26 +0000 (-0700) Subject: jquery.badge: Add CSS inline-block fix for IE 7 and earlier X-Git-Tag: 1.31.0-rc.0~19795^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=944e882cedb8dbe3bbb599ac6e74c8944a1023d4;p=lhc%2Fweb%2Fwiklou.git jquery.badge: Add CSS inline-block fix for IE 7 and earlier Also making sure cursor is set to pointer for IE7 and earlier Bug: 47926 Change-Id: I2fce808e076671778010859e547d6544d060f31f --- diff --git a/resources/jquery/jquery.badge.css b/resources/jquery/jquery.badge.css index d961bf3dbb..c706bb9754 100644 --- a/resources/jquery/jquery.badge.css +++ b/resources/jquery/jquery.badge.css @@ -8,6 +8,7 @@ font-size: 12px; line-height: 12px; background-color: #d2d2d2; + cursor: pointer; } .mw-badge-content { @@ -18,8 +19,12 @@ } .mw-badge-inline { - display: inline-block; margin-left: 3px; + display: inline-block; + /* Hack for IE6 and IE7 (bug 47926) */ + zoom: 1; + *display: inline; + } .mw-badge-overlay { position: absolute;