From 2c5f97edf5f5315e2ddb2ff0174dc2f3afdfd696 Mon Sep 17 00:00:00 2001 From: "Stanislav Lechev [0xAF]" Date: Sat, 4 Nov 2023 00:51:47 +0200 Subject: [PATCH 1/2] fix border color on receiver panel --- htdocs/css/themes.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/css/themes.css b/htdocs/css/themes.css index 2ec1674b..26a5e456 100644 --- a/htdocs/css/themes.css +++ b/htdocs/css/themes.css @@ -88,6 +88,10 @@ body.has-theme #webrx-canvas-background { box-shadow: 0px 10px 24px -10px var(--theme-color1); } +body.has-theme #openwebrx-panel-receiver { + border-color: var(--theme-color1) !important; +} + body.has-theme .openwebrx-panel, body.has-theme .openwebrx-dialog, body.has-theme .openwebrx-panel select option, From 54010abaf4a7f16397a97a60d04cad62db79eaa8 Mon Sep 17 00:00:00 2001 From: "Stanislav Lechev [0xAF]" Date: Sat, 4 Nov 2023 01:12:20 +0200 Subject: [PATCH 2/2] revert tinting of user-supplied image --- htdocs/css/themes.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/css/themes.css b/htdocs/css/themes.css index 26a5e456..6f65d62c 100644 --- a/htdocs/css/themes.css +++ b/htdocs/css/themes.css @@ -78,13 +78,13 @@ body.theme-night { /* theme implementation follows */ -body.has-theme .webrx-top-container, +body.has-theme .webrx-top-bar, body.has-theme #openwebrx-frequency-container, body.has-theme #webrx-canvas-background { background-color: var(--theme-color2); background-blend-mode: overlay; - /* the next box-shadow is to make waterfall look like it is under the top-bar */ - /* remove the box-shadow, and/or remove this comment */ +} +body.has-theme #openwebrx-frequency-container { box-shadow: 0px 10px 24px -10px var(--theme-color1); }