Fix table widths
This commit is contained in:
parent
425dd689ae
commit
06417b6069
2 changed files with 26 additions and 28 deletions
|
@ -1,27 +1,25 @@
|
||||||
<div class="overflow-div">
|
<table class="flakes-table">
|
||||||
<table class="flakes-table">
|
<thead>
|
||||||
<thead>
|
<tr>
|
||||||
|
<th>Characteristic</th>
|
||||||
|
{{#each strains as |strain|}}
|
||||||
|
<th>
|
||||||
|
{{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}}
|
||||||
|
{{strain.fullNameMU}}
|
||||||
|
{{/link-to}}
|
||||||
|
</th>
|
||||||
|
{{/each}}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{#each model as |row|}}
|
||||||
<tr>
|
<tr>
|
||||||
<th>Characteristic</th>
|
{{#each row key="@index" as |col|}}
|
||||||
{{#each strains as |strain|}}
|
<td>{{col}}</td>
|
||||||
<th>
|
|
||||||
{{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}}
|
|
||||||
{{strain.fullNameMU}}
|
|
||||||
{{/link-to}}
|
|
||||||
</th>
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
{{/each}}
|
||||||
<tbody>
|
</tbody>
|
||||||
{{#each model as |row|}}
|
</table>
|
||||||
<tr>
|
<hr>
|
||||||
{{#each row key="@index" as |col|}}
|
<a href="{{csvLink}}" download>Download as CSV</a>
|
||||||
<td>{{col}}</td>
|
|
||||||
{{/each}}
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<hr>
|
|
||||||
<a href="{{csvLink}}" download>Download as CSV</a>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -7,10 +7,6 @@
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.measurements-container {
|
|
||||||
padding: 2em 0em 0em 0em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select2-container {
|
.select2-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -27,6 +23,10 @@
|
||||||
color: #5CA934;
|
color: #5CA934;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.flakes-table td {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
/* BEGIN https://github.com/tobiasahlin/SpinKit */
|
/* BEGIN https://github.com/tobiasahlin/SpinKit */
|
||||||
.spinner {
|
.spinner {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
|
Reference in a new issue