Rollup merge of #103855 - notriddle:notriddle/mobile-item-table, r=GuillaumeGomez

rustdoc: simplify mobile item-table CSS

Using flexbox in column direction is needlessly complicated, since no special flex powers are being used here. Just use regular block layout.

This should result in no visible changes.
This commit is contained in:
Dylan DPC 2022-11-02 22:32:05 +05:30 committed by GitHub
commit cd9173ec40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -1870,16 +1870,9 @@ in storage.js
}
/* Display an alternating layout on tablets and phones */
.item-table {
.item-table, .item-row, .item-left, .item-right {
display: block;
}
.item-row {
display: flex;
flex-flow: column wrap;
}
.item-left, .item-right {
width: 100%;
}
/* Display an alternating layout on tablets and phones */
.search-results > a {