Skip to content

Commit e2a67b9

Browse files
committed
Fix highlighting in notable tooltip
1 parent ea6df15 commit e2a67b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/librustdoc/html/static/css/themes/ayu.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ a.test-arrow:hover {
334334
color: #999;
335335
}
336336

337-
:target, :target * {
337+
:target, :target > * {
338338
background: rgba(255, 236, 164, 0.06);
339339
}
340340

src/librustdoc/html/static/css/themes/dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ a.test-arrow:hover{
282282
color: #999;
283283
}
284284

285-
:target, :target * {
285+
:target, :target > * {
286286
background-color: #494a3d;
287287
}
288288

src/librustdoc/html/static/css/themes/light.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ a.test-arrow:hover{
274274
color: #999;
275275
}
276276

277-
:target, :target * {
277+
:target, :target > * {
278278
background: #FDFFD3;
279279
}
280280

0 commit comments

Comments
 (0)