Skip to content

Commit b8e3e72

Browse files
Remove unused item-row CSS class
1 parent bcd0683 commit b8e3e72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/librustdoc/html/static/css/rustdoc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2476,7 +2476,7 @@ in src-script.js and main.js
24762476
}
24772477

24782478
/* Display an alternating layout on tablets and phones */
2479-
.item-table, .item-row, .item-table > li, .item-table > li > div,
2479+
.item-table, .item-table > li, .item-table > li > div,
24802480
.search-results > a, .search-results > a > div {
24812481
display: block;
24822482
}

tests/rustdoc/multiple-mods-w-same-name-doc-inline-83375.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub mod sub {
1010
}
1111

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

1616
#[doc(inline)]

tests/rustdoc/multiple-mods-w-same-name-doc-inline-last-item-83375.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ pub mod sub {
1313
pub use sub::*;
1414

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

0 commit comments

Comments
 (0)