diff --git a/htdocs/assets/_floatingbar.php b/htdocs/assets/_floatingbar.php
index 51c4eac..403a200 100644
--- a/htdocs/assets/_floatingbar.php
+++ b/htdocs/assets/_floatingbar.php
@@ -99,6 +99,9 @@
+
+
diff --git a/htdocs/assets/js/floatingbar-config.js b/htdocs/assets/js/floatingbar-config.js
index c7eeb86..45703e7 100644
--- a/htdocs/assets/js/floatingbar-config.js
+++ b/htdocs/assets/js/floatingbar-config.js
@@ -9,6 +9,7 @@ const searchTxt = document.getElementById("searchtext");
const searchInput = document.getElementById("searchinput");
const windowWrapper = document.getElementById("floatingwindowwrapper");
const searchWin = document.getElementById("searchwindow");
+const shareWin = document.getElementById("sharewindow");
const searchDef = document.getElementById("defresults");
const searchRes = document.getElementById("searchresults");
const basePath = document.getElementById('phpHostBasePath').dataset.basePath;
@@ -305,6 +306,7 @@ function activate_share() {
windowWrapper.classList.add("flotingbar-window-wrapper-show");
shareBtn.classList.add("hidden");
shareCloseBtn.classList.remove("hidden");
+ shareWin.classList.remove("hidden");
}
@@ -313,6 +315,7 @@ function close_share() {
windowWrapper.classList.add("hidden");
shareCloseBtn.classList.add("hidden");
shareBtn.classList.remove("hidden");
+ shareWin.classList.add("hidden");
}
shareBtn.addEventListener("click", function () {
diff --git a/htdocs/assets/style.css b/htdocs/assets/style.css
index 5bad5ea..cc1fce5 100644
--- a/htdocs/assets/style.css
+++ b/htdocs/assets/style.css
@@ -595,6 +595,10 @@ video {
top: 10rem;
}
+.top-\[10vh\] {
+ top: 10vh;
+}
+
.top-\[20\.5rem\] {
top: 20.5rem;
}
@@ -607,6 +611,10 @@ video {
top: 4.7rem;
}
+.top-\[20vh\] {
+ top: 20vh;
+}
+
.z-10 {
z-index: 10;
}