Inside the apache superset pivot v2 tables, the word "metric" appears between the columns (as in the image). I don't like it and my intention is to remove it. What can I do to remove or hide it?
Try this
.pivot_table_v_2 table.pvtTable thead tr:nth-child(1) th.pvtAxisLabel
{
color: white;
}
Actually Pauls answer was almost right, you need to change nth-of-type, just change this part instead of nth-child. If you change nth-of-type 1,2,3.. you can change the colors of text, aswell as background and all other parameters. I was looking for exactly the same thing and it works on 2.1
.pivot_table_v_2 table.pvtTable thead tr:nth-of-type(2) th.pvtAxisLabel
{
color: white;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With