Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Apex static application file editor loses code with ampersand when creating minimized version

MarkRBApr 28 2024

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?

Comments
Post Details
Added on Apr 28 2024
8 comments
211 views