https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
597 B
18 lines
597 B
![]()
12 years ago
|
// User Interface ------------------------------------------------------------
|
||
|
// This file can be expanded to handle all the user interface properties as
|
||
|
// they become available in browsers:
|
||
|
// http://www.w3.org/TR/2000/WD-css3-userint-20000216
|
||
|
@import "shared";
|
||
|
|
||
|
|
||
|
// This property controls the selection model and granularity of an element.
|
||
|
//
|
||
|
// @param $select
|
||
|
// [ none | text | toggle | element | elements | all | inherit ]
|
||
|
@mixin user-select($select) {
|
||
|
$select: unquote($select);
|
||
|
@include experimental(user-select, $select,
|
||
|
-moz, -webkit, not -o, not -ms, -khtml, official
|
||
|
);
|
||
|
}
|