Skip to content

Commit

Permalink
Fix input/textarea focus border color in dark theme (#507)
Browse files Browse the repository at this point in the history
* force blue border color on focus

* fix checkbox border-color
  • Loading branch information
js0mmer authored Nov 13, 2024
1 parent f0a6511 commit deb8b14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ button {
background-position: 50%;
background-repeat: no-repeat;
background-size: contain;
border: 1px solid #8888;
border: 1px solid var(--overlay3);
border-radius: 0.25rem;
width: 1em;
height: 1em;
Expand Down
4 changes: 4 additions & 0 deletions site/src/style/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@
border-color: var(--overlay3);
}

.form-control:focus {
border-color: #86bbfb !important;
}

.custom-control-label::before {
background-color: var(--overlay3);
}
Expand Down

0 comments on commit deb8b14

Please sign in to comment.