Index: trunk/extensions/WebFonts/js/webfonts.js |
— | — | @@ -262,6 +262,15 @@ |
263 | 263 | //if rtl, add to the right of top personal links. Else, to the left |
264 | 264 | var fn = $('body').hasClass( 'rtl' ) ? "append" : "prepend"; |
265 | 265 | $('#p-personal ul:first')[fn]( $li ); |
| 266 | + //workaround for IE bug - activex components like input fields coming on top of everything. |
| 267 | + //TODO: is there a better solution other than hiding it on hover? |
| 268 | + if ( $.browser.msie ) { |
| 269 | + $("#webfonts-menu").hover(function(){ |
| 270 | + $("#searchform").css({ visibility: "hidden" }); |
| 271 | + },function(){ |
| 272 | + $("#searchform").css({ visibility: "visible" }); |
| 273 | + }); |
| 274 | + } |
266 | 275 | } |
267 | 276 | }; |
268 | 277 | |