This works:
.layoutList {
background-color: #CFCFCF;
}
.layoutList > .entityCard.hover {
background-color: #FFFFFF;
border: 1px solid yellow;
}
Why doesn't this work the same as the above code? What is the appropriate way to "cascade" this in LESS so that everything is under the main .layoutList {} section?
.layoutList {
background-color: #CFCFCF;
.entityCard.hover {
background-color: #FFFFFF;
border: 1px solid yellow;
}
}