Skip to content

Commit f46d4ed

Browse files
authored
fix(style): dropdown not visible on windows dark theme. (#739)
# Motivation The select options of the dropdown are not visible on Windows with the dark-theme (reproduced on W10 Chrome / Firefox / Edge). <img width="960" height="540" alt="chrome" src="https://github.com/user-attachments/assets/59555e14-dc2c-47e1-94e1-e5b2ff1a81a7" /> <img width="960" height="540" alt="edge" src="https://github.com/user-attachments/assets/b6cdb38a-9efc-4258-9133-071d4f947d7c" /> # Changes Adjust the styling to make the options visible on windows. <img width="960" height="540" alt="fix" src="https://github.com/user-attachments/assets/89d58960-7481-4aeb-b960-16bea900c6e5" />
1 parent 6b6dc04 commit f46d4ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/Dropdown.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
6363
select {
6464
width: 100%;
65-
background: transparent;
65+
background: var(--input-background);
6666
border: none;
6767
6868
--select-padding-inner-top-bottom: var(

0 commit comments

Comments
 (0)