Skip to content

Commit 0b1ee79

Browse files
Fix invalid input:disabled CSS selector
1 parent 94ecdfd commit 0b1ee79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/librustdoc/html/static/themes/ayu.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ details.undocumented > summary::before {
248248
box-shadow: 0 0 0 1px #148099,0 0 0 2px transparent;
249249
}
250250

251-
.search-focus:disabled {
252-
color: #929292;
251+
.search-input:disabled {
252+
background-color: #3e3e3e;
253253
}
254254

255255
.module-item .stab,

src/librustdoc/html/static/themes/dark.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ details.undocumented > summary::before {
209209
border-color: #008dfd;
210210
}
211211

212-
.search-focus:disabled {
212+
.search-input:disabled {
213213
background-color: #c5c4c4;
214214
}
215215

src/librustdoc/html/static/themes/light.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ details.undocumented > summary::before {
207207
border-color: #66afe9;
208208
}
209209

210-
.search-focus:disabled {
210+
.search-input:disabled {
211211
background-color: #e6e6e6;
212212
}
213213

0 commit comments

Comments
 (0)