aboutsummaryrefslogtreecommitdiff
path: root/styles/keybindselector.css
blob: cc57501f8a0f73dc3e39410b768b6731605d2fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.keybind-selector-inner { padding: 27px 12px 10px; }

.keybind-selector > * { cursor: pointer !important; } 

.keybind-selector-inner .keybind {
	padding: 2px 4px 1px;
	margin-right: 3px;
	border-radius: 4px;
	user-select: none;
	cursor: pointer;
	transform: scale(1);
	display: inline-block;

	transition-property: background-color, opacity, transform;
	transition-duration: 100ms;
	background-color: var(--c800);
	color: var(--c100);
}

.keybind-selector-inner .keybind:hover {
	opacity: .7;
}

.keybind-selector-inner .keybind.new {
	opacity: 0;
	transform: scale(.85);
}

.keybind-selector * { font-family: "Inter", sans-serif !important; }

.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; }