storkit: merge 397_bug_selection_screen_directory_picker_unreadable_in_dark_mode

This commit is contained in:
Timmy
2026-03-26 11:13:24 +00:00
parent 1a7f419ecf
commit 108a697483
5 changed files with 538 additions and 9 deletions
+46
View File
@@ -236,3 +236,49 @@ body,
opacity: 0;
}
}
/* ProjectPathInput dropdown theming */
.path-dropdown {
border: 1px solid #ddd;
background: #fff;
color: #0f0f0f;
}
.path-dropdown-header {
border-bottom: 1px solid #eee;
background: #fafafa;
}
.path-dropdown-item {
background: transparent;
}
.path-dropdown-item--selected {
background: #f0f0f0;
}
.path-match-highlight {
font-weight: 600;
color: #222;
}
@media (prefers-color-scheme: dark) {
.path-dropdown {
border-color: #555;
background: #1e1e1e;
color: #f6f6f6;
}
.path-dropdown-header {
border-bottom-color: #444;
background: #2a2a2a;
}
.path-dropdown-item--selected {
background: #3a3a3a;
}
.path-match-highlight {
color: #f6f6f6;
}
}