mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Rollup merge of #104896 - notriddle:notriddle/tooltip, r=GuillaumeGomez
rustdoc: fix broken tooltip CSS
text `#ffffff` on background `#fdffd3` fails the [WCAG color contrast checker], and seems like a mistake in 16b55903ee
.
Making the cursor a pointer is misleading, since clicking it doesn't do anything.
[WCAG color contrast checker]: https://accessibleweb.com/color-contrast-checker/
This commit is contained in:
commit
12e1b84e95
@ -1139,7 +1139,6 @@ pre.rust .doccomment {
|
||||
.example-wrap .tooltip {
|
||||
position: absolute;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
left: -25px;
|
||||
top: 5px;
|
||||
}
|
||||
|
@ -64,7 +64,7 @@
|
||||
--test-arrow-hover-background-color: #4e8bca;
|
||||
--target-background-color: #fdffd3;
|
||||
--target-border-color: #ad7c37;
|
||||
--tooltip-background-color: #fdffd3;
|
||||
--tooltip-background-color: #000;
|
||||
--tooltip-color: #fff;
|
||||
--kbd-color: #000;
|
||||
--kbd-background: #fafbfc;
|
||||
|
@ -146,7 +146,7 @@ call-function: ("check-colors", {
|
||||
})
|
||||
call-function: ("check-colors", {
|
||||
"theme": "light",
|
||||
"background": "rgb(253, 255, 211)",
|
||||
"background": "rgb(0, 0, 0)",
|
||||
"color": "rgb(255, 255, 255)",
|
||||
"border": "rgb(224, 224, 224)",
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user