Opened 12 years ago
Closed 12 years ago
#46 closed enhancement (fixed)
Links in Trac should have :visited styles
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | low | |
| Component: | Trac | Keywords: | has-patch |
| Cc: |
Description
It is not helpful that links with both unvisited and visited states have the same color:
/* =Link Colors */
a:link,
a:visited,
dt em,
.milestone .info h2 em,
#content.build h2.config :link,
#content.build h2.config :visited,
.report div.reports h3 em {
color: #21759b;
}
http://wordpress.org/style/trac/wp-trac.css?12
I suggest we add a separate color for :visited, just as has been done for :hover:
a:visited {
color: black;
}
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
I agree that we need a visited state for Trac links, but it should match the a:visited color being used elsewhere on wordpress.org. From style/wp4.css?38:
a:visited { color: #4ca6cf; }