I have the grid column data left justified. However, when i hover over a row or select a row, the data right justifies. I added the styling below, but that did not seem to help. What am I missing?
<style>
.e-grid td.e-active {
background: #a7a6fc;
color: black;
font-weight: bold;
text-align: left !important;
}
.e-grid .e-alt_row .e-rowcell {
font-style: italic;
text-align: left !important;
color: #700000;
}
.e-grid .e-alt_row:hover .e-rowcell {
text-align: left !important;
}
</style>