mirror of https://github.com/zulip/zulip.git
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:
parent
85398abba3
commit
3f42c8422f
|
@ -65,10 +65,12 @@ var people_list = {{ people }};
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<div class="narrow">
|
<div class="narrow row">
|
||||||
<div class="input-prepend input-append">
|
<div class="input-prepend input-append pull-left">
|
||||||
<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()"><i class="icon-remove"></i></button>
|
||||||
<button id="unhide" class="btn" disabled=disabled onclick="unhide()">Show all</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>
|
</div>
|
||||||
<div id="bottom_whitespace"></div>
|
<div id="bottom_whitespace"></div>
|
||||||
|
|
|
@ -211,10 +211,6 @@ div.narrow {
|
||||||
top: 0px;
|
top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#unhide.btn {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#bottom_whitespace {
|
div#bottom_whitespace {
|
||||||
display: block;
|
display: block;
|
||||||
height: 60%;
|
height: 60%;
|
||||||
|
@ -224,3 +220,7 @@ td.selected_message_indicator {
|
||||||
background-color: blue;
|
background-color: blue;
|
||||||
width: 2px;
|
width: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form#zephyr_searchbox {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue