Thanks. I don't have access to ext-all.css unfortunately. However, looking that file, I don't see which part controls that red arrow. The only commentes I see are these:
.x-grid-row-selected td, .x-grid-locked .x-grid-row-selected td{
//color: white;
}
.x-grid-row-selected span, .x-grid-row-selected b, .x-grid-row-selected div, .x-grid-row-selected strong, .x-grid-row-selected i{
//color: white !important;
}
.x-grid-row-selected .x-grid-cell-text{
//color: white;
}
.x-grid-cell-selected{
background-color: #316ac5 !important;
//color: white;
}
.x-grid-cell-selected span{
//color: white !important;
}
.x-grid-cell-selected .x-grid-cell-text{
// color: white;
}
Which part do I need to override?
Thanks again.
Yeah.. Thats where the changes has to be done.
It should look like this, after the modification,
.x-grid-row-selected td, .x-grid-locked .x-grid-row-selected td{
/*color: white;*/
}
.x-grid-row-selected div, .x-grid-row-selected div, .x-grid-row-selected b, .x-grid-row-selected strong, .x-grid-row-selected i{
/* color: white !important;*/
}
.x-grid-row-selected .x-grid-cell-text{
/*color: white;*/
}
.x-grid-cell-selected{
background-color: #316ac5 !important;
/*color: white;*/
}
.x-grid-cell-selected span{
/*color: white !important;*/
}
.x-grid-cell-selected .x-grid-cell-text{
/* color: white;*/
}
HTH.
(Please post a note here @ forums, if it successfully resolved your issue :-) )