@c8y/style
Version:
Styles for Cumulocity IoT applications
23 lines (20 loc) • 491 B
text/less
.c8y-scrollbar {
&::-webkit-scrollbar {
width: 4px; /* for vertical scrollbars */
height: 4px; /* for horizontal scrollbars */
}
&::-webkit-scrollbar-track {
background: @component-scrollbar-track;
}
&::-webkit-scrollbar-thumb {
width: 4px;
border-radius: 1px;
background: @component-scrollbar-thumb-default;
.transition(all 0.25s ease);
}
&:hover {
&::-webkit-scrollbar-thumb {
background: @component-scrollbar-thumb-hover;
}
}
}