Reputation: 107
Chrome recently updated to(Version 33.0.1750.117 m) and i was using a custom scroll bar because i hate that white one. This update came out and this code is not effecting this browser anymore.
::-webkit-scrollbar {height: 12px!important;width: 12px!important;background: -webkit-linear-gradient(40deg , #000000 , #1e1e1e , #000000 100%)!important;}
::-webkit-scrollbar-thumb {background-color: #840000!important;border-radius: 16px!important;}
::-webkit-scrollbar-corner {background: #0000!important;}
Anyone have a clue what they did and most importantly how to get this working again. Thanks :)
Upvotes: 9
Views: 12972
Reputation: 3051
My chrome browser verion is 34.0.1847.116 m. The following styles are still working in my chrome:
::-webkit-scrollbar {
width: 5px;
height: 5px;
background-color: rgba(255,255,255, 0);
-webkit-border-radius: 100px;
}
::-webkit-scrollbar:hover {
width: 7px;
}
::-webkit-scrollbar-thumb {
background: #FAE5F6;
-webkit-border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
background: #fabae1;
}
Check once....If still doesn't work, try after upgrading your chrome...
Hope it helps :)
Upvotes: 0
Reputation: 1552
Here's a workaround to get custom CSS back in Google Chrome:
CustomCss
In the folder, create a file called manifest.json
with the following content:
{
"name": "My Style Sheet",
"content_scripts": [
{
"matches": ["*://*/*"],
"css": ["Custom.css"]
}
],
"version": "1.0.0",
"description": "User StyleSheet replacement",
"manifest_version": 2
}
Custom.css
file from the User StyleSheets folder.Source: Comment #4 on Chromium Issue 340072
Upvotes: 10
Reputation:
The whole User Stylesheet (Custom.css
) is broken. I've reported an issue (from the About page).
Using an extension like Stylish is not a better option because extensions take up RAM and since there are so many useful ones you will have a few already (Google Dictionary, AdBlock and something to fix the Download shelf come to mind). Userscripts are also a poor choice because no global styles. I use Custom.css to style image URLs and internal urls like chrome://settings
, which I don't believe I could do with userscripts.
I appologize I don't have a fix but I can't comment.
Upvotes: 1