mirror of https://github.com/zulip/zulip.git
Restyle unhide button
(imported from commit c668f19a581fa111dabdba5b1304922c7387c5dd)
This commit is contained in:
parent
5bf0c7be8e
commit
8948b21758
|
@ -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">
|
||||
|
|
|
@ -20,3 +20,7 @@ form.zephyr input {
|
|||
form.zephyr textarea {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
#unhide {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue