Css2Less
Css2Less copied to clipboard
No support for pseudo classes
Seems that pseudo classes aren't yet supported.
From:
#hello:hover {
background: blue;
}
To:
#hello {
&:hover {
background: blue;
}
}
Yes indeed, thanks for the request.
Nico Prat [email protected]
Le jeudi 16 août 2012 à 00:03, Ryan McLaughlin a écrit :
Seems that pseudo classes aren't yet supported. From: #hello:hover { background: blue; }
To: #hello { &:hover { background: blue; } }— Reply to this email directly or view it on GitHub (https://github.com/nicooprat/Css2Less/issues/5).
+1 but in addition to pseudo classes implement the combinator for .class1.class2 and child selectors (>, +)