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:
commit
f6111930d2
1 changed files with 2 additions and 2 deletions
|
@ -1082,8 +1082,8 @@ h3 > .collapse-toggle, h4 > .collapse-toggle {
|
||||||
|
|
||||||
pre.rust {
|
pre.rust {
|
||||||
position: relative;
|
position: relative;
|
||||||
tab-width: 4;
|
tab-size: 4;
|
||||||
-moz-tab-width: 4;
|
-moz-tab-size: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-failed {
|
.search-failed {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue