Improve Key Interaction Visibility (#428)

## Description:
Enhanced the visual clarity of key inputs using custom CSS.
Keyboard keys now appear more distinct and intuitive, making the help
modal easier to understand at a glance.
Keys can be changed easily.

Fixes #477 

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
- [x] I understand that submitting code with bugs that could have been
caught through manual testing blocks releases and new features for all
contributors

## Please put your Discord username so you can be contacted if a bug or
regression is found:

<DISCORD USERNAME>
aotumuri(.w. / (๑-̀ㅂ-́)و✧)
This commit is contained in:
Aotumuri
2025-04-12 09:34:15 -07:00
committed by GitHub
parent 608f57b2a9
commit 4c777412b6
3 changed files with 132 additions and 10 deletions
+80
View File
@@ -0,0 +1,80 @@
.scroll-combo-horizontal {
display: inline-flex;
align-items: center;
gap: 12px;
font-family: sans-serif;
color: white;
}
.key {
display: inline-block;
padding: 4px 14px;
border-radius: 6px;
background-color: #000;
color: #fff;
font-weight: bold;
box-shadow: 0 2px 0 #444;
}
.plus {
font-size: 16px;
color: #ccc;
}
.mouse-shell {
width: 28px;
height: 45px;
border: 2px solid #ccc;
border-radius: 50px;
position: relative;
background: transparent;
}
.mouse-left-corner {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 50%;
background-color: #ff4d4d;
border-top-left-radius: 50px;
}
.mouse-right-corner {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 50%;
background-color: #ff4d4d;
border-top-right-radius: 50px;
}
.mouse-wheel {
width: 4px;
height: 8px;
background-color: #ccc;
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
}
#highlighted-wheel {
background-color: #ff4d4d;
}
.mouse-with-arrows {
display: flex;
align-items: center;
gap: 6px;
}
.mouse-arrows-side {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 14px;
color: #ccc;
}