fix: improve account filter option contrast
This commit is contained in:
@@ -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.
|
||||
|
||||
Generated
+2
-2
@@ -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
@@ -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",
|
||||
|
||||
+20
-2
@@ -1946,8 +1946,26 @@ body,
|
||||
grid-template-columns: minmax(145px, 0.32fr) minmax(0, 1fr);
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.account-modal label {
|
||||
|
||||
.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;
|
||||
color: color-mix(in srgb, var(--text) 92%, var(--muted));
|
||||
|
||||
Reference in New Issue
Block a user