lessphp icon indicating copy to clipboard operation
lessphp copied to clipboard

Passing Rulesets to Mixins

Open dlid opened this issue 10 years ago • 0 comments
trafficstars

Hi, i can't seem to be able to pass rulesets to mixins as described in http://lesscss.org/features/#detached-rulesets-feature

Is it not implemented, or is it implemented differently?

I've tried this with lessphp 0.4.0 and 0.5.0

.desktop-example(@rules) {
 @media screen and (min-width: 1200) { 
  @rules(); 
 }
}

header {
 background-color: blue;
  .desktop-example({
   background-color: red;
  });
}

dlid avatar Aug 26 '15 15:08 dlid