diff options
author | Devaev Maxim <[email protected]> | 2018-07-16 09:42:30 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-07-16 09:42:30 +0300 |
commit | 660ebbf35a81edd99f109d8a68b8691a515e8196 (patch) | |
tree | 72804b9cb2d5e8cd6fbb8498414ebd1464963a1d /kvmd/web/index.html | |
parent | 211401b52c1d334b50dede28bab0a3a6e056992e (diff) |
svg icons
Diffstat (limited to 'kvmd/web/index.html')
-rw-r--r-- | kvmd/web/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kvmd/web/index.html b/kvmd/web/index.html index 76c94c2f..77e3a489 100644 --- a/kvmd/web/index.html +++ b/kvmd/web/index.html @@ -19,15 +19,15 @@ <body> <div id="stream-box"> - <img src="/streamer/?action=stream" id="stream-image" class="stream-image-inactive" alt="Loading..."/> + <img src="/streamer/?action=stream" id="stream-image" class="stream-image-inactive" alt="Loading..." /> <hr> <table cellpadding="0" cellspacing="0" style="border: none;"> <tr> - <td><div id="stream-led" class="led-off">🖵</div></td> + <td><img id="stream-led" class="led-off" src="svg/stream-led.svg" /></td> <td> </td> - <td><div id="hid-keyboard-led" class="led-off">⌨</div></td> + <td><img id="hid-keyboard-led" class="led-off" src="svg/hid-keyboard-led.svg" /></td> <td> </td> - <td><div id="hid-mouse-led" class="led-off">🖰</div></td> + <td><img id="hid-mouse-led" class="led-off" src="svg/hid-mouse-led.svg" /></td> <td> </td> <td><button id="stream-reset-button" type="button" title="Click here if your video looks like crap" onclick="stream.clickResetButton(this);">Reset stream</button></td> </tr> @@ -36,11 +36,11 @@ <table cellpadding="0" cellspacing="5" style="border: none;"> <tr> - <td><div id="atx-power-led" class="led-off">⏻</div></td> - <td><div id="atx-hdd-led" class="led-off">🖴</div></td> + <td><img id="atx-power-led" class="led-off" src="svg/atx-power-led.svg" /></td> + <td><img id="atx-hdd-led" class="led-off" src="svg/atx-hdd-led.svg" /></td> + <td> </td> + <td><img id="msd-led" class="led-off" src="svg/msd-led.svg" /></td> <td> </td> - <!--<td><div id="msd-led" class="led-off">✇</div></td> - <td> </td>--> <td><button id="atx-power-button" type="button" title="Click hardware power button" onclick="atx.clickButton(this);">Power</button></td> <td><button id="atx-power-button-long" type="button" title="Click hardware power button (long press)" onclick="atx.clickButton(this);">Power (long)</button></td> <td><button id="atx-reset-button" type="button" title="Click to force reset" onclick="atx.clickButton(this);">Reset</button></td> |