vtst / ow

Various Eclipse plugins for web development
http://www.normalesup.org/~simonet/soft/
74 stars 29 forks source link

LESS: Variable in @media (@myvar) #172

Closed Ciantic closed 10 years ago

Ciantic commented 10 years ago
@retina: ~"only screen and (-webkit-min-device-pixel-ratio: 1.3), "
    ~"only screen and (-o-min-device-pixel-ratio: 13/10), "
    ~"only screen and (min-resolution: 120dpi)";

// This causes an error:
@media (@retina) {
    // ...
}

It is however valid LESS.

vtst commented 10 years ago

I extended the grammar to cover these cases. Thanks for the report.