Skip to content

Commit

Permalink
style(MatrixTestResult): Increase column width
Browse files Browse the repository at this point in the history
`4em` is too narrow for texts like `6 hr 17 min` to fit into: It is shown on two lines as:
> 6 hr 17
> min

The German translation is even worse, which spans 4 lines:
> 6
> Stunden
> 17
> Minuten

which make the table to take up too much space.
  • Loading branch information
pmhahn authored Oct 11, 2023
1 parent 4e80c26 commit 1123661
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ THE SOFTWARE.
<table class="pane sortable bigtable">
<tr>
<td class="pane-header">Configuration Name</td>
<td class="pane-header" style="width:4em;text-align:right">Duration</td>
<td class="pane-header" style="width:6em;text-align:right">Duration</td>
<td class="pane-header" style="width:4em;text-align:right">All</td>
<td class="pane-header" style="width:4em;text-align:right">Failed</td>
<td class="pane-header" style="width:4em;text-align:right">Skipped</td>
Expand Down

0 comments on commit 1123661

Please sign in to comment.