Rollup merge of #87251 - GuillaumeGomez:item-info-width, r=notriddle
Fix "item info" width Fixes #87202. It now looks again like this:  cc `@jyn514` r? `@notriddle`
This commit is contained in:
commit
8cf995f6ac
3 changed files with 13 additions and 0 deletions
|
@ -925,6 +925,9 @@ body.blur > :not(#help) {
|
||||||
padding: 0 20px 20px 17px;;
|
padding: 0 20px 20px 17px;;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.item-info .stab {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
.stab {
|
.stab {
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
|
7
src/test/rustdoc-gui/item-info-width.goml
Normal file
7
src/test/rustdoc-gui/item-info-width.goml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
// This test ensures that the item information don't take 100% of the width if unnecessary.
|
||||||
|
goto: file://|DOC_PATH|/lib2/struct.Foo.html
|
||||||
|
// We set a fixed size so there is no chance of "random" resize.
|
||||||
|
size: (1100, 800)
|
||||||
|
// We check that ".item-info" is bigger than its content.
|
||||||
|
assert-css: (".item-info", {"width": "807px"})
|
||||||
|
assert-css: (".item-info .stab", {"width": "343px"})
|
|
@ -1,5 +1,7 @@
|
||||||
// ignore-tidy-linelength
|
// ignore-tidy-linelength
|
||||||
|
|
||||||
|
#![feature(doc_cfg)]
|
||||||
|
|
||||||
pub mod module {
|
pub mod module {
|
||||||
pub mod sub_module {
|
pub mod sub_module {
|
||||||
pub mod sub_sub_module {
|
pub mod sub_sub_module {
|
||||||
|
@ -14,6 +16,7 @@ pub fn foobar() {}
|
||||||
|
|
||||||
pub type Alias = u32;
|
pub type Alias = u32;
|
||||||
|
|
||||||
|
#[doc(cfg(feature = "foo-method"))]
|
||||||
pub struct Foo {
|
pub struct Foo {
|
||||||
pub x: Alias,
|
pub x: Alias,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue