removed hover, and placed the negative buttons below positive

This commit is contained in:
Stephen McQuay 2013-03-09 14:22:34 -08:00
parent 5be6b73f11
commit 50d8fea100
1 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,7 @@
{{ define "content" }}
<div class="container">
<table class="table table-striped table-bordered table-hover">
<table class="table table-striped table-bordered">
<caption>Allowance totals for our children</caption>
</thead>
<tr class="info">
@ -28,11 +28,13 @@
<button class="btn" value="/add/{{ $name}}/10">10&cent;</button>
<button class="btn" value="/add/{{ $name}}/5">5&cent;</button>
<button class="btn" value="/add/{{ $name}}/1">1&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-1">1&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-5">5&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-10">10&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-25">25&cent;</button>
</div>
<div style="padding-top: 5px;" class="btn-group">
<button class="btn btn-danger" value="/add/{{ $name}}/-100">$1.00</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-25">25&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-10">10&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-5">5&cent;</button>
<button class="btn btn-danger" value="/add/{{ $name}}/-1">1&cent;</button>
</div>
</td>
</tr>