You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
/* 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: -moz-linear-gradient(top, #fdfdfd 0%, #f8f8f8 50%, #eeeeee 50%, #cecece 100%); |
|
} |
|
.dj_gecko .mblButtonSelected { |
|
background-image: -moz-linear-gradient(top, #f0f0f0 0%, #ebebeb 50%, #dedede 50%, #bfbfbf 100%); |
|
} |
|
.dj_gecko .mblBlueButton { |
|
background-image: -moz-linear-gradient(top, #7a9de9 0%, #366edf 50%, #215fdc 50%, #2362dd 100%); |
|
} |
|
.dj_gecko .mblBlueButtonSelected { |
|
background-image: -moz-linear-gradient(top, #8ea4c1 0%, #5877a2 50%, #476999 50%, #4a6c9b 100%); |
|
} |
|
.dj_gecko .mblRedButton { |
|
background-image: -moz-linear-gradient(top, #fa9d58 0%, #ff4d25 50%, #ed4d15 50%, #ee4115 100%); |
|
} |
|
.dj_gecko .mblRedButtonSelected { |
|
background-image: -moz-linear-gradient(top, #c1a48e 0%, #a27758 50%, #996947 50%, #9b6c4a 100%); |
|
} |
|
.dj_ff3 .mblButton { |
|
-moz-border-radius: 5px; |
|
}
|
|
|