Google Analytics GUI fix
I really like the google analytics tool, yet it doesn’t seem that all it’s styles where writen carefuly… Take a look at this:
So… Which button is the confirm one…? Yup, the colors are screwed up! I guess that’s becouse they didn’t think that someone could have a dark OS skin that would also skin the buttons dark. Ah wel… Thankfully I use Firefox 3.5 and the Stylish extension! Using this extension you can override a websites CSS styles, and that’s just what i did. The following code can be used to fix all the input button colors:
-
-
@-moz-document url-prefix("https://www.google.com/analytics") { /* using url-prefix*/
-
input{
-
color: white !important;
-
}
-
select{
-
color: white !important;
-
}
-
}
Notice the !important at the end of the color attribute, that’s what forces this setting to be “final”. Let’s check if the changes fixed our problem…
Ahh… much better!


Post a reply