Skip to content

API: New mixin #a.vendor #47

@codeworksdev

Description

@codeworksdev

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;
    }

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions