openmct/platform/features/search/res/templates/searchbar.html
shale ff3770c9ee [Search] Added css classes
Added classes to the HTML so that CSS and
Sass could get access to style the
searchbar items. The structure for styling
is now mostly set up.
2015-07-22 11:21:14 -07:00

47 lines
1.7 KiB
HTML

<!--
Open MCT Web, Copyright (c) 2014-2015, United States Government
as represented by the Administrator of the National Aeronautics and Space
Administration. All rights reserved.
Open MCT Web is licensed under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
Open MCT Web includes source code licensed under additional open source
licenses. See the Open Source Licenses file (LICENSES.md) included with
this source code distribution or the Licensing information page available
at runtime from the About dialog for additional information.
-->
<span class="searchbar"
ng-controller="SearchbarController as controller">
<!-- Search bar input -->
<div>
<input type="text"
id="searchbarinput"
value=""
style="width: 100%"
ng-keyup="controller.search('searchbarinput')" />
</div>
<!-- Results list -->
<div class="results">
<mct-representation key="'searchbar-item'"
ng-repeat="result in results"
mct-object="result.object">
</mct-representation>
</div>
<!-- Load more? -->
<div ng-if="controller.areMore()">
<button ng-click="controller.loadMore()">
Load more
</button>
</div>
</span>