Skip to content

Commit

Permalink
Unfold collapsible tables for Desktop and Mobile renders
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimKovalenkoSNF committed Oct 26, 2023
1 parent 28adc40 commit 3b25482
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions res/content.parsoid.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,8 @@ figure[typeof~='mw:Video']>figcaption,
figure[typeof~='mw:Audio']>figcaption {
display: none;
}

/* Unfold collapsible tables */
.client-js .collapsible:not(.mw-made-collapsible).collapsed > tbody > tr:not(:first-child) {
display: block !important;
}
5 changes: 5 additions & 0 deletions res/wm_mobile_override_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ span.noviewer {
width: auto !important;
max-width: 100% !important;
}

/* Unfold collapsible tables */
.client-js .collapsible:not(.mw-made-collapsible).collapsed > tbody > tr:not(:first-child) {
display: block !important;
}

0 comments on commit 3b25482

Please sign in to comment.