mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-12 06:27:46 +00:00
26 lines
485 B
Plaintext
26 lines
485 B
Plaintext
.citizen-keyboard-hint {
|
|
display: none;
|
|
gap: var( --space-xs );
|
|
font-size: var( --font-size-x-small );
|
|
line-height: 1;
|
|
|
|
/* Should have a keyboard */
|
|
@media ( hover: hover ) and ( pointer: fine ) {
|
|
display: flex;
|
|
}
|
|
|
|
&-label {
|
|
color: var( --color-base );
|
|
}
|
|
|
|
&-key {
|
|
font-weight: var( --font-weight-normal );
|
|
color: var( --color-subtle );
|
|
}
|
|
}
|
|
|
|
/* Align keyhint to the right */
|
|
.citizen-menu .mw-list-item a > span:has( + .citizen-keyboard-hint-key ) {
|
|
flex-grow: 1;
|
|
}
|