Skip to content

Commit 41ea242

Browse files
committed
Fix select options background in dark mode
1 parent cc238fc commit 41ea242

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## [Unreleased]
22
- Refactor notice flash to use tag.div in application.html.erb
3+
- Fix select options background in dark mode
34

45
## 2.0.0 - 2025-08-04
56
- Add debouncedSubmit to form_controller

lib/generators/css_zero/add/templates/app/assets/stylesheets/input.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.input {
22
appearance: none;
3-
background-color: var(--input-background, transparent);
3+
background-color: var(--input-background, var(--color-bg));
44
block-size: var(--input-block-size, auto);
55
border: 1px solid var(--input-border-color, var(--color-border));
66
border-radius: var(--input-radius, var(--rounded-md));

0 commit comments

Comments
 (0)