[Search] Search icon near input

Added a search icon next to the search bar
input.
This commit is contained in:
slhale
2015-08-06 16:59:09 -07:00
parent 1d2cd4745c
commit 7141c2818a
3 changed files with 62 additions and 22 deletions

View File

@@ -23,15 +23,33 @@
ng-controller="SearchController as controller">
<!-- Search bar input -->
<div>
<!-- ui symbols for search are 'd' and 'M' -->
<div class="search-bar">
<div class="search-icon ui-symbol">
d
</div>
<input class="search-input"
type="text"
value=""
type="text"
ng-model="ngModel.input"
ng-keyup="controller.search()" />
<!--mct-control key="textfield"
class="search-input"
ng-model="ngModel.input">
</mct-control>
<!--input type="text"
ng-required="false"
ng-model="ngModel.index"
name="mctControl" /-->
<!--mct-form structure="{sections: [rows: {control: 'textfield'}]}" ng-model="ngModle.input">
</mct-form>
<!--mct-control key="row.control"
ng-model="ngModel"
structure="{cssclass: 'search-input', size: '50px'}">
ng-required="row.required"
ng-pattern="getRegExp(row.pattern)"
options="row.options"
structure="row"
field="row.key">
</mct-control-->
</div>