you can change the style of the scrollbar, for all web-kit based
browsers (chrome) you can use the following style.
for example, I have a scrollable content with style as defined below.
you can customize the scrollbar using ::-webkit-scrollbar
.scrollableContent {
overflow-x: auto;
overflow-y: auto;
}
.scrollableContent ::-webkit-scrollbar {
width: 10px;
}
.scrollableContent ::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #DDD;
}
Thanks
Ashwin
On Friday 30 September 2011 09:31:06 PM IST, ELkeke wrote:
Hi,
I should like to customize a ScrollPanel, and particulary the
scrollbar in order to have a beautiful scollbar.
For example: remove the 2 buttons for the vertical scrollbar(top and
bottom)
or
change the background color of the scrollbar
--
You received this message because you are subscribed to the Google Groups "Google
Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.