Subversion Repositories SmartDukaan

Rev

Rev 2228 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2228 rajveer 1
/* Autocomplete
2
----------------------------------*/
3
.ui-autocomplete { position: absolute; cursor: default; }	
3068 chandransh 4
.ui-autocomplete-loading { background: white url('/images/ui-anim_basic_16x16.gif') right center no-repeat; }
2228 rajveer 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: normal;
42
	margin: -1px;
43
}
44
 
45
.ui-autocomplete li.ui-menu-item {
46
	padding: 1px;  // needed to prevent the item sizes from changing on hover
47
}
48
 
49
.ui-autocomplete a.ui-menu-item-alternate {
50
	background-color: White;  // alternate item bgcolor
51
}
52
 
53
.ui-autocomplete a.ui-state-hover {
54
	font-weight: normal !important;  // rather not bold the hover item (changes the width)
55
}