Changed focus look of filters

This commit is contained in:
Lukas Metzger 2016-01-16 16:12:41 +01:00
parent c00b3699b1
commit d3bca410d0
2 changed files with 8 additions and 3 deletions

View file

@ -55,7 +55,7 @@ limitations under the License.
<div class="form-group">
<strong>Name</strong>
<span class="glyphicon glyphicon-sort cursor-pointer cursor-pointer"></span>
<input type="text" class="form-control" id="searchName" placeholder="Search" autocomplete="off">
<input type="text" class="form-control no-shadow" id="searchName" placeholder="Search" autocomplete="off">
</div>
</form>
</td>
@ -64,7 +64,7 @@ limitations under the License.
<div class="form-group">
<strong>Type</strong>
<span class="glyphicon glyphicon-sort cursor-pointer cursor-pointer"></span>
<select class="form-control" id="searchType">
<select class="form-control no-shadow" id="searchType">
<option value="none">No filter...</option>
<option value="MASTER">MASTER</option>
</select>

View file

@ -11,4 +11,9 @@
.defaulthidden { display: none !important; }
.cursor-pointer {cursor: pointer; }
.cursor-pointer {cursor: pointer; }
.no-shadow {
box-shadow: none!important;
border-color: #CCC!important;
}