hi all
recently when i open chrome ,i found that my custom CSS Style Sheet does not work.
i created an file named "Custom.cc " and put it at "C:\Users\Administrator\AppData\Local\Google\Chrome\User Data\Default\User StyleSheets"
the file content is like this
"
::-webkit-scrollbar
{
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track-piece
{
background-color: #ffffff;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical
{
height: 5px;
background-color: #666;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal
{
width: 5px;
background-color: #666;
-webkit-border-radius: 3px;
}
"
but the scroll bar 's style still dose not changed?
my question is " the newest version chrome dose not support this feature or this is a bug?"