1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/* Autocomplete
---------------------------------- */
.ui-autocomplete {
position: absolute;
cursor: default;
}
.ui-autocomplete-loading {
background: white;
}
/* workarounds */
* html .ui-autocomplete {
/* without this, the menu expands to 100% in IE6 */
width: 1px;
}
/* Menu
---------------------------------- */
.ui-menu {
list-style: none;
padding: 6px;
margin: 0;
display: block;
position: relative;
font-family: Arial, Verdana, Helvetica, sans-serif;
}
.ui-menu .ui-menu {
margin-top: -3px;
margin-bottom: 8px;
}
.ui-menu .ui-menu-item {
line-height: 18px;
padding: 0;
height: auto;
display: block;
text-decoration: none;
white-space: nowrap;
}
.ui-menu .ui-menu-item a {
line-height: 18px;
color: #255792;
font-size: 12px;
padding: 0 5px 0 5px;
position: relative;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
font-weight: normal;
margin: 0;
}
.ui-widget-content {
border: 0;
}
.ui-corner-all {
border-radius: 0;
}
.ui-menu .ui-menu-item a.ui-state-focus {
background: #ebeae6;
border: 0;
border-radius: 0;
}
|