My style sheets declare formatting for a class something like this:
.foo div label {
width: 100px !important;
}
This comes from a plugin. I would not like to change the style sheets of the plugin, but rather add my own sheets to overwrite the formats.
It happens that in a given case, I wish to have labels with longer lengths. I've tried something like this:
.bar label {
width: 150px !important;
}
I thought this would be more specific and so it would be the formatting that would be worth in the end. I was mistaken. If I override with the entire selector, it will change cases that I would like to leave intact. But my own statement will not override the CSS of the specific case.
Is there any way to declare a formatting as more important than important? Something like:
.bar label {
width: 150px !important !urgent !emergency !runToTheHills;
}