Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
How to "style" Window
Could someone suggest me how to "style" the white line between 'v-window-outerheader' and 'v-window-contents' in a Window. I have changed 'v-window' background to gold, but unable to change the line between mentioned elements.
Cheers, Simon
This is a bit tricky to target. But you need to define style with "border-top" and target it to "::before" of v-scrollable within v-window.
Tatu Lund: This is a bit tricky to target. But you need to define style with "border-top" and target it to "::before" of v-scrollable within v-window.
That works. Thank you very much for a trick ;-)
.v-window-contents > .v-scrollable:before { border-top: 1px solid color; }