Skip to content

Commit 35d80da

Browse files
committed
fix: user agent: define font color for <strong> elements
Fixes a crash on Wikipedia.
1 parent 34e2527 commit 35d80da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

assets/user-agent.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ p {
1212
color: rgb(0, 0, 0);
1313
}
1414

15-
strong { font-size: 24px; } /* FIXME: add support for multiple class matchers in one selector */
15+
strong {
16+
font-size: 24px;
17+
color: rgb(0, 0, 0);
18+
} /* FIXME: add support for multiple class matchers in one selector */
1619
a {
1720
font-size: 24px;
1821
color: rgb(0, 0, 255); /* Make anchors appear blue. */

0 commit comments

Comments
 (0)