From 2952480f377923536e080538ed9b4e669bd3786d Mon Sep 17 00:00:00 2001 From: skomerko <168652295+skomerko@users.noreply.github.com> Date: Sun, 22 Sep 2024 16:36:54 +0200 Subject: [PATCH] WebUI: Use correct text and background colors in RSS details view --- src/webui/www/private/views/rss.html | 8 ++++---- src/webui/www/private/views/rssDownloader.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/webui/www/private/views/rss.html b/src/webui/www/private/views/rss.html index 19f27ff87..4de83e9c5 100644 --- a/src/webui/www/private/views/rss.html +++ b/src/webui/www/private/views/rss.html @@ -25,7 +25,7 @@ } #rssFetchingDisabled { - color: red; + color: var(--color-text-red); font-style: italic; margin-bottom: 10px; } @@ -53,13 +53,13 @@ } #rssTorrentDetailsName { - background-color: #678db2; + background-color: var(--color-background-blue); padding: 0; - color: white; + color: var(--color-text-white); } #rssTorrentDetailsDate { - background-color: #EFEFEF; + background-color: var(--color-background-default); } #rssDetailsView { diff --git a/src/webui/www/private/views/rssDownloader.html b/src/webui/www/private/views/rssDownloader.html index 8c53d6584..85867a42e 100644 --- a/src/webui/www/private/views/rssDownloader.html +++ b/src/webui/www/private/views/rssDownloader.html @@ -64,7 +64,7 @@ } #rssDownloaderDisabled { - color: red; + color: var(--color-text-red); font-style: italic; margin-bottom: 10px; } -- 2.11.4.GIT