diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-03-22 07:54:23 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-03-22 07:54:23 -0400 |
commit | 7e79eee1b08b44ec464cab9cac2988f2526b0d2e (patch) | |
tree | d054330974d0ac8fa784ee1fdc848833d0c4ea9e /demos | |
parent | 596d1ef581379d35104e2eb466797b5d89cc6f1a (diff) | |
parent | eeda4eadb7e20b0ddb77c6e2538b7cab7a7c65ff (diff) | |
download | jquery-ui-7e79eee1b08b44ec464cab9cac2988f2526b0d2e.tar.gz jquery-ui-7e79eee1b08b44ec464cab9cac2988f2526b0d2e.zip |
Merge branch 'master' of github.com:jquery/jquery-ui
Diffstat (limited to 'demos')
-rw-r--r-- | demos/autocomplete/combobox.html | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index b0ad46f25..e5dc6c92b 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -12,9 +12,10 @@ <script type="text/javascript" src="../../ui/jquery.ui.autocomplete.js"></script> <link type="text/css" href="../demos.css" rel="stylesheet" /> <style type="text/css"> - .ui-autocomplete-input { - margin: 0; - } + /* TODO shouldn't be necessary */ + .ui-button { margin-left: -1px; } + .ui-button-icon-only .ui-button-text { padding: 0.35em; } + .ui-autocomplete-input { margin: 0; padding: 0.48em 0 0.47em 0.45em; } </style> <script type="text/javascript"> (function($) { @@ -55,6 +56,7 @@ }) .addClass("ui-widget ui-widget-content ui-corner-left"); $("<button> </button>") + .attr("title", "Show All Items") .insertAfter(input) .button({ icons: { @@ -82,11 +84,6 @@ $("select").combobox(); }); </script> - <style> - /* TODO shouldn't be necessary */ - .ui-button-icon-only .ui-button-text { padding: 0.35em; } - .ui-autocomplete-input { padding: 0.48em 0 0.47em 0.45em; } - </style> </head> <body> |