mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Spinner: Remove ui-state- classes from spinner, along with the background:none TR override. Fixes #8654 - Spinner background-color
This commit is contained in:
parent
025266e002
commit
112185ec8d
1
themes/base/jquery.ui.spinner.css
vendored
1
themes/base/jquery.ui.spinner.css
vendored
@ -17,7 +17,6 @@
|
||||
.ui-spinner-down { bottom: 0; }
|
||||
|
||||
/* TR overrides */
|
||||
span.ui-spinner { background: none; }
|
||||
.ui-spinner .ui-icon-triangle-1-s {
|
||||
/* need to fix icons sprite */
|
||||
background-position:-65px -16px;
|
||||
|
5
ui/jquery.ui.spinner.js
vendored
5
ui/jquery.ui.spinner.js
vendored
@ -94,7 +94,6 @@ $.widget( "ui.spinner", {
|
||||
},
|
||||
keyup: "_stop",
|
||||
focus: function() {
|
||||
this.uiSpinner.addClass( "ui-state-active" );
|
||||
this.previous = this.element.val();
|
||||
},
|
||||
blur: function( event ) {
|
||||
@ -104,7 +103,6 @@ $.widget( "ui.spinner", {
|
||||
}
|
||||
|
||||
this._refresh();
|
||||
this.uiSpinner.removeClass( "ui-state-active" );
|
||||
if ( this.previous !== this.element.val() ) {
|
||||
this._trigger( "change", event );
|
||||
}
|
||||
@ -196,7 +194,6 @@ $.widget( "ui.spinner", {
|
||||
.parent()
|
||||
// add buttons
|
||||
.append( this._buttonHtml() );
|
||||
this._hoverable( uiSpinner );
|
||||
|
||||
this.element.attr( "role", "spinbutton" );
|
||||
|
||||
@ -242,7 +239,7 @@ $.widget( "ui.spinner", {
|
||||
},
|
||||
|
||||
_uiSpinnerHtml: function() {
|
||||
return "<span class='ui-spinner ui-state-default ui-widget ui-widget-content ui-corner-all'></span>";
|
||||
return "<span class='ui-spinner ui-widget ui-widget-content ui-corner-all'></span>";
|
||||
},
|
||||
|
||||
_buttonHtml: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user