Skip to content

Commit cb6d70d

Browse files
authored
Unrolled build for rust-lang#130862
Rollup merge of rust-lang#130862 - zopsicle:patch-1, r=notriddle,GuillaumeGomez rustdoc: do not animate :target when user prefers reduced motion This accessibility improvement gates rust-lang#129284 behind an inverted [prefers-reduced-motion](https://developer.mozilla.org/en-US/docs/Web/CSS/`@media/prefers-reduced-motion)` media query.
2 parents 2bd1e89 + 5b58481 commit cb6d70d

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/librustdoc/html/static/css/rustdoc.css

+12-7
Original file line numberDiff line numberDiff line change
@@ -1687,7 +1687,6 @@ instead, we check that it's not a "finger" cursor.
16871687
padding-right: 3px;
16881688
background-color: var(--target-background-color);
16891689
border-right: 3px solid var(--target-border-color);
1690-
animation: 0.65s cubic-bezier(0, 0, 0.1, 1.0) 0.1s targetfadein;
16911690
}
16921691

16931692
.code-header a.tooltip {
@@ -1712,12 +1711,18 @@ a.tooltip:hover::after {
17121711
content: "\00a0";
17131712
}
17141713

1715-
/* This animation is layered onto the mistake-proofing delay for dismissing
1716-
a hovered tooltip, to ensure it feels responsive even with the delay.
1717-
*/
1718-
.fade-out {
1719-
opacity: 0;
1720-
transition: opacity 0.45s cubic-bezier(0, 0, 0.1, 1.0);
1714+
@media not (prefers-reduced-motion) {
1715+
:target {
1716+
animation: 0.65s cubic-bezier(0, 0, 0.1, 1.0) 0.1s targetfadein;
1717+
}
1718+
1719+
/* This animation is layered onto the mistake-proofing delay for dismissing
1720+
a hovered tooltip, to ensure it feels responsive even with the delay.
1721+
*/
1722+
.fade-out {
1723+
opacity: 0;
1724+
transition: opacity 0.45s cubic-bezier(0, 0, 0.1, 1.0);
1725+
}
17211726
}
17221727

17231728
.popover.tooltip .content {

0 commit comments

Comments
 (0)