Hide Quick switcher hotkey tips and reveal them on hover

This CSS snippet hides keyboard shortcut reminders at the bottom of the Quick switcher unless you hover near the bottom:

Screen Recording 2025-08-27 at 16.52.42

It also works with Quick Switcher++:

Screen Recording 2025-08-27 at 16.55.19

[Quick_switcher]_Hide_hotkeys.css (268 Bytes)

.prompt-instructions {
    max-height: 0;
    opacity: 0;
    transition: all 0.2s ease;
}

.prompt-instructions:hover,
.prompt-instructions:hover ~ .prompt-instructions,
.prompt-instructions:has(~ .prompt-instructions:hover) {
    max-height: 500px;
    opacity: 1;
}