diff --git a/.common/core/widget-dock-core/index.html b/.common/core/widget-dock-core/index.html
index 2cecd25..37638a2 100644
--- a/.common/core/widget-dock-core/index.html
+++ b/.common/core/widget-dock-core/index.html
@@ -56,27 +56,29 @@
+
+
-
+
+

+
+
-
-
-
diff --git a/.common/core/widget-dock-core/script.js b/.common/core/widget-dock-core/script.js
index f224816..dbe6296 100644
--- a/.common/core/widget-dock-core/script.js
+++ b/.common/core/widget-dock-core/script.js
@@ -260,6 +260,11 @@ function OpenConnectDialog() {
blurLayer.style.display = "block";
}
+function ClosenConnectDialog() {
+ sbConnectDialog.style.display = "none";
+ blurLayer.style.display = "none";
+}
+
function OpenRequiredActionsDialog() {
sbRequiredActionsDialog.style.display = "flex";
blurLayer.style.display = "block";
diff --git a/.common/core/widget-dock-core/style.css b/.common/core/widget-dock-core/style.css
index 8eb352c..53dca40 100644
--- a/.common/core/widget-dock-core/style.css
+++ b/.common/core/widget-dock-core/style.css
@@ -15,7 +15,7 @@ body {
display: flex;
flex-direction: row;
align-items: center;
- padding: 1em;
+ padding: 0em 1em;
gap: 1em;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
@@ -52,14 +52,10 @@ body {
#blur-layer {
position: fixed;
- inset: 0;
- /* top:0; left:0; bottom:0; right:0 */
- backdrop-filter: blur(5px);
- /* blur the content behind */
- -webkit-backdrop-filter: blur(5px);
- /* Safari support */
- z-index: 1;
- /* behind the modal */
+ inset: 0; /* top:0; left:0; bottom:0; right:0 */
+ backdrop-filter: blur(10px); /* blur the content behind */
+ -webkit-backdrop-filter: blur(10px); /* Safari support */
+ z-index: 1; /* behind the modal */
}
@@ -78,10 +74,10 @@ body {
}
#sb-error-label {
- background: #a82d2e33;
+ background: var(--error-background);
border-radius: 0.5em;
padding: 1em;
- color: #c65e5e;
+ color: var(--error-color);
display: none;
}
diff --git a/.common/resources/streamer.bot.png b/.common/resources/streamer.bot.png
new file mode 100644
index 0000000..f084c45
Binary files /dev/null and b/.common/resources/streamer.bot.png differ
diff --git a/.common/styles/global.css b/.common/styles/global.css
index 4db99bf..ef0826b 100644
--- a/.common/styles/global.css
+++ b/.common/styles/global.css
@@ -10,6 +10,9 @@
--button-color: #2e2e2e;
--dialog-background: #1d1d1d;
--callout-background: #181818;
+ --error-background: #a82d2e33;
+ --error-color: #c65e5e;
+ --mandatory-field-color: #c93f3f;
}
@@ -32,7 +35,7 @@ body {
.title {
font-weight: 900;
- font-size: 1.5em;
+ font-size: 1.2em;
text-transform: uppercase;
}