aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/autocomplete/categories.html')
-rw-r--r--demos/autocomplete/categories.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/autocomplete/categories.html b/demos/autocomplete/categories.html
index 715efb6e6..485248996 100644
--- a/demos/autocomplete/categories.html
+++ b/demos/autocomplete/categories.html
@@ -11,6 +11,7 @@
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
.ui-autocomplete-category {
+ font-weight:bold;
padding:.2em .4em;
margin:.8em 0 .2em;
line-height:1.5;
@@ -46,7 +47,7 @@
currentCategory = "";
$.each( items, function( index, item ) {
if ( item.category != currentCategory ) {
- ul.append( "<li class='ui-widget-header ui-autocomplete-category ui-corner-all'>" + item.category + "</li>" );
+ ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
self._renderItem( ul, item );