Files
edx-platform/cms/static/sass/bourbon/css3/_user-select.scss
2012-06-13 11:54:17 -04:00

7 lines
151 B
SCSS

@mixin user-select($arg: none) {
-webkit-user-select: $arg;
-moz-user-select: $arg;
-ms-user-select: $arg;
user-select: $arg;
}