Skip to content

Commit

Permalink
remove hover color for search
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Jan 21, 2024
1 parent 7a1dff9 commit 0c35483
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,18 @@ html[data-theme="light"] {

html[data-theme="dark"] {
--pst-color-secondary: var(--pst-color-primary);
}

.form-control {
background-color: var(--pst-color-background);
color: var(--pst-color-text-base);

&:focus,
&:focus-visible {
border: none;
box-shadow: none;
outline: none;
background-color: var(--pst-color-background);
color: var(--pst-color-text-muted);
}
}

0 comments on commit 0c35483

Please sign in to comment.