Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / resources / themes / stylesheets / ext4 / default / _mixins.scss
diff --git a/resources/themes/stylesheets/ext4/default/_mixins.scss b/resources/themes/stylesheets/ext4/default/_mixins.scss
new file mode 100644 (file)
index 0000000..c043f26
--- /dev/null
@@ -0,0 +1,22 @@
+@import 'mixins/background-gradient';
+@import 'mixins/inner-border';
+@import 'mixins/frame';
+@import 'mixins/btn';
+
+@mixin no-select {
+    -moz-user-select:none;
+    -khtml-user-select:none;
+    -webkit-user-select:ignore;
+    
+    cursor:default;
+}
+
+@mixin important-no-border-radius {
+    //we need to hard code this so we can declare !important
+    -moz-border-radius: 0 !important;
+    -webkit-border-radius: 0 !important;
+    -o-border-radius: 0 !important;
+    -ms-border-radius: 0 !important;
+    -khtml-border-radius: 0 !important;
+    border-radius: 0 !important;
+}