Set up DOM

This commit is contained in:
DallonF
2012-09-25 15:01:53 -07:00
parent a1f134d98e
commit f7e4fd98d7

View File

@@ -1,3 +1,65 @@
<div id="data" class="well full-page">
<h3>Data</h3>
<div id="table-container">
<table id="headers" class="table table-bordered">
<thead>
<tr>
<th class="margin"></th>
<th class="id-cell"> <i title="id" class="icon-custom icon-white string"></i> id</span></th>
<th> <i title="id" class="icon-custom icon-white string"></i> property1</span></th>
<th> <i title="id" class="icon-custom icon-white string"></i> property2</span></th>
<th> <i title="id" class="icon-custom icon-white string"></i> property3</span></th>
<th> <i title="id" class="icon-custom icon-white string"></i> property4</span></th>
</tr>
</thead>
</table>
<table id="body" class="table table-bordered">
<tbody>
<tr class="load-space">
<td class="margin"></td>
<td style="height: 50px" colspan="6"></td>
</tr>
<tr>
<td class="margin">
<a href="#"><i class="icon-white icon-trash"></i></a>
</td>
<td class="id-cell">
<div class="value">fsdaoijv82n8128</div>
</td>
<td>
<div class="value">lorem</div>
</td>
<td>
<div class="value">ipsum</div>
</td>
<td>
<div class="value">dolor</div>
</td>
<td>
<div class="value">sit</div>
</td>
</tr>
</tbody>
</table>
<table id="new-row" class="table table-bordered">
<tr>
<td class="margin"></td>
<td class="id-cell">
<div class="hint value">id</div>
</td>
<td>
<div class="hint value">property1</div>
</td>
<td>
<div class="hint value">property2</div>
</td>
<td>
<div class="hint value">property3</div>
</td>
<td>
<div class="hint value">property4</div>
</td>
</tr>
</table>
</div>
</div>