I am currently working with the enhanced grid in Dojo 1.10 version and I have encountered a simple problem that I am struggling to fix. I need to set a background-color CSS property for a table row, but there is already another background property applied to that row which includes a background-color. When I remove the existing property from the console, my desired background-color shows up perfectly.
I have attempted to override and change the existing property without success. The class being applied is not straightforward and looks something like this:
.claro .dojoxGridRowTable tr {
background-image: url("...");
background-repeat: repeat-x;
background-attachment: scroll;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
}
Is there a way for me to override this class? Any help would be greatly appreciated.