change button 'search' to 'plot'

add label to 'groupBy' option
This commit is contained in:
2017-02-12 12:34:18 +01:00
parent becd04ed13
commit e47519e6d9
3 changed files with 8 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ html, body {
height: 100%; height: 100%;
margin:0; margin:0;
padding:0; padding:0;
font-size: 14px;
} }
@font-face { @font-face {
@@ -28,6 +29,7 @@ html, body {
} }
#logo { #logo {
font-size: 1.2em;
font-weight: bold; font-weight: bold;
} }

View File

@@ -29,6 +29,10 @@
content: "\f002"; content: "\f002";
} }
.fa-file-image-o:before {
content: "\f1c5"
}
.fa-icons:before { .fa-icons:before {
content: "\f002"; content: "\f002";
} }

View File

@@ -20,8 +20,8 @@
<input id="search-input" data-autocomplete="autocomplete" <input id="search-input" data-autocomplete="autocomplete"
data-autocomplete-empty-message="nothing found" /> data-autocomplete-empty-message="nothing found" />
</div> </div>
<select id="search-group-by"></select> <label for="search-group-by">Group By:</label> <select id="search-group-by"></select>
<button id="search-submit"><i class="fa fa-search"> Search</i></button> <button id="search-submit"><i class="fa fa-file-image-o"> Plot</i></button>
</div> </div>
<div id="result-view"> <div id="result-view">
</div> </div>