Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Discussion options

You must be logged in to vote

Start with reading the uicustomization docs. Also the CSS specification will help.
Scrollbar style can be read here from the default theme.

You can override those rules in your style.css, for example the size:
The scrollbar is a quite complex element because it contains several child elements, but,
hback abd vback the background of the slider (horizontal and vertical),
hbutton and vbutton are the sliders.

ScrollBar {
	min-width: 24dp;
	min-height: 24dp;
}

ScrollBar::hback {
	min-height: 20dp;
}

ScrollBar::vback {
	min-width: 20dp;
}

ScrollBar::hbutton {
	min-height: 20dp;
}

ScrollBar::vbutton {
	min-width: 20dp;
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by blueberryscone238
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants