mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-15 05:26:47 +00:00
Fix tab focus on restyled switches
Setting a checkbox to `display:none` makes it impossible to tab onto it, which makes the rustdoc settings page completely keyboard inaccessible.
This commit is contained in:
parent
17b8ca952b
commit
9dc5dfb975
@ -26,7 +26,8 @@
|
||||
}
|
||||
|
||||
.toggle input {
|
||||
display: none;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.select-wrapper {
|
||||
@ -90,7 +91,7 @@ input:checked + .slider {
|
||||
}
|
||||
|
||||
input:focus + .slider {
|
||||
box-shadow: 0 0 1px #2196F3;
|
||||
box-shadow: 0 0 0 2px #0a84ff, 0 0 0 6px rgba(10, 132, 255, 0.3);
|
||||
}
|
||||
|
||||
input:checked + .slider:before {
|
||||
|
Loading…
Reference in New Issue
Block a user