Skip to content

Commit

Permalink
Remove unused item-row CSS class
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jan 18, 2025
1 parent bcd0683 commit b8e3e72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -2476,7 +2476,7 @@ in src-script.js and main.js
}

/* Display an alternating layout on tablets and phones */
.item-table, .item-row, .item-table > li, .item-table > li > div,
.item-table, .item-table > li, .item-table > li > div,
.search-results > a, .search-results > a > div {
display: block;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub mod sub {
}

//@ count foo/index.html '//a[@class="mod"][@title="mod foo::prelude"]' 1
//@ count foo/prelude/index.html '//div[@class="item-row"]' 0
//@ count foo/prelude/index.html '//ul[@class="item-table"]' 0
pub mod prelude {}

#[doc(inline)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ pub mod sub {
pub use sub::*;

//@ count foo/index.html '//a[@class="mod"][@title="mod foo::prelude"]' 1
//@ count foo/prelude/index.html '//div[@class="item-row"]' 0
//@ count foo/prelude/index.html '//ul[@class="item-table"]' 0
pub mod prelude {}

0 comments on commit b8e3e72

Please sign in to comment.