Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7324 anupam.sin 1
/* Autocomplete
2
----------------------------------*/
3
.ui-autocomplete { position: absolute; cursor: default; }	
4
.ui-autocomplete-loading { background: white url('/images/ui-anim_basic_16x16.gif') right center no-repeat; }
5
 
6
.ui-corner-all-compare { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
7
 
8
.ui-widget-content-compare { border: 1px solid #dddddd; background: #eeeeee url(/images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
9
/* workarounds */
10
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
11
 
12
/* Menu
13
----------------------------------*/
14
.ui-menu {
15
	list-style:none;
16
	padding: 2px;
17
	margin: 0;
18
	display:block;
19
}
20
.ui-menu .ui-menu {
21
	margin-top: -3px;
22
}
23
.ui-menu .ui-menu-item {
24
	margin:4;
25
	padding: 0;
26
	zoom: 1;
27
	float: left;
28
	clear: left;
29
	width: 100%;
30
}
31
.ui-menu .ui-menu-item a {
32
	text-decoration:none;
33
	display:block;
34
	padding:.2em .4em;
35
	line-height:1.5;
36
	zoom:1;
37
  	color: #000000;
38
}
39
.ui-menu .ui-menu-item a.ui-state-hover,
40
.ui-menu .ui-menu-item a.ui-state-active {
41
	font-weight:bold;
42
	color:#c77405;
43
	margin: -1px;
44
	border:1px solid #fbcb09;
45
	background:#fdf5ce url(/images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;
46
}
47
 
48
.ui-autocomplete li.ui-menu-item {
49
	padding: 1px;  // needed to prevent the item sizes from changing on hover
50
}
51
 
52
.ui-autocomplete a.ui-menu-item-alternate {
53
	background-color: White;  // alternate item bgcolor
54
}
55
 
56
.ui-autocomplete a.ui-state-hover {
57
	font-weight: normal !important;  // rather not bold the hover item (changes the width)
58
}