One issue I'm facing in my project is the inability to override a CSS property due to an external CSS file using !important
on the target property. Additionally, my style.css
is loaded after the external CSS file.
For example:
The CSS style in the package file:
.ui-slider .ui-slider-handle {
color: red !important;
...
}
My style.css style:
.ui-slider {
color: red !important;
...
}