summaryrefslogtreecommitdiff
path: root/web/kvm
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2021-07-23 22:38:01 +0300
committerMaxim Devaev <[email protected]>2021-07-23 22:38:01 +0300
commit11bf43de9236c77497fadf262bb99bd968a5a576 (patch)
tree0b1e99da7b0b590648ff998f5c7191086b5c2ccd /web/kvm
parent189ff593792918d3bf95c1d61c66a80fcb67744d (diff)
separate keyboard and mouse output handling
Diffstat (limited to 'web/kvm')
-rw-r--r--web/kvm/index.html8
-rw-r--r--web/kvm/navbar-system.pug8
2 files changed, 8 insertions, 8 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html
index 97f6f2b4..0ba4ba09 100644
--- a/web/kvm/index.html
+++ b/web/kvm/index.html
@@ -175,16 +175,16 @@
<div class="feature-disabled" id="hid-outputs">
<hr>
<table class="kv">
- <tr>
+ <tr class="feature-disabled" id="hid-outputs-keyboard">
<td>Keyboard mode:</td>
<td>
- <div class="radio-box" id="hid-outputs-keyboard"></div>
+ <div class="radio-box" id="hid-outputs-keyboard-box"></div>
</td>
</tr>
- <tr>
+ <tr class="feature-disabled" id="hid-outputs-mouse">
<td>Mouse <a target="_blank" href="https://github.com/pikvm/pikvm/blob/master/pages/mouse.md">mode</a>:</td>
<td>
- <div class="radio-box" id="hid-outputs-mouse"></div>
+ <div class="radio-box" id="hid-outputs-mouse-box"></div>
</td>
</tr>
</table>
diff --git a/web/kvm/navbar-system.pug b/web/kvm/navbar-system.pug
index 03910cb2..96a5fa5c 100644
--- a/web/kvm/navbar-system.pug
+++ b/web/kvm/navbar-system.pug
@@ -48,12 +48,12 @@ li(class="right")
div(id="hid-outputs" class="feature-disabled")
hr
table(class="kv")
- tr
+ tr(id="hid-outputs-keyboard", class="feature-disabled")
td Keyboard mode:
- td #[div(id="hid-outputs-keyboard" class="radio-box")]
- tr
+ td #[div(id="hid-outputs-keyboard-box" class="radio-box")]
+ tr(id="hid-outputs-mouse", class="feature-disabled")
td Mouse #[a(target="_blank" href="https://github.com/pikvm/pikvm/blob/master/pages/mouse.md") mode]:
- td #[div(id="hid-outputs-mouse" class="radio-box")]
+ td #[div(id="hid-outputs-mouse-box" class="radio-box")]
table(class="kv")
tr(id="hid-mouse-squash" class="feature-disabled")
+menu_switch_notable("hid-mouse-squash-switch", "Squash relative mouse moves", true, true)