I have a <div>
in my application. It is set to have a class of "enumPanel
" and dynamically I add the class "current
".
How can I wire this up in less so that my properties will come into effect only when both classes are present on the div ?
.enumPanel .current {
// this does not seem to work
}