diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/kvm/index.html | 2 | ||||
-rw-r--r-- | web/share/css/kvm/stream.css | 3 | ||||
-rw-r--r-- | web/share/css/main.css | 6 |
3 files changed, 7 insertions, 4 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 4472112a..92f503fb 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -284,7 +284,7 @@ <div id="stream-box" class="stream-box-inactive"> <img id="stream-image" class="stream-image-inactive" src="../share/png/blank-stream.png" /> </div> - <div id="stream-mouse-buttons"> + <div id="stream-mouse-buttons" class="buttons-row"> <button data-mouse-button="left" class="row50">Left Click</button> <button data-mouse-button="right" class="row50">Right Click</button> </div> diff --git a/web/share/css/kvm/stream.css b/web/share/css/kvm/stream.css index c99c3c9c..c51eb1de 100644 --- a/web/share/css/kvm/stream.css +++ b/web/share/css/kvm/stream.css @@ -58,9 +58,6 @@ table#stream-auto-resize-box { div#stream-mouse-buttons { display: none; - margin: 0; - padding: 0; - font-size: 0; } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { diff --git a/web/share/css/main.css b/web/share/css/main.css index f5f0db75..7102420e 100644 --- a/web/share/css/main.css +++ b/web/share/css/main.css @@ -152,8 +152,14 @@ div.buttons-row { width: 16.66% } .row50:not(:first-child), .row25:not(:first-child), .row16:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; border-left: var(--border-control-thin); } +.row50:not(:last-child), .row25:not(:last-child), .row16:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} ul.footer { list-style-type: none; |