Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / resources / themes / stylesheets / ext4 / default / _mixins.scss
1 @import 'mixins/background-gradient';
2 @import 'mixins/inner-border';
3 @import 'mixins/frame';
4
5 @mixin no-select {
6     -moz-user-select:none;
7     -khtml-user-select:none;
8     -webkit-user-select:ignore;
9     
10     cursor:default;
11 }
12
13 @mixin important-no-border-radius {
14     //we need to hard code this so we can declare !important
15     -moz-border-radius: 0 !important;
16     -webkit-border-radius: 0 !important;
17     -o-border-radius: 0 !important;
18     -ms-border-radius: 0 !important;
19     -khtml-border-radius: 0 !important;
20     border-radius: 0 !important;
21 }