From dfb98b7565f61b490e8a65f37fd0b462e6fdf3ec Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:09:18 +0200 Subject: [PATCH 01/37] Consolidate css --- scripts/overview.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/overview.php b/scripts/overview.php index cb10067..f684062 100644 --- a/scripts/overview.php +++ b/scripts/overview.php @@ -427,17 +427,6 @@ function generateMiniGraph(elem, comname) { } var chartWindow = document.createElement('div'); chartWindow.className = "chartdiv" - chartWindow.style.position = 'fixed'; - chartWindow.style.top = '0%'; - chartWindow.style.left = '50%'; - chartWindow.style.width = window.innerWidth < 700 ? '40%' : '20%'; - chartWindow.style.height = window.innerWidth < 700 ? '25%' : '16%'; - chartWindow.style.backgroundColor = '#fff'; - chartWindow.style.zIndex = '9999'; - chartWindow.style.overflow = 'auto'; - chartWindow.style.borderRadius = '5px'; - chartWindow.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)'; - document.body.appendChild(chartWindow); From 1c5691dd1b13c286b94d4eae11802f3b083b8b6f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:10:04 +0200 Subject: [PATCH 02/37] Consolidate css --- scripts/todays_detections.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/todays_detections.php b/scripts/todays_detections.php index 5a1f088..0b24264 100644 --- a/scripts/todays_detections.php +++ b/scripts/todays_detections.php @@ -575,17 +575,6 @@ function generateMiniGraph(elem, comname) { } var chartWindow = document.createElement('div'); chartWindow.className = "chartdiv" - chartWindow.style.position = 'fixed'; - chartWindow.style.top = '0%'; - chartWindow.style.left = '50%'; - chartWindow.style.width = window.innerWidth < 700 ? '40%' : '20%'; - chartWindow.style.height = window.innerWidth < 700 ? '25%' : '16%'; - chartWindow.style.backgroundColor = '#fff'; - chartWindow.style.zIndex = '9999'; - chartWindow.style.overflow = 'auto'; - chartWindow.style.borderRadius = '5px'; - chartWindow.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)'; - document.body.appendChild(chartWindow); From b779e9f1ef6d8f5b817f4225bd2ec6d38d11d917 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:10:57 +0200 Subject: [PATCH 03/37] Add chartdiv style --- homepage/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/homepage/style.css b/homepage/style.css index 3274e22..7eaaa20 100644 --- a/homepage/style.css +++ b/homepage/style.css @@ -132,6 +132,19 @@ button:hover { font-size: x-large; } +.chartdiv { + position: fixed; + top: 0%; + left: 50%; + width: calc(40% - 2px); + height: calc(25% - 2px); + background-color: #fff; + z-index: 9999; + overflow: auto; + border-radius: 5px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); +} + .logo img { position: absolute; top: 0; From 530d4566b3c0f80fe934fcffe2322c9979bf6062 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:16:39 +0200 Subject: [PATCH 04/37] Add chartdiv to darkstyle --- homepage/static/dark-style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 230ecfd..e9cd265 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -137,6 +137,19 @@ button:hover { font-size: x-large; } +.chartdiv { + position: fixed; + top: 0%; + left: 50%; + width: calc(40% - 2px); + height: calc(25% - 2px); + background-color: #2b2b2b; + z-index: 9999; + overflow: auto; + border-radius: 5px; + box-shadow: 0 4px 8px #f5f5f5; +} + .logo img { position: absolute; top: 0; From a1adae70799b54a73099fea2eab2cc9a74b82086 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:26:30 +0200 Subject: [PATCH 05/37] Fix background on weekly report --- scripts/weekly_report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/weekly_report.php b/scripts/weekly_report.php index 47cfaa1..1ef574d 100644 --- a/scripts/weekly_report.php +++ b/scripts/weekly_report.php @@ -163,7 +163,7 @@ while($detection=$result1->fetchArray(SQLITE3_ASSOC)) ?>
-
+
@@ -197,7 +197,7 @@ while($detection=$result1->fetchArray(SQLITE3_ASSOC)) ?>
-
+ From 218b5ea6195560d2c92398ca22c3c42fad8b16c2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:07:39 +0200 Subject: [PATCH 06/37] Use css for sortbuttons style Thanks #hiemstra87 https://github.com/Nachtzuster/BirdNET-Pi/pull/115 Co-Authored-By: Hiemstra87 <145980686+hiemstra87@users.noreply.github.com> --- homepage/static/dark-style.css | 10 ++++++++++ homepage/style.css | 10 ++++++++++ scripts/play.php | 10 +++++----- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index e9cd265..e1322e2 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -669,6 +669,16 @@ button:hover { box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } +.sortbutton button:hover { + background-color: #2b2b2b; + color: white; +} + +.sortbutton button.active { + background-color: #2b2b2b; + color: white; +} + button.legacyview { display: none; color:gray; diff --git a/homepage/style.css b/homepage/style.css index 7eaaa20..b039cbd 100644 --- a/homepage/style.css +++ b/homepage/style.css @@ -641,6 +641,16 @@ button:hover { box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } +.sortbutton button:hover { + background-color: #77c487; + color: white; +} + +.sortbutton button.active { + background-color: #77c487; + color: white; +} + button.legacyview { display: none; color:gray; diff --git a/scripts/play.php b/scripts/play.php index dc9286f..88223d4 100644 --- a/scripts/play.php +++ b/scripts/play.php @@ -400,14 +400,14 @@ if(!isset($_GET['species']) && !isset($_GET['filename'])){
+ text-align: center">
- - @@ -517,10 +517,10 @@ if(isset($_GET['species'])){ ?> - -
type="checkbox" name="only_excluded" onChange="submit()"> From a2bd84c30e35cbd090fde4e35e0a66b276497858 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:10:57 +0200 Subject: [PATCH 07/37] Align stats.php with css @hiemstra87 Co-Authored-By: Hiemstra87 <145980686+hiemstra87@users.noreply.github.com> --- scripts/stats.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/stats.php b/scripts/stats.php index 8cb4ba0..eb64f74 100644 --- a/scripts/stats.php +++ b/scripts/stats.php @@ -65,10 +65,10 @@ if (get_included_files()[0] === __FILE__) {
- - From 75b5dc57ee7ed5d8b885dde4d7fd11b1814311b0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:32:23 +0200 Subject: [PATCH 08/37] Add class="sortbutton" --- scripts/play.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/play.php b/scripts/play.php index 88223d4..526f59b 100644 --- a/scripts/play.php +++ b/scripts/play.php @@ -400,7 +400,7 @@ if(!isset($_GET['species']) && !isset($_GET['filename'])){
+ text-align: center" class="sortbutton">
@@ -512,7 +512,7 @@ for ($row = 0; $row < $num_rows; $row++) { #Specific Species if(isset($_GET['species'])){ ?>
+ text-align: center" class="sortbutton"> From 15898dc25154db828bc91ffa044d90c034f65bea Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:39:45 +0200 Subject: [PATCH 09/37] Add class in div --- scripts/stats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stats.php b/scripts/stats.php index eb64f74..cfeedcf 100644 --- a/scripts/stats.php +++ b/scripts/stats.php @@ -61,7 +61,7 @@ if (get_included_files()[0] === __FILE__) {
+ text-align: center" class="sortbutton"> From 8fa422adcff1ae0497610536b322a05916d9bf95 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:45:09 +0200 Subject: [PATCH 10/37] Update php + dark css @hiemstra87 Co-Authored-By: Hiemstra87 <145980686+hiemstra87@users.noreply.github.com> --- homepage/static/dark-style.css | 10 +++++----- scripts/play.php | 14 +++++++------- scripts/stats.php | 8 ++++---- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index e1322e2..1a4dcad 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -664,19 +664,19 @@ button:hover { .sortbutton { margin-top:10px; font-size:x-large; - background:#3b3b3b; + background: #BB4242; padding:5px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } .sortbutton button:hover { - background-color: #2b2b2b; - color: white; + background-color: #00FFFF; + color: #108810; } .sortbutton button.active { - background-color: #2b2b2b; - color: white; + background-color: #000000; + color: #f5d214; } button.legacyview { diff --git a/scripts/play.php b/scripts/play.php index 526f59b..7c11816 100644 --- a/scripts/play.php +++ b/scripts/play.php @@ -399,15 +399,15 @@ if(!isset($_GET['species']) && !isset($_GET['filename'])){ ?>
-
+
- - @@ -512,15 +512,15 @@ for ($row = 0; $row < $num_rows; $row++) { #Specific Species if(isset($_GET['species'])){ ?>
+ text-align: center">
- -
type="checkbox" name="only_excluded" onChange="submit()"> diff --git a/scripts/stats.php b/scripts/stats.php index cfeedcf..43158df 100644 --- a/scripts/stats.php +++ b/scripts/stats.php @@ -60,15 +60,15 @@ if (get_included_files()[0] === __FILE__) {
-
+
- - From 939283e71bcd0a3e1fa0146305b966a79d2d6025 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:45:42 +0200 Subject: [PATCH 11/37] Darker palette --- homepage/static/dark-style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 1a4dcad..0435d6c 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -670,13 +670,13 @@ button:hover { } .sortbutton button:hover { - background-color: #00FFFF; - color: #108810; + background-color: #007D7D; + color: #6EBE64; } .sortbutton button.active { background-color: #000000; - color: #f5d214; + color: #F3CA40; } button.legacyview { From c2240c984b419bd2cedbd33c39d0b8c1da956721 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:48:54 +0200 Subject: [PATCH 12/37] Realign to comment 2180493471 Co-Authored-By: Hiemstra87 <145980686+hiemstra87@users.noreply.github.com> --- homepage/static/dark-style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 0435d6c..1a89f60 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -669,12 +669,12 @@ button:hover { box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } -.sortbutton button:hover { +.sortbutton:hover { background-color: #007D7D; color: #6EBE64; } -.sortbutton button.active { +.sortbutton active { background-color: #000000; color: #F3CA40; } From 5a2d479ff224b3496e4be84d2264b1382d16ab7d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:50:13 +0200 Subject: [PATCH 13/37] Need to read more slowly --- homepage/static/dark-style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 1a89f60..2c20a13 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -674,7 +674,7 @@ button:hover { color: #6EBE64; } -.sortbutton active { +.sortbutton.active { background-color: #000000; color: #F3CA40; } From 26789ee7cf7adcae75a16fbb8fcd6c5b93cff335 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:56:19 +0200 Subject: [PATCH 14/37] Invert background of active --- homepage/static/dark-style.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 2c20a13..bdf2e71 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -664,19 +664,19 @@ button:hover { .sortbutton { margin-top:10px; font-size:x-large; - background: #BB4242; + background: #3b3b3b; padding:5px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } .sortbutton:hover { - background-color: #007D7D; - color: #6EBE64; + background-color: #007d7d; + color: #6ebe64; } .sortbutton.active { - background-color: #000000; - color: #F3CA40; + background-color: #bb4242; + color: #f3ca40; } button.legacyview { @@ -753,7 +753,7 @@ dt { width: auto; text-align: left; font-weight: bold; - color: gray; + color: #b2b2b2; } dd::before { content: ": "; @@ -761,8 +761,8 @@ dd::before { input { box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.10); - background-color: #333; - color: #fff; + background-color: #3b3b3b; + color: #f5f5f5; } dialog { @@ -841,7 +841,7 @@ dialog::backdrop { position:absolute; display:inline-block; background-color:#c8191a; - color:white; + color:#f5f5f5; width:20px; line-height:20px; border-radius:12px; From f09c9acab2c5a5f72de0ad54d96dbf5685c88a8b Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 20 Jun 2024 17:18:18 +0200 Subject: [PATCH 15/37] Return to gray scale @hiemstra87 Co-Authored-By: Hiemstra87 <145980686+hiemstra87@users.noreply.github.com> --- homepage/static/dark-style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index bdf2e71..0d83b00 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -670,13 +670,13 @@ button:hover { } .sortbutton:hover { - background-color: #007d7d; - color: #6ebe64; + background-color: #AAAAAA; + color: white; } .sortbutton.active { - background-color: #bb4242; - color: #f3ca40; + background-color: #777777; + color: white; } button.legacyview { From f622b073dd265a75be70852e4c2aa919cc59f07f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:47:54 +0200 Subject: [PATCH 16/37] Align droplists to testbtn style (already used) --- scripts/advanced.php | 4 ++-- scripts/config.php | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/advanced.php b/scripts/advanced.php index b1e6cee..021f393 100644 --- a/scripts/advanced.php +++ b/scripts/advanced.php @@ -297,7 +297,7 @@ $newconfig = get_config();

Set Extraction Length to something less than your Recording Length. Min=3 Max=Recording Length

- - Model -

Localization

- 'Not Selected', @@ -623,7 +623,7 @@ https://discordapp.com/api/webhooks/{WebhookID}/{WebhookToken}

Additional Info

- 'allaboutbirds.org', @@ -650,7 +650,7 @@ https://discordapp.com/api/webhooks/{WebhookID}/{WebhookToken}

Color scheme

- format('H:i'); ?>" >

- From 4384f32c8326806f96c90cfde481608142aab559 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:53:29 +0200 Subject: [PATCH 17/37] Align remaining droplists with testbtn --- scripts/advanced.php | 6 +++--- scripts/config.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/advanced.php b/scripts/advanced.php index 021f393..fc6f430 100644 --- a/scripts/advanced.php +++ b/scripts/advanced.php @@ -511,7 +511,7 @@ foreach($formats as $format){
Birdnet Recording: - @@ -529,7 +529,7 @@ foreach($formats as $format){
Live Audio Stream: - @@ -547,7 +547,7 @@ foreach($formats as $format){
Spectrogram Service: - diff --git a/scripts/config.php b/scripts/config.php index fe0e4db..9e53322 100644 --- a/scripts/config.php +++ b/scripts/config.php @@ -496,7 +496,7 @@ function runProcess() { tgram://{bot_token}/{chat_id} twitter://{ConsumerKey}/{ConsumerSecret}/{AccessToken}/{AccessSecret} https://discordapp.com/api/webhooks/{WebhookID}/{WebhookToken} -..." style="vertical-align: top" name="apprise_input" rows="5" type="text" > +..." style="vertical-align: top" class="testbtn" name="apprise_input" rows="5" type="text" >
$sciname
Scientific Name
From f117a44623066696f8f05a431a6b94a4dbcf4387 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 21 Jun 2024 09:33:54 +0200 Subject: [PATCH 18/37] Not needed anymore as css styles were defined for droplists --- homepage/static/dark-style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 0d83b00..43d22b1 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -8,7 +8,6 @@ box-sizing: border-box; font-size: medium; color: #f5f5f5; - background-color: transparent; } a { From 6b905b200c5ebb931607058cfd69bb9fbbf2adae Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 21 Jun 2024 09:47:13 +0200 Subject: [PATCH 19/37] Css : fix adminer background --- homepage/static/dark-style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 43d22b1..2493440 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -30,6 +30,7 @@ iframe { height: 85%; width: 100%; position: fixed; + background-color: grey; } body { From 26de85166939c0f7ad61a7ce15df7468e97c1c84 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:19:47 +0200 Subject: [PATCH 20/37] Improve flickr overlay image dark layout --- homepage/static/dark-style.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 2493440..14d3dd9 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -767,17 +767,18 @@ input { dialog { border:none; + background-color:rgba(59, 59, 59, 0.9); } dialog::backdrop { background: repeating-linear-gradient( 30deg, - rgba(24, 194, 236, 0.2), - rgba(24, 194, 236, 0.2) 1px, - rgba(24, 194, 236, 0.3) 1px, - rgba(24, 194, 236, 0.3) 20px + rgba(30, 50, 80, 0.2), + rgba(30, 50, 80, 0.2) 1px, + rgba(30, 50, 80, 0.3) 1px, + rgba(30, 50, 80, 0.3) 20px ); - backdrop-filter: blur(1px); + backdrop-filter: blur(3px); } .centered_image_container { From 87d330dd2ed872b1885efb24ee33ec5fb9d238d7 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 21 Jun 2024 10:23:32 +0200 Subject: [PATCH 21/37] Align light css for sortbutton @hiemstra87 Co-Authored-By: Hiemstra <145980686+hiemstra87@users.noreply.github.com> --- homepage/style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/homepage/style.css b/homepage/style.css index b039cbd..fd466e6 100644 --- a/homepage/style.css +++ b/homepage/style.css @@ -636,18 +636,18 @@ button:hover { .sortbutton { margin-top:10px; font-size:x-large; - background:#dbffeb; + background:#77c487; padding:5px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.10); } -.sortbutton button:hover { - background-color: #77c487; +.sortbutton:hover { + background-color: #dbffeb; color: white; } -.sortbutton button.active { - background-color: #77c487; +.sortbutton.active { + background-color: #dbffeb; color: white; } From a675166552574ed4f4c51d81babd9dd154cd062d Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 21 Jun 2024 10:27:28 +0200 Subject: [PATCH 22/37] Lighter green for drop down @hiemstra87 I used the same light green as already present in the css code for showpassword and rtspstream Co-Authored-By: Hiemstra <145980686+hiemstra87@users.noreply.github.com> --- homepage/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homepage/style.css b/homepage/style.css index fd466e6..cac7810 100644 --- a/homepage/style.css +++ b/homepage/style.css @@ -868,7 +868,7 @@ form#views button .updatenumber { } .testbtn { - background:#77c487 !important; + background:#9fe29b !important; } pre.bash { From 51160afc76421bca0d8ff59b86930bd8ea53eadc Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 21 Jun 2024 20:45:57 +0200 Subject: [PATCH 23/37] Fix rtsp address in livestream --- scripts/spectrogram.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/spectrogram.php b/scripts/spectrogram.php index 2ad0dba..df5734c 100644 --- a/scripts/spectrogram.php +++ b/scripts/spectrogram.php @@ -413,7 +413,7 @@ h1 { ?>
- Date: Fri, 21 Jun 2024 21:24:44 +0200 Subject: [PATCH 24/37] Use color_scheme config option for filemanager --- scripts/filemanager/filemanager.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/filemanager/filemanager.php b/scripts/filemanager/filemanager.php index 8d2f011..b85a714 100644 --- a/scripts/filemanager/filemanager.php +++ b/scripts/filemanager/filemanager.php @@ -1,6 +1,9 @@ Date: Sat, 22 Jun 2024 16:46:36 +0200 Subject: [PATCH 25/37] Slide thumb grey --- homepage/static/dark-style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 14d3dd9..31ca29f 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -1,3 +1,4 @@ + @font-face { font-family: 'Roboto Flex' ; src: url('static/RobotoFlex-Regular.ttf') format('truetype'); @@ -480,7 +481,7 @@ button:hover { width: 25px; height: 25px; border-radius: 50%; - background: #04AA6D; + background: #9b9b9b; cursor: pointer; } @@ -488,7 +489,7 @@ button:hover { width: 25px; height: 25px; border-radius: 50%; - background: #04AA6D; + background: #9b9b9b; cursor: pointer; } From b22c253ba33fce33728ca98eb00e5d987870d2fc Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 22 Jun 2024 16:48:03 +0200 Subject: [PATCH 26/37] Lighter slider thumb --- homepage/static/dark-style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homepage/static/dark-style.css b/homepage/static/dark-style.css index 31ca29f..3db0377 100644 --- a/homepage/static/dark-style.css +++ b/homepage/static/dark-style.css @@ -481,7 +481,7 @@ button:hover { width: 25px; height: 25px; border-radius: 50%; - background: #9b9b9b; + background: #f5f5f5; cursor: pointer; } @@ -489,7 +489,7 @@ button:hover { width: 25px; height: 25px; border-radius: 50%; - background: #9b9b9b; + background: #f5f5f5; cursor: pointer; } From 6e28c3a268d67411ec93aeaef6cfcc582d39a2ea Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 22 Jun 2024 17:27:02 +0200 Subject: [PATCH 27/37] Color scheme added to phpsysinfo --- templates/index_bootstrap.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/templates/index_bootstrap.html b/templates/index_bootstrap.html index 90b1b9c..0869cbd 100644 --- a/templates/index_bootstrap.html +++ b/templates/index_bootstrap.html @@ -58,8 +58,16 @@