I keep bumping into the same problem when using Custom CSS.
For example, I simply want to edit the input autofill colour using this method from stackoverflow.
I paste the code in
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
-webkit-box-shadow: 0 0 0 30px white inset !important;
}
It doesn’t work. I wonder why. I close component, re-open and notice it’s actually parsed it like so:
input: -webkit-autofill:active{;
-webkit-box-shadow: 0 0 0 30px white inset !important;
Why? What to change?
This happens to most code I paste in like this. It doesn’t happen in stackoverflow, codepen etc and I’m unfamiliar what the needs of this tiny little editor are?
Pretty annoying and a waste of time with something that should just work.
A bigger, full screen version would be most welcome (like custom html)