summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2022-08-01 19:55:15 +0300
committerMaxim Devaev <[email protected]>2022-08-01 19:55:15 +0300
commit65bdbe43871c8895c9304854e970e6153628f027 (patch)
treebf5a3917fa4ea84e9b5d4203547dab843ea353d8 /web
parent375cbe5c5f6ec617ddb043426428d0303d292e24 (diff)
fixed window-button-exit-full-tab
Diffstat (limited to 'web')
-rw-r--r--web/kvm/index.html4
-rw-r--r--web/kvm/window-stream.pug2
-rw-r--r--web/share/css/window.css1
3 files changed, 4 insertions, 3 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html
index 8c777e31..9b4de2a1 100644
--- a/web/kvm/index.html
+++ b/web/kvm/index.html
@@ -747,8 +747,8 @@
<button class="window-button-full-screen">&#10530;</button>
</div>
<div id="stream-info"></div>
- <div class="stream-box-offline" id="stream-box">
- <button class="window-button-exit-full-tab">&#9660;</button><img id="stream-image" src="/share/png/blank-stream.png">
+ <button class="window-button-exit-full-tab">&#9660;</button>
+ <div class="stream-box-offline" id="stream-box"><img id="stream-image" src="/share/png/blank-stream.png">
<video class="hidden" id="stream-video" autoplay playsinline muted></video>
<div id="stream-fullscreen-active"></div>
</div>
diff --git a/web/kvm/window-stream.pug b/web/kvm/window-stream.pug
index 451a3108..ad88d8af 100644
--- a/web/kvm/window-stream.pug
+++ b/web/kvm/window-stream.pug
@@ -12,8 +12,8 @@ div(id="stream-window" class="window window-resizable")
div(id="stream-info")
+ button(class="window-button-exit-full-tab") &#9660;
div(id="stream-box" class="stream-box-offline")
- button(class="window-button-exit-full-tab") &#9660;
img(id="stream-image" src=`${png_dir}/blank-stream.png`)
video(id="stream-video" class="hidden" autoplay playsinline muted)
div(id="stream-fullscreen-active")
diff --git a/web/share/css/window.css b/web/share/css/window.css
index 2d063528..133d9946 100644
--- a/web/share/css/window.css
+++ b/web/share/css/window.css
@@ -161,6 +161,7 @@ div.window button.window-button-exit-full-tab {
opacity: 0.5;
border-radius: 0px;
visibility: hidden;
+ z-index: 1;
}
div.window button.window-button-exit-full-tab:hover {
opacity: 1;