From f048945ece881c419e98b0482ab33c4b728e2136 Mon Sep 17 00:00:00 2001 From: Holly Date: Tue, 8 Oct 2024 23:01:13 +0100 Subject: [PATCH] improve look of debug background --- client/Terminal-00-Multiuser.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/Terminal-00-Multiuser.user.js b/client/Terminal-00-Multiuser.user.js index d501862..a81cbd7 100644 --- a/client/Terminal-00-Multiuser.user.js +++ b/client/Terminal-00-Multiuser.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name MultiProbe // @namespace https://*.angusnicneven.com/* -// @version 20241008.2 +// @version 20241008.3 // @description Probe with friends! // @author tgpholly // @match https://*.angusnicneven.com/* @@ -55,7 +55,7 @@ console.log("[MP] MultiProbe init"); 'use strict'; // Make sure to change the userscript version too!!!!!!!!!! - const USERSCRIPT_VERSION_RAW = "20241008.2"; + const USERSCRIPT_VERSION_RAW = "20241008.3"; const USERSCRIPT_VERSION = parseInt(USERSCRIPT_VERSION_RAW.replace(".", "")); if (!continueRunningScript) { @@ -510,7 +510,7 @@ mp_button { }, 1000); const debugMessageContainer = document.createElement("mp_container"); - debugMessageContainer.style = "position:fixed;top:0;left:0;padding:8px;margin:4px;pointer-events:none;text-shadow: 0px 0px 4px black;z-index:999999999999;background-color:rgba(0,0,0,0.5);outline:1px solid white"; + debugMessageContainer.style = "position:fixed;top:0;left:0;padding:8px;margin:4px;pointer-events:none;text-shadow: 0px 0px 4px black;z-index:999999999999;background-color:rgba(0,0,0,0.5);outline:1px solid white;backdrop-filter:blur(6px)"; if (!window.multiprobe_debug) { debugMessageContainer.style.display = "none"; }