Rollup merge of #85367 - GuillaumeGomez:fix-css-rule, r=jsha

Fix invalid input:disabled CSS selector

For some reason, we used "search-focus" instead of "search-input"...

r? ``@jsha``
This commit is contained in:
Ralf Jung 2021-05-17 18:52:09 +02:00 committed by GitHub
commit 266e7afe13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -209,7 +209,7 @@ details.undocumented > summary::before {
border-color: #008dfd;
}
.search-focus:disabled {
.search-input:disabled {
background-color: #c5c4c4;
}

View file

@ -207,7 +207,7 @@ details.undocumented > summary::before {
border-color: #66afe9;
}
.search-focus:disabled {
.search-input:disabled {
background-color: #e6e6e6;
}