diff options
author | Devaev Maxim <[email protected]> | 2020-09-23 21:23:10 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-23 22:58:45 +0300 |
commit | f605e91bf254dee021bbd18fe40cf9270d735950 (patch) | |
tree | 8c11cd075aba9e1c60ce78814f8f2fb1ded71d88 /web | |
parent | 3f743114857b11656957767bec4bfa27f4dd7fee (diff) |
fixed #10
Diffstat (limited to 'web')
-rw-r--r-- | web/kvm/index.html | 13 | ||||
-rw-r--r-- | web/kvm/window-keyboard.pug | 7 |
2 files changed, 9 insertions, 11 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 39e1cfb8..0da86456 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -681,14 +681,10 @@ </div> </div> <div class="keypad-row"> - <div class="modifier wide-3 left small" data-code="ShiftLeft"> + <div class="modifier wide-4 left small" data-code="ShiftLeft"> <div class="label"><b>•</b><br>Shift </div> </div> - <div class="key small" data-code="IntlBackslash"> - <div class="label"> - </div> - </div> <div class="key single" data-code="KeyZ"> <div class="label">Z </div> @@ -729,7 +725,7 @@ <div class="label">?<br>/ </div> </div> - <div class="modifier wide-3 right small" data-code="ShiftRight"> + <div class="modifier wide-4 right small" data-code="ShiftRight"> <div class="label"><b>•</b><br>Shift </div> </div> @@ -837,7 +833,10 @@ <div class="keypad-row"> <div class="empty-key"></div> <div class="empty-key"></div> - <div class="empty-key"></div> + <div class="key small" data-code="IntlBackslash"> + <div class="label">N/US + </div> + </div> <div class="key small" data-code="Power"> <div class="label">PWR </div> diff --git a/web/kvm/window-keyboard.pug b/web/kvm/window-keyboard.pug index 87abf64e..1354726c 100644 --- a/web/kvm/window-keyboard.pug +++ b/web/kvm/window-keyboard.pug @@ -51,14 +51,13 @@ mixin lamp(cls) +key("Quote") "#[br]' +key("Enter", "wide-3 right small") Enter#[br]↵ div(class="keypad-row") - +modifier("ShiftLeft", "wide-3 left small") Shift - +key("IntlBackslash", "small") + +modifier("ShiftLeft", "wide-4 left small") Shift each key in ["Z", "X", "C", "V", "B", "N", "M"] +key(`Key${key}`, "single") #{key} +key("Comma") <#[br], +key("Period") >#[br]. +key("Slash") ?#[br]/ - +modifier("ShiftRight", "wide-3 right small") Shift + +modifier("ShiftRight", "wide-4 right small") Shift div(class="keypad-row") +modifier("ControlLeft", "wide-1 left small") Ctrl +modifier("MetaLeft", "wide-1 left small") Win @@ -96,7 +95,7 @@ mixin lamp(cls) div(class="keypad-row") +empty_key() +empty_key() - +empty_key() + +key("IntlBackslash", "small") N/US +key("Power", "small") PWR hr div(class="keypad-row") |