blob: b510deec8549fe8db8bcb945892d4e85c288b0b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.keybind-selector-inner { padding: 27px 12px 10px; }
.keybind-selector-inner .keybind {
padding: 2px 4px 1px;
margin-right: 3px;
border-radius: 4px;
user-select: none;
transition-property: background-color;
transition-duration: 100ms;
background-color: var(--c800);
color: var(--c100);
}
.keybind-selector:focus .keybind-selector-inner .keybind { background-color: var(--gruble); }
.keybind-selector:focus label { color: var(--gruble) !important; }
.keybind-selector:focus .MuiFilledInput-underline:after { transform: scaleX(1); }
.keybind-selector:focus { outline: none; }
|