mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 17:39:38 +08:00
52 lines
1.1 KiB
Text
52 lines
1.1 KiB
Text
<style>
|
|
body {
|
|
height: 95px;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
height: 80px;
|
|
table-layout: fixed;
|
|
width: 100%
|
|
}
|
|
|
|
table td {
|
|
border: 2px solid black;
|
|
font-size: 12px;
|
|
padding: .25em;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
table td.title {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|
|
<table>
|
|
<tr>
|
|
<td class="title " class="topage">
|
|
GENERAL CONTINUATION SHEET
|
|
</td>
|
|
<td>
|
|
<div class="cell-label">
|
|
<b>PRODUCT</b>
|
|
</div>
|
|
<div class="cell-value">
|
|
<%= render Reports::TextInputComponent.new(report: report, name: :product, label: 'Product', editing: false) %>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="cell-label">
|
|
<b>SAMPLE NUMBER</b>
|
|
</div>
|
|
<div class="cell-value">
|
|
<%= render Reports::TextInputComponent.new(report: report, name: :sample_number, label: 'Sample number', editing: false) %>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|