Skip to content

Commit

Permalink
Fix an issue where selects had white text on white background on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Boberg <[email protected]>
  • Loading branch information
axelboberg committed Jan 10, 2024
1 parent 177c54a commit 56e1159
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/bridge.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ html:not([data-platform="darwin"]) *::-webkit-scrollbar-track {
}

html:not([data-platform="darwin"]) *::-webkit-scrollbar-thumb {
background-color: var(--base-color--shade1);
background-color: var(--base-color--shade);
border-radius: 10px;
outline: none;
}
Expand Down Expand Up @@ -137,6 +137,10 @@ select {
padding: 0.4em 1em;
}

select:focus {
background: var(--base-color--background);
}

/* Headings */

h1, .u-heading--1 {
Expand Down

0 comments on commit 56e1159

Please sign in to comment.