I often use !important to override a built-in CSS configuration. I am running into an issue where a built in css configuration includes it's own !important tag.
.cf-formwrap textarea[backend-readonly], .disabledTextArea { background-color: #eee !important; border: 1px solid #e5e5e5; }
Since it already includes !important in the built in class, how do I add a class that overrides it?
I need something more important than important. It sure would be helpful to use numbers for priority instead of just either not important or important. For example if this was at a 10, I could make mine at an 11 if I needed to override.