Skip to content

Commit 39017ca

Browse files
committed
More style improvements for table
1 parent f1a8334 commit 39017ca

4 files changed

Lines changed: 18 additions & 2 deletions

File tree

app/components/build-result-summary-table.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<table class="test-result-summary-table" data-test-results-table>
1+
<table class="build-result-summary-table" data-test-results-table>
22
<thead>
33
<tr>
44
<th>Scenario</th>

app/styles/app.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
@import "addons_index";
1616
@import "addons-list";
1717
@import "components/build-result-output";
18+
@import "components/build-result-summary-table";
1819
@import "components/code-search";
1920
@import "components/dependency-table";
2021
@import "components/large-search";
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.build-result-summary-table {
2+
width: auto;
3+
4+
td {
5+
padding: 0.75em;
6+
}
7+
8+
th:first-child {
9+
width: 15em;
10+
}
11+
th:not(:first-child) {
12+
width: 8em;
13+
}
14+
}

app/templates/admin/build-results/show.hbs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@
2424
</div>
2525

2626
{{#if this.buildResult.emberTryResults}}
27+
<h2>Results</h2>
2728
<BuildResultSummaryTable @results={{this.buildResult.emberTryResults}} />
2829
{{/if}}
2930

3031
<h2>Output</h2>
3132
<BuildResultOutput @buildResult={{this.buildResult}} />
32-
</div>
33+
</div>

0 commit comments

Comments
 (0)