From 944e882cedb8dbe3bbb599ac6e74c8944a1023d4 Mon Sep 17 00:00:00 2001 From: kaldari Date: Wed, 1 May 2013 14:33:26 -0700 Subject: [PATCH] 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 --- resources/jquery/jquery.badge.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; -- 2.20.1