blob: c1944a54479f4d9630a3a57fd8ee583c9c8faeda (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* dojox.mobile.TabBarButton */
.dj_ie6 .mblTabBarButtonDiv, .dj_ie7 .mblTabBarButtonDiv {
left: auto;
}
.dj_ie6 .mblTabBar .mblTabBarButton {
display: inline; /* IE bug*/
}
.mblTabBarButtonIcon {
position: absolute;
top: 2px;
left: 0px;
}
.dj_gecko .mblTabBar .mblTabBarButton.mblTabButtonSelected {
-moz-border-radius: 3px;
}
.dj_gecko .mblTabPanelHeader .mblTabButton {
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
}
*html .mblTabButton { /* IE6 hack */
behavior: expression(
(function(el){
if(!el.previousSibling)
el.style.borderWidth = "1px";
el.style.behavior = "none";
})(this)
);
}
.dj_ie6 .mblTabPanelHeader .mblDomButton {
left: 0px;
}
.mblTabButton img {
position: absolute;
left: 0px;
top: 0px;
margin-top: 8px;
}
.dj_gecko .mblHeading .mblTabPanelHeader .mblTabButton {
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
}
.dj_gecko .mblHeading .mblTabPanelHeader .mblTabButton:first-child {
-moz-border-radius-topleft: 6px;
-moz-border-radius-bottomleft: 6px;
}
.dj_gecko .mblHeading .mblTabPanelHeader .mblTabButton:last-child {
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
}
|