Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "item info" width #87251

Merged
merged 2 commits into from
Jul 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,9 @@ body.blur > :not(#help) {
padding: 0 20px 20px 17px;;
}

.item-info .stab {
display: table;
}
.stab {
border-width: 1px;
border-style: solid;
Expand Down
7 changes: 7 additions & 0 deletions src/test/rustdoc-gui/item-info-width.goml
Original file line number Diff line number Diff line change
@@ -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"})
3 changes: 3 additions & 0 deletions src/test/rustdoc-gui/src/lib2/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// ignore-tidy-linelength

#![feature(doc_cfg)]

pub mod module {
pub mod sub_module {
pub mod sub_sub_module {
Expand All @@ -14,6 +16,7 @@ pub fn foobar() {}

pub type Alias = u32;

#[doc(cfg(feature = "foo-method"))]
pub struct Foo {
pub x: Alias,
}
Expand Down