1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@import url("../common/Switch.css");
/* dojox.mobile.Switch */
.mblItemSwitch {
top: 12px;
}
.mblSwitchBg {
border-color: #b5bcc7;
-webkit-border-radius: 2px;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(3.3333333333333335%, rgba(255, 255, 255, 0.1)), color-stop(0.5, rgba(255, 255, 255, 0.6)), color-stop(1, rgba(255, 255, 255, 0.3)));
}
.mblSwitchBgLeft {
background-color: #007ef5;
color: #131313;
}
.mblSwitchBgRight {
background-color: #8fc9ff;
}
.mblSwitchKnob {
border-color: #7b879b;
background-color: #5cb0ff;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(3.3333333333333335%, rgba(255, 255, 255, 0.1)), color-stop(0.5, rgba(255, 255, 255, 0.6)), color-stop(1, rgba(255, 255, 255, 0.3)));
-webkit-border-radius: 2px;
}
|