Rollup merge of #102203 - notriddle:notriddle/source-sidebar, r=GuillaumeGomez

rustdoc: remove no-op CSS `#source-sidebar { z-index }`

This rule became redundant in 07e3f998b1ceb4b8d2a7992782e60f5e776aa114. When `#source-sidebar` became nested below `.sidebar`, it went from being `position: fixed` to `position: static`, and according to MDN's [z-index] documentation, this means it has no effect.

[z-index]: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
This commit is contained in:
Matthias Krüger 2022-09-24 14:29:55 +02:00 committed by GitHub
commit 1c4a85fc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1412,7 +1412,6 @@ pre.rust {
}
#source-sidebar {
width: 100%;
z-index: 1;
overflow: auto;
}
#source-sidebar > .title {
@ -1918,10 +1917,6 @@ in storage.js plus the media query with (min-width: 701px)
border-bottom: 1px solid;
}
#source-sidebar {
z-index: 11;
}
#main-content > .line-numbers {
margin-top: 0;
}