Hide keyboard shortcut hint until keyboard is triggered
This commit is contained in:
parent
91ee0da8ef
commit
6c63fb14b4
2 changed files with 10 additions and 1 deletions
|
@ -95,7 +95,9 @@ function Shortcuts() {
|
||||||
<span class="menu-grow">
|
<span class="menu-grow">
|
||||||
<AsyncText>{title}</AsyncText>
|
<AsyncText>{title}</AsyncText>
|
||||||
</span>
|
</span>
|
||||||
<span class="menu-shortcut">{i + 1}</span>
|
<span class="menu-shortcut hide-until-focus-visible">
|
||||||
|
{i + 1}
|
||||||
|
</span>
|
||||||
</MenuLink>
|
</MenuLink>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
|
|
@ -299,6 +299,13 @@ code {
|
||||||
color: var(--text-insignificant-color);
|
color: var(--text-insignificant-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hide-until-focus-visible {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
:has(:focus-visible) .hide-until-focus-visible {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
|
|
||||||
/* KEYFRAMES */
|
/* KEYFRAMES */
|
||||||
|
|
||||||
@keyframes appear {
|
@keyframes appear {
|
||||||
|
|
Loading…
Add table
Reference in a new issue