Search code examples
cssvaadinvaadin7

How to make ComboBox caption bold in Vaadin?


I created my own style in styles.scss:

.p-bold-caption .v-caption .v-captiontext {
    font-weight: bold;
}

Then in the code I add the style like so:

myComboBox.setStyleName("p-bold-caption");

Nothing happens. It's still not bolded. How to do this? I suck at css, but I've managed to make and use my own styles in the styles.scss. Not sure if I'm doing the css-selector syntax correctly here.


Solution

  • Css can be:

    .v-caption-p-bold-caption .v-captiontext {
        font-weight: bold;
    }

    and please don't forget to recompile theme and clean browser cache.