Experimentally add a search bar.

I'm not exactly sure that this is the interface we'll want for
this, but it's the start of an experiment.

(imported from commit ea18a9b05106546475bc151229955ddafd8e7b8e)
This commit is contained in:
Waseem Daher 2012-09-12 11:08:16 -04:00
parent 85398abba3
commit 3f42c8422f
2 changed files with 10 additions and 8 deletions

View File

@ -65,10 +65,12 @@ var people_list = {{ people }};
</tbody>
</table>
<br/><br/>
<div class="narrow">
<div class="input-prepend input-append">
<span class="add-on"><i class="icon-filter"></i><span id="narrow_indicator" class="badge"></span></span>
<button id="unhide" class="btn" disabled=disabled onclick="unhide()">Show all</button>
<div class="narrow row">
<div class="input-prepend input-append pull-left">
<button id="unhide" class="btn" disabled=disabled onclick="unhide()"><i class="icon-remove"></i></button>
<span class="add-on"><span id="narrow_indicator" class="badge"></span></span>
<input class="input-xlarge search-query" type="text" value="" placeholder="Search">
<button class="btn"><i class="icon-search"></i></button>
</div>
</div>
<div id="bottom_whitespace"></div>

View File

@ -211,10 +211,6 @@ div.narrow {
top: 0px;
}
button#unhide.btn {
font-size: 12px;
}
div#bottom_whitespace {
display: block;
height: 60%;
@ -224,3 +220,7 @@ td.selected_message_indicator {
background-color: blue;
width: 2px;
}
form#zephyr_searchbox {
margin: 0px;
}