blob: 5ced8fe564e41a8b69e6a8186644aaf6c5b67cb6 (
plain)
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
|
@import url("../common/domButtons/DomButtonGrayArrow-compat.css");
@import url("../common/domButtons/DomButtonDarkBlueCheck-compat.css");
/* mbl.widget.ListItem */
*html li.mblListItem.mblVariableHeight { /* IE6 hack */
height: 0;
}
.mblListItemIcon {
top: 18px;
}
.mblListItem .mblArrow {
border-style: none;
width: 9px;
height: 13px;
background-image: url(compat/gray-arrow.png);
}
.mblItemSelected .mblArrow {
background-image: url(compat/white-arrow.png);
}
*html .mblListItemTextBox { /* IE6 hack */
height: 100%;
}
*html li.mblListItem.mblVariableHeight .mblListItemTextBox { /* IE6 hack */
height: auto;
}
|