blob: c1bd8cf91800c8d2c953463a6094a1f0ea977c91 (
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
|
/* dojox.mobile.Button */
.mblButton {
background-color: #cfcfcf;
background-image: url(compat/button-bg.png);
background-repeat: repeat-x;
-moz-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
border-radius: 3px;
}
.mblButtonSelected {
background-color: #ffab00;
background-image: url(compat/button-sel-bg.png);
}
.mblButtonDisabled {
background-image: none;
}
.mblBlueButton {
background-color: #2261dd;
background-image: url(compat/blue-button-bg.png);
}
.mblBlueButtonSelected {
background-color: #ffab00;
background-image: url(compat/button-sel-bg.png);
}
.mblRedButton {
background-color: #ee4115;
background-image: url(compat/red-button-bg.png);
}
.mblRedButtonSelected {
background-color: #ffab00;
background-image: url(compat/button-sel-bg.png);
}
|