Index: trunk/extensions/UploadWizard/resources/jquery/jquery.mwCoolCats.css |
— | — | @@ -41,7 +41,7 @@ |
42 | 42 | color:white; |
43 | 43 | } |
44 | 44 | |
45 | | -.cat-widget li div.mwe-upwiz-remove-ctrl { |
| 45 | +.cat-widget li .mwe-upwiz-remove-ctrl { |
46 | 46 | display: inline-block; |
47 | 47 | } |
48 | 48 | |
Index: trunk/extensions/UploadWizard/resources/jquery/jquery.removeCtrl.js |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | ( function ( $j ) { |
6 | 6 | $j.fn.removeCtrl = function( msgKey, tooltipMsgKey, callback ) { |
7 | 7 | var msg = (msgKey === null) ? '' : gM( msgKey ); |
8 | | - return $j( '<div class="mwe-upwiz-remove-ctrl ui-corner-all" />' ) |
| 8 | + return $j( '<span class="mwe-upwiz-remove-ctrl ui-corner-all" />' ) |
9 | 9 | .attr( 'title', gM( tooltipMsgKey ) ) |
10 | 10 | .click( callback ) |
11 | 11 | .hover( function() { $j( this ).addClass( 'hover' ); }, |