-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
The new #a.vendor
mixin generates vendor-prefixed CSS properties. It's used by all other shorthand mixins included with the standard distribution package.
DEFINITIONS (2)
DEFINITION 1
When @o_animateless_prefixed
is true
.
#a.vendor(@property; @value) when (@o_animateless_prefixed = true) {
-webkit-@{property}: @value;
-moz-@{property}: @value;
-ms-@{property}: @value;
-o-@{property}: @value;
@{property}: @value;
}
DEFINITION 2
When @o_animateless_prefixed
is false
.
#a.vendor(@property; @value) when (@o_animateless_prefixed = false) {
@{property}: @value;
}