Skip to content

Commit

Permalink
Autocomplete combobox demo: Add combobox-specific classes for styling…
Browse files Browse the repository at this point in the history
…. Fixes #8322 - Autocomplete: Combobox demo should not override .ui-button styles.

(cherry picked from commit 1b19121)

Conflicts:

	demos/autocomplete/combobox.html
  • Loading branch information
scottgonzalez committed May 15, 2012
1 parent 0cbfb2f commit 637d102
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demos/autocomplete/combobox.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
position: relative;
display: inline-block;
}
.ui-button {
.ui-combobox-toggle {
position: absolute;
top: 0;
bottom: 0;
Expand All @@ -26,7 +26,7 @@
*height: 1.7em;
*top: 0.1em;
}
.ui-autocomplete-input {
.ui-combobox-input {
margin: 0;
padding: 0.3em;
}
Expand All @@ -47,7 +47,7 @@
input = $( "<input>" )
.appendTo( wrapper )
.val( value )
.addClass( "ui-state-default" )
.addClass( "ui-state-default ui-combobox-input" )
.autocomplete({
delay: 0,
minLength: 0,
Expand Down Expand Up @@ -114,7 +114,7 @@
text: false
})
.removeClass( "ui-corner-all" )
.addClass( "ui-corner-right ui-button-icon" )
.addClass( "ui-corner-right ui-combobox-toggle" )
.click(function() {
// close if already visible
if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
Expand Down

0 comments on commit 637d102

Please sign in to comment.