Page MenuHomePhabricator

[Regression] Link styles in Monobook are broken
Closed, ResolvedPublic

Description

The monobook stylesheet has the definition:

/* External links */
#bodyContent a.external {
color: #36b;
}

This definition overrides the 'less specific' rules:
.mw-body a.external {
color: #36b;
}
.mw-body a.external:visited {
color: #636; /* bug 3112 */
}
.mw-body a.external:active {
color: #b63;
}

Resulting in the monobook skin no longer having a distinct color for visited links. We probably have this issue with more elements and/or more skins.


Version: 1.19
Severity: normal

Details

Reference
bz34901

Event Timeline

bzimport raised the priority of this task from to High.Nov 22 2014, 12:18 AM
bzimport set Reference to bz34901.
bzimport added a subscriber: Unknown Object (MLST).

Probably caused by r82495 by Krinkle made to fix bug 3112.