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
| html.mobile, .mobile body {
| width: 100%;
| margin: 0;
| padding: 0;
| }
| .mobile body {
| overflow-x: hidden;
| .text-size-adjust(none);
| .mobile-body-styles;
| }
|
| .mblBackground {
| .mblBackground-styles;
| }
|
| /* Button Colors */
| .mblColorBlue {
| .mblColorBlue-styles;
| }
|
| .mblColorBlue45 {
| .mbl-color-blue-45();
| }
|
| /* Default Button Colors */
| .mblColorDefault {
| .mblColorDefault-styles;
| }
|
| .mblColorDefault45 {
| .mbl-color-default-45();
| }
|
| .mblColorDefaultSel {
| .mblColorDefaultSel-styles;
| }
|
| .mblColorDefaultSel45 {
| .mbl-color-default-sel-45();
| }
|
| .mblSpriteIcon {
| position: absolute;
| }
| .mblSpriteIconParent {
| position: relative;
| font-size: 1px;
| }
| .mblImageIcon {
| vertical-align: top;
| }
|
| .unselectable {
| -ms-user-select: none;
| -webkit-user-select: none;
| -moz-user-select: none;
| }
|
|