diff --git a/programs/server/play.html b/programs/server/play.html index 4c9427ef2445..296509546917 100644 --- a/programs/server/play.html +++ b/programs/server/play.html @@ -53,6 +53,7 @@ --border-color: #CCC; --shadow-color: rgba(0, 0, 0, 0.1); --button-color: var(--altinity-accent); + --button-text-color: #000; --text-color: #000; --text-color-active: #000; --button-active-color: var(--altinity-accent); @@ -435,6 +436,7 @@ padding: 0.25rem 0.65rem; cursor: pointer; position: relative; + font-size: 100%; } .copy-balloon @@ -477,6 +479,7 @@ padding: 0.25rem 0.65rem; cursor: pointer; position: relative; + font-size: 100%; } #download @@ -608,6 +611,7 @@ } #logo text { + font-size: 14px; fill: var(--logo-color); } @@ -692,19 +696,19 @@
 (Ctrl/Cmd+Enter)
-
+
-
+ +
+
🌘☀️
@@ -2554,7 +2558,8 @@ // Favicon changes to gray while a query is running, to indicate progress on the browser tab. const favicon_default = document.querySelector('link[rel="icon"]').href; -const favicon_running = 'data:image/svg+xml;base64,' + btoa(atob(favicon_default.split(',')[1]).replace('#ff0', '#bbb')); +const favicon_svg = atob(favicon_default.split(',')[1]); +const favicon_running = 'data:image/svg+xml;base64,' + btoa(favicon_svg.replace(/#(?:ff0|199DCF)/i, '#bbb')); function setFavicon(href) { document.querySelector('link[rel="icon"]').href = href; }