Skip to content

Commit

Permalink
fix: Adjust colours of CodeMirror "Find" dialog on "light" background. (
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix authored Apr 4, 2021
1 parent 9f5f340 commit 615b1ae
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,15 @@ const EditorWrapper = styled.div`
width: 20em;
}
.CodeMirror-dialog span.CodeMirror-search-label {
color: ${p => p.theme.colours.text};
}
.CodeMirror-dialog input.CodeMirror-search-field {
color: ${p => p.theme.colours.text};
background: ${p => p.theme.colours.background};
}
.CodeMirror-dialog button {
font-size: 70%;
}
Expand Down

0 comments on commit 615b1ae

Please sign in to comment.