Provides mixins for the CSS3 User Interface module.
This file can be imported using:
@import "compass/css3/user-interface"
=user-select($select) $select: unquote($select) +experimental(user-select, $select, -moz, -webkit, not -o, not -ms, -khtml, official)
@mixin user-select($select) { $select: unquote($select); @include experimental(user-select, $select, -moz, -webkit, not -o, not -ms, -khtml, official); }
This property controls the selection model and granularity of an element.
@param $select [ none | text | toggle | element | elements | all | inherit ]