Making WordPress.org

Opened 11 years ago

Closed 11 years ago

#46 closed enhancement (fixed)

Links in Trac should have :visited styles

Reported by: westonruter's profile westonruter Owned by: nacin's profile nacin
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)

wp-trac.css.diff (586 bytes) - added by westonruter 11 years ago.

Download all attachments as: .zip

Change History (4)

#1 @Otto42
11 years ago

  • Cc nacin added

#2 @kpdesign
11 years ago

  • Cc kpdesign added

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;
}

#3 @nacin
11 years ago

  • Owner set to nacin
  • Resolution set to fixed
  • Status changed from new to closed

In 179:

Trac CSS: Remove a:visited styling, which overrides the global WP.org style (which is properly a different color).

props westonruter, kpdesign.
fixes #46.

Note: See TracTickets for help on using tickets.