Update entity list search input to be full width with margin

This commit is contained in:
Ryan Huffman 2015-02-10 09:03:21 -08:00
parent 7ac3bd3ee8
commit 8d65caaaef
2 changed files with 13 additions and 1 deletions

View file

@ -175,7 +175,9 @@
</div>
<div id="entity-list">
<input type="text" class="search" id="filter" placeholder="Filter" />
<div id="search-area">
<input type="text" class="search" id="filter" placeholder="Filter" />
</div>
<table id="entity-table">
<thead>
<tr>

View file

@ -90,6 +90,16 @@ input[type=button] {
padding: 0.5em;
}
#search-area {
width: 100%;
padding: 0.5em;
box-sizing: border-box;
}
#search-area input {
width: 100%;
}
textarea, input {
margin: 0;
padding: 1.5pt;