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
|
/* dojox.mobile.View */
/* dojox.mobile.Heading */
.mblHeading {
background-color: #889BB3;
background: -webkit-gradient(linear, left top, left bottom, from(#F3F4F6), to(#A7ABB8));
border-top: 1px solid #FEFEFE;
border-bottom: 1px solid #787E8F;
color: #70777F;
text-shadow: rgba(256,256,256,0.6) 0px 1px 0px;
}
/* Heading Arrow Button */
.mblArrowButtonHead {
border-color: #4D4E50;
background: -webkit-gradient(linear, left top, right bottom, from(#B1B5BB), to(#6A727D));
}
.mblArrowButtonBody {
border-color: #C0C0C0;
background-color: #5877A2;
background: -webkit-gradient(linear, left top, left bottom, from(#B1B5BB), to(#6A727D));
-webkit-tap-highlight-color: transparent;
text-shadow: rgba(0,0,0,0.6) 0px -1px 0px;
}
.mblArrowButtonNeck {
border-color: #C0C0C0;
background: -webkit-gradient(linear, left top, left bottom, from(#B1B5BB), to(#6A727D));
}
.mblArrowButtonSelected .mblArrowButtonHead {
background: -webkit-gradient(linear, left top, right bottom, from(#9DA0A3), to(#43484F));
}
.mblArrowButtonSelected .mblArrowButtonBody, .mblArrowButtonSelected .mblArrowButtonNeck {
background: -webkit-gradient(linear, left top, left bottom, from(#9DA0A3), to(#43484F));
}
/* dojox.mobile.RoundRect */
.mblRoundRect {
margin: 7px 30px 30px 30px;
}
.mblHeading + .mblRoundRect {
margin-top: 30px;
}
/* dojox.mobile.EdgeToEdgeCategory */
/* dojox.mobile.RoundRectCategory */
.mblRoundRectCategory {
margin: 18px 0px 0px 41px;
}
/* dojox.mobile.RoundRectList */
.mblRoundRectList {
margin: 7px 30px 30px 30px;
}
.mblHeading + .mblRoundRectList {
margin-top: 30px;
}
/* dojox.mobile.EdgeToEdgeList */
/* dojox.mobile.ListItem */
/* Switch */
/* Icon Container */
/* Icon Content Heading */
/* dojox.mobile.Button */
/* Tab Container */
/* Progress Indicator */
|