OSM stylesheet: visited color: #5a3696

Hi all,

who got access to the stylesheet data? The wiki does use different colors for visited links, while the map style does use the same everywhere.
viisited would be very helpful e.g. for class=username. Personally, I prefer a visited style for everything, while it should be an exception not to use it.

www.openstreetmap.org/stylesheets/site.css:

a {
  color: #0000ff;
  text-decoration: none;
}
a:visited {
  color: #0000ff;
  text-decoration: none;
}
a:active {
  color: #0000ff;
  text-decoration: none;
}
a:link {
  color: #0000ff;
  text-decoration: none;
}

wiki.openstreetmap.org/skins/monobook/handheld.css

a {
        text-decoration: none;
        color: #002bb8;
        background: none;
}
a:visited {
        color: #5a3696;
}
a:active {
        color: #faa700;
}
a:hover {
        text-decoration: underline;
}
a.stub {
        color: #772233;
}
a.new, #p-personal a.new {
        color: #ba0000;
}
a.new:visited, #p-personal a.new:visited {
        color: #a55858;
}

Could you make this the same? I’m not absolutely sure which one has to be adjusted - it’s just obvious that outside the wiki a different setup is used.

The website is kept in TRAC. You can request access to TRAC by sending an email to TomH or send him the patch.

Thanks!
Martin