blob: 74befb97f6a5685e1b74264c3cffa70cdd1dd4e5 (
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
|
/* mbl.widget.Heading */
.mblHeading {
background-image: url(compat/heading-bg.png);
}
.mblHeadingSpanTitle {
white-space: normal;
}
/* Heading Arrow Button */
.mblArrowButtonHead {
background-image: url(compat/ui-widget-bg.png);
-moz-transform-origin: left top;
-o-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
-moz-transform: scale(0.9, 0.99) rotate(45deg);
-o-transform: scale(0.9, 0.99) rotate(45deg);
-ms-transform: scale(0.9, 0.99) rotate(45deg);
transform: scale(0.9, 0.99) rotate(45deg);
left: 1px\9; /* IE7/8 hack */
_left: 9px; /* IE6 hack */
height: 32px\9; /* IE6/7/8 hack */
border-width: 0\9; /* IE6/7/8 hack */
background-image: url(compat/arrow-button-head.png)\9; /* IE6/7/8 hack */
}
.mblArrowButtonHead:not(:target) { /* IE9 hack */
background-image: url(compat/ui-widget-bg.png)\9;
left: 17px\9;
height: 21px\9;
border-width: 1px\9;
}
.mblArrowButtonBody {
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 2px;
-o-border-top-right-radius: 2px;
-o-border-bottom-right-radius: 2px;
-ms-border-top-right-radius: 2px;
-ms-border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
background-image: url(compat/ui-widget-bg.png);
}
*html .mblArrowButtonBody { /* IE6 hack */
padding: 0px 10px 0px 3px;
top: 0px;
left: 17px;
}
|