Css2Less icon indicating copy to clipboard operation
Css2Less copied to clipboard

No support for pseudo classes

Open ryanmclaughlin opened this issue 12 years ago • 2 comments

Seems that pseudo classes aren't yet supported.

From:

#hello:hover {
    background: blue;
}

To:

#hello {
    &:hover {
        background: blue;
    }
}

ryanmclaughlin avatar Aug 15 '12 21:08 ryanmclaughlin

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).

nicooprat avatar Aug 23 '12 07:08 nicooprat

+1 but in addition to pseudo classes implement the combinator for .class1.class2 and child selectors (>, +)

rcollette avatar Dec 18 '12 18:12 rcollette