Google Analytics GUI fix

Posted by Ktoso on 21/08/2009 – 05:00

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:broken google anal

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:

@namespace url(http://www.w3.org/1999/xhtml);
  1.  
  2. @-moz-document url-prefix("https://www.google.com/analytics") { /* using url-prefix*/
  3.    input{
  4.       color: white !important;
  5.    }
  6.    select{
  7.       color: white !important;
  8.    }
  9. }

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…fixed google anal

Ahh… much better!

Tags: , , ,

This post is under “coding” and has no respond so far.

Post a reply