Hover Theme Group Table Aggregation Row Color

Hello,

I am loving the new Hover theme, except for one thing.
The default color of the aggregation row on group tables is RED. This makes users think it is highlighting a problem. Which Hover CSS variable can I alter to change this to a more neutral color (light gray or light blue)

Thanks in advance!

image

1 Like

Hello @tommeacham

Unfortunately, a variable that defines background color of aggregation row is not exposed. I’ve created an issue to fix it: GitHub.

But you can manually change the aggregation row style with the following small SCSS rule in your hover-ext.scss file:

.v-table .v-table-arow {
  background: lightskyblue none;
}

Result:

image

Best regards,
Daniil.

2 Likes

Thanks for the tip. That color makes a much better default than the red, but that is just my opinion.