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 19, 2025
1 parent c62b732 commit 20443db
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 @@ -2473,7 +2473,7 @@ in src-script.js and main.js
}

/* Display an alternating layout on tablets and phones */
.item-row, .search-results > a, .search-results > a > 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 20443db

Please sign in to comment.