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.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 1 week ago
Slider handle
Hi,
is it possible to change the Slider handle style? The default one is rounded, when changes are little they become imperceptible... I'd like to have a small and tight handle.
Edit:
Solution: adding these lines at bottom of scss:
.v-slider-handle:before, .v-slider-handle:after {
content: "";
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
width: 12px;
height: 40px;
border-radius: 11px;
position: absolute;
z-index: 1;
margin-top: 8px;
margin-left: 0px;
}
Last updated on
You cannot reply to this thread.