1
Fork 0

Rollup merge of #70493 - 0xd4d:rustdoc-tab-size, r=GuillaumeGomez

Fix rustdoc.css CSS tab-size property

This fixes the CSS tab size property names which are called `tab-size` / `-moz-tab-size` and not `tab-width`

Old issue https://github.com/rust-lang/rust/issues/49155 and related PR https://github.com/rust-lang/rust/pull/50947

tab-size: https://developer.mozilla.org/en-US/docs/Web/CSS/tab-size
This commit is contained in:
Dylan DPC 2020-03-28 15:22:01 +01:00 committed by GitHub
commit f6111930d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1082,8 +1082,8 @@ h3 > .collapse-toggle, h4 > .collapse-toggle {
pre.rust {
position: relative;
tab-width: 4;
-moz-tab-width: 4;
tab-size: 4;
-moz-tab-size: 4;
}
.search-failed {