diff options
author | Maxim Devaev <[email protected]> | 2022-08-20 05:06:59 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-08-20 05:06:59 +0300 |
commit | 43fff9805942f9a4b94c12621068472e12c51cd2 (patch) | |
tree | 3e1fb29395407860fc8e764a8942dd92b0a56996 /web/kvm/index.html | |
parent | 35363bbde8b2f24f8e9c14e041270b83bb2f3a9f (diff) |
spoiler for mouse settings
Diffstat (limited to 'web/kvm/index.html')
-rw-r--r-- | web/kvm/index.html | 69 |
1 files changed, 38 insertions, 31 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 4269a279..7b2a67b0 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -250,39 +250,46 @@ </tr> </table> </div> - <table class="kv"> - <tr> - <td>Mouse polling rate:</td> - <td> - <input class="slider" type="range" id="hid-mouse-rate-slider"> - </td> - <td class="value" id="hid-mouse-rate-value" style="min-width: 30px; max-width:30px"></td> - </tr> - <tr class="feature-disabled" id="hid-mouse-sens"> - <td>Relative mouse sensitivity:</td> - <td> - <input class="slider" disabled type="range" id="hid-mouse-sens-slider"> - </td> - <td class="value" id="hid-mouse-sens-value" style="min-width: 30px; max-width:30px"></td> - </tr> - <tr class="feature-disabled" id="hid-mouse-squash"> - <td>Squash relative mouse moves:</td> - <td align="right"> - <div class="switch-box"> - <input checked type="checkbox" id="hid-mouse-squash-switch"> - <label for="hid-mouse-squash-switch"><span class="switch-inner"></span><span class="switch"></span></label> - </div> + <details> + <summary>Mouse settings</summary> + <div class="spoiler"> + <table class="kv"> + <tr> + <td>Mouse polling rate:</td> + <td> + <input class="slider" type="range" id="hid-mouse-rate-slider"> </td> - </tr> - <tr> - <td>Reverse mouse scrolling:</td> - <td align="right"> - <div class="switch-box"> - <input type="checkbox" id="hid-mouse-reverse-scrolling-switch"> - <label for="hid-mouse-reverse-scrolling-switch"><span class="switch-inner"></span><span class="switch"></span></label> - </div> + <td class="value" id="hid-mouse-rate-value" style="min-width: 30px; max-width:30px"></td> + </tr> + <tr class="feature-disabled" id="hid-mouse-sens"> + <td>Relative mouse sensitivity:</td> + <td> + <input class="slider" disabled type="range" id="hid-mouse-sens-slider"> </td> - </tr> + <td class="value" id="hid-mouse-sens-value" style="min-width: 30px; max-width:30px"></td> + </tr> + <tr class="feature-disabled" id="hid-mouse-squash"> + <td>Squash relative mouse moves:</td> + <td align="right"> + <div class="switch-box"> + <input checked type="checkbox" id="hid-mouse-squash-switch"> + <label for="hid-mouse-squash-switch"><span class="switch-inner"></span><span class="switch"></span></label> + </div> + </td> + </tr> + <tr> + <td>Reverse mouse scrolling:</td> + <td align="right"> + <div class="switch-box"> + <input type="checkbox" id="hid-mouse-reverse-scrolling-switch"> + <label for="hid-mouse-reverse-scrolling-switch"><span class="switch-inner"></span><span class="switch"></span></label> + </div> + </td> + </tr> + </table> + </div> + </details> + <table class="kv"> <tr class="feature-disabled" id="hid-connect"> <td>Connect HID to Server:</td> <td align="right"> |