Comment 4 for bug 1173426

Revision history for this message
Doug Smythies (dsmythies) wrote :

The master file in question here is:

/usr/share/yelp-xsl/xslt/common/html.xsl

at and about line 1160:

1158- <xsl:value-of select="$color.blue_border"/><xsl:text>;
1159-}
1160:span.key a {
1161- border-bottom: none;
1162-}

If I change it to:

1157- color: </xsl:text>
1158- <xsl:value-of select="$color.blue_border"/><xsl:text>;
1159-}
1160:span.key {
1161- font-weight: bold;
1162- border-bottom: none;
1163-}
1164:span.key a {
1165- border-bottom: none;
1166-}
1167-a > kbd {
1168- color: </xsl:text><xsl:value-of select="$color.link"/><xsl:text>;

Then things work as expected, but I do not know if I also break the weird "span.key a" thing.