libcss2less icon indicating copy to clipboard operation
libcss2less copied to clipboard

Nesting a Selector - Error

Open vipers-web-design opened this issue 10 years ago • 0 comments

Simply I've tried to convert a :hover change from: .nav-pills li a:hover { background-color: #f546e2; }

to: .nav-pills { li { a { &:hover { background-color: #f546e2; } } } }

But instead, I got: .nav-pills { li { a:hover { background-color: #f546e2; } } }

PS - Sorry, new to GitHub. I don't know how to style.

vipers-web-design avatar Aug 23 '14 18:08 vipers-web-design