Apex 23.2
Edit a static application file (called test.css) to contain this content:
div {
color: red;
& p {
color: blue;
}
}
Save the file - creates a minimised version test.min.css as expected. However, …
The minimised file “loses” the code block following the ampersand (&) which is valid nested css:
div{color:red}
Is there any way to avoid this, other than creating my own minimised css file?