only change to mouse after click

This commit is contained in:
thecozies
2024-03-04 09:16:35 -06:00
parent 6845e5ef4f
commit a84258c3f6
5 changed files with 38 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
<label class="config-option__title">Rumble Strength</label>
<div class="config-option__list config-option__list">
<label class="config-option__range-label">{{rumble_strength}}</label>
<input id="rumble_strength_input" type="range" min="0" max="100" style="flex:1;margin: 0dp;nav-up:auto;nav-down:auto;" data-value="rumble_strength"/>
<input class="nav-vert" id="rumble_strength_input" type="range" min="0" max="100" style="flex: 1; margin: 0dp;" data-value="rumble_strength"/>
</div>
</div>
</div>
+1 -1
View File
File diff suppressed because one or more lines are too long
+15
View File
@@ -27,6 +27,21 @@ body
pointer-events: none;
}
}
.nav-vert {
@extend %nav-vert;
}
.nav-horiz {
@extend %nav-horiz;
}
.nav-dir {
@extend %nav-dir;
}
.nav-foc {
@extend %nav-foc;
}
.nav-all {
@extend %nav-all;
}
*, *:before, *:after {
box-sizing: border-box;
+9 -1
View File
@@ -1,11 +1,19 @@
%nav-dir {
%nav-vert {
nav-up: auto;
nav-down: auto;
}
%nav-horiz {
nav-right: auto;
nav-left: auto;
}
%nav-dir {
@extend %nav-vert;
@extend %nav-horiz;
}
%nav-foc {
focus: auto;
tab-index: auto;