blob: f6f7bdb6ea29663a2830f59344b94e965cdc3bd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Appearance
//
// The appearance property is used to display an element using a platform-native styling based on the users' operating system's theme.
//
// Values: auto | none
// Default: auto
//
// http://www.w3.org/TR/css3-ui/#appearance
@mixin appearance($value: auto) {
-webkit-appearance: $value;
-moz-appearance: $value;
appearance: $value;
}
|