nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
/* dojox.mobile.Button */
.mblButton {
    background-image: url(compat/button-bg.png);
    background-repeat: repeat-x;
}
.mblButtonSelected {
    background-image: url(compat/button-sel-bg.png);
}
.mblBlueButton {
    background-image: url(compat/blue-button-bg.png);
}
.mblBlueButtonSelected {
    background-image: url(compat/blue-button-sel-bg.png);
}
.mblRedButton {
    background-image: url(compat/red-button-bg.png);
}
.mblRedButtonSelected {
    background-image: url(compat/red-button-sel-bg.png);
}
 
.dj_gecko {
    .mblButton {
        background-image: @mbl-button-background-image-gecko;
    }
    .mblButtonSelected {
        background-image: @mbl-button-selected-background-image-gecko;
    }
    .mblBlueButton {
        background-image: @mbl-blue-button-background-image-gecko;
    }
    .mblBlueButtonSelected {
        background-image: @mbl-blue-button-selected-background-image-gecko;
    }
    .mblRedButton {
        background-image: @mbl-red-button-background-image-gecko;
    }
    .mblRedButtonSelected {
        background-image: @mbl-red-button-selected-background-image-gecko;
    }
}
.dj_ff3 {
    .mblButton {
        -moz-border-radius: @default-button-border-radius;
    }
}