Restyle unhide button

(imported from commit c668f19a581fa111dabdba5b1304922c7387c5dd)
This commit is contained in:
Keegan McAllister 2012-08-29 12:11:15 -04:00
parent 5bf0c7be8e
commit 8948b21758
2 changed files with 15 additions and 3 deletions

View File

@ -8,9 +8,8 @@
<script type="text/javascript" src="/static/js/zephyr.js"></script>
<span id="unhide" style="background-color: aqua;" onclick="unhide()">Unhide</span>
<div id="main_div">
<div class="row-fluid">
<div id="main_div" class="span12">
<table id="table">
{% for zephyr in zephyrs %}
<tr id={{ zephyr.id }}>
@ -25,6 +24,15 @@
{% endfor %}
</table>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<button id="unhide" class="btn" onclick="unhide()">Show all</button>
</div>
</div>
<hr />
<div class="tabbable container">
<ul class="nav nav-tabs">

View File

@ -20,3 +20,7 @@ form.zephyr input {
form.zephyr textarea {
width: 95%;
}
#unhide {
margin-top: 5px;
}