Index: trunk/extensions/ArticleCreationWorkflow/modules/ext.articleCreation.user/ext.articleCreation.user.js |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | //setup button hover states |
37 | 37 | ac.panel |
38 | 38 | .find( '.ac-article-button' ) |
39 | | - .addClass('ui-button-blue') |
| 39 | + .addClass('ui-button-blue-large') |
40 | 40 | //attach other events here, just making first tooltip for now |
41 | 41 | //testing hover effects |
42 | 42 | .hover (function (){ |
— | — | @@ -95,8 +95,8 @@ |
96 | 96 | |
97 | 97 | $( this ) |
98 | 98 | //make it green |
99 | | - .removeClass('ui-button-blue') |
100 | | - .addClass('ui-button-green') |
| 99 | + .removeClass('ui-button-blue-large') |
| 100 | + .addClass('ui-button-green-large') |
101 | 101 | .addClass('ac-button-selected') |
102 | 102 | .parent() |
103 | 103 | .find('.mw-ac-tooltip' ) |
— | — | @@ -237,11 +237,11 @@ |
238 | 238 | hideInterstitial : function($elements) { |
239 | 239 | //remove green states and hide their tooltips |
240 | 240 | $elements |
241 | | - .removeClass('ui-button-green') |
| 241 | + .removeClass('ui-button-green-large') |
242 | 242 | .removeClass('ac-button-selected') |
243 | 243 | .each ( function (i, e) { |
244 | 244 | var color = $(this).data('ac-color'); |
245 | | - $(this) .addClass( 'ui-button-'+color ) |
| 245 | + $(this) .addClass( 'ui-button-'+color+'-large' ) |
246 | 246 | .parent() |
247 | 247 | .find('.mw-ac-tooltip,.mw-ac-interstitial') |
248 | 248 | .hide(); |