summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/mobile/themes/common/Button.less
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/mobile/themes/common/Button.less')
-rw-r--r--js/dojo/dojox/mobile/themes/common/Button.less29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/dojo/dojox/mobile/themes/common/Button.less b/js/dojo/dojox/mobile/themes/common/Button.less
new file mode 100644
index 0000000..d84460f
--- /dev/null
+++ b/js/dojo/dojox/mobile/themes/common/Button.less
@@ -0,0 +1,29 @@
+/* dojox.mobile.Button */
+.mblButton {
+ cursor: pointer;
+ outline: none;
+ -webkit-tap-highlight-color: rgba(255,255,255,0);
+ .mblButton-styles;
+ &.mblBlueButton {
+ -webkit-tap-highlight-color: rgba(255,255,255,0);
+ .mblButton-mblBlueButton-styles;
+ }
+ &.mblBlueButtonSelected {
+ .mblButton-mblBlueButtonSelected-styles;
+ }
+ &.mblRedButton {
+ -webkit-tap-highlight-color: rgba(255,255,255,0);
+ .mblButton-mblRedButton-styles;
+ }
+ &.mblRedButtonSelected {
+ .mblButton-mblRedButtonSelected-styles;
+ }
+}
+.mblButtonSelected {
+ .mblButtonSelected-styles;
+}
+.mblButtonDisabled,
+.mblButton:disabled {
+ cursor: default;
+ .mblButtonDisabled-styles;
+}