closure-stylesheets icon indicating copy to clipboard operation
closure-stylesheets copied to clipboard

execute mixin in another mixin

Open iflan opened this issue 10 years ago • 0 comments

Originally reported on Google Code with ID 18

this is a feature

for example 

@defmixin border-radius(RADIUS) {
    @mixin border-radius-corners(RADIUS, RADIUS, RADIUS, RADIUS)
}

@defmixin border-radius-corners(LT, RT, LB, RB) {
    -webkit-border-radius: LT RT LB RB;
    -moz-border-radius: LT RT LB RB;
    border-radius: LT RT LB RB;
}

Reported by randomailer on 2012-05-04 07:18:31

iflan avatar Oct 23 '15 20:10 iflan