fix: improve account filter option contrast

This commit is contained in:
Sucukdeluxe
2026-08-09 15:10:28 +02:00
parent 29bdf589eb
commit f84c1f0edd
4 changed files with 27 additions and 5 deletions
+4
View File
@@ -10,6 +10,10 @@ Desktop downloader for Windows with package-based queue management, multi-provid
## Changelog
### 2.0.7
- Improve account filter readability in dark and light themes.
### 2.0.6
- Keeps the download speed history alive when switching between tabs.
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "real-debrid-downloader",
"version": "2.0.6",
"version": "2.0.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "real-debrid-downloader",
"version": "2.0.6",
"version": "2.0.7",
"license": "MIT",
"dependencies": {
"adm-zip": "0.6.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "2.0.6",
"version": "2.0.7",
"description": "Desktop downloader",
"main": "build/main/main/main.js",
"author": "Sucukdeluxe",
+18
View File
@@ -1947,6 +1947,24 @@ body,
gap: 8px;
}
.account-picker-filter {
color-scheme: dark;
}
.account-picker-filter option {
color: #ece6dd;
background: #0c1322;
}
:root[data-theme="light"] .account-picker-filter {
color-scheme: light;
}
:root[data-theme="light"] .account-picker-filter option {
color: #0f223d;
background: #ffffff;
}
.account-modal label {
display: block;
margin-bottom: 6px;