Skip to content

Commit

Permalink
Fix invalid input:disabled CSS selector
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed May 16, 2021
1 parent 94ecdfd commit 0b1ee79
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/librustdoc/html/static/themes/ayu.css
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ details.undocumented > summary::before {
box-shadow: 0 0 0 1px #148099,0 0 0 2px transparent;
}

.search-focus:disabled {
color: #929292;
.search-input:disabled {
background-color: #3e3e3e;
}

.module-item .stab,
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ details.undocumented > summary::before {
border-color: #008dfd;
}

.search-focus:disabled {
.search-input:disabled {
background-color: #c5c4c4;
}

Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ details.undocumented > summary::before {
border-color: #66afe9;
}

.search-focus:disabled {
.search-input:disabled {
background-color: #e6e6e6;
}

Expand Down

0 comments on commit 0b1ee79

Please sign in to comment.