Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix search colors for PST 0.16.0 #177

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions napari_sphinx_theme/static/css/napari-sphinx-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,6 @@ button.version-switcher__button {
sidebar
***************************/

.bd-search {
border: 1px solid transparent;
}

/* Remove "Section Navigation" caption */
.bd-links__title {
display: none;
Expand Down Expand Up @@ -498,6 +494,14 @@ nav.bd-links .current>a {
search
***************************/

.bd-search {
border: 1px solid transparent;
}

.bd-search:focus-within {
box-shadow: 0 0 0 .1875rem var(--napari-primary-blue);
}

.form-control {
border: 1px transparent;
}
Expand All @@ -508,7 +512,7 @@ search
border: none;
box-shadow: none;
color: var(--pst-color-text-muted);
outline: 3px solid var(--napari-primary-blue);
outline: none;
}

/***************************
Expand Down