I'm trying to remove the gradient background color of the caption on my Vaadin panel.
My custom theme extends Valo and I want a flat background (for the CAPTION) and a white font.  I've tried the following but it doesn't work.
.v-panel-caption {
  background-color: #157FCC;
  color: #FFFFFF;
}
On my panel, the font is white like I want but the background is still the grey gradient background.
How do I remove that gradient? Thanks!
CSS background gradient works similarly to background image, to reset that you'll need to set background: none #color;.
Example:
.v-panel-caption {
  background: none #157FCC;
  color: #FFFFFF;
}
                        gradient is the same thing as an image
.v-panel-caption {
    background-image: none;
}
                        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