open #95 vista #65 scss and html mods for VISTA-related elements; (cherry picked from commit 6ef3987)
88 lines
3.5 KiB
HTML
88 lines
3.5 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.
|
|
-->
|
|
<div class='form-control complex channel-selector cols cols-32'
|
|
ng-controller="SelectorController as selector">
|
|
<div class='col col-15'>
|
|
<div class='line field-hints'>Available</div>
|
|
<!--div id='_form_filter' class='line filter'>
|
|
<input type='text' class='control filter' name='filter-available' />
|
|
<a class='icon ui-symbol t-available-trigger'
|
|
href=''
|
|
title="Filter is case sensitive">M</a>
|
|
</div>
|
|
|
|
<div class="line">
|
|
Showing {{shown}} of {{count}} available options.
|
|
</div -->
|
|
|
|
<div class='line treeview' name='available'>
|
|
<mct-representation key="'tree'"
|
|
mct-object="selector.root()"
|
|
ng-model="selector.treeModel">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
<div class='col col-2'>
|
|
<div class='btn-holder valign-mid btns-add-remove'>
|
|
<a class='s-btn major'
|
|
ng-click="selector.select(selector.treeModel.selectedObject)">
|
|
<span class='ui-symbol'>></span>
|
|
</a>
|
|
<a class='s-btn major'
|
|
ng-click="selector.deselect(selector.listModel.selectedObject)">
|
|
<span class='ui-symbol'><</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class='col col-15'>
|
|
<div class='line field-hints'>Selected</div>
|
|
<!-- div id='_form_filter' class='line filter'>
|
|
<input type='text' class='control filter' name='filter-selected' />
|
|
<a class='icon ui-symbol t-selected-trigger'
|
|
href=''
|
|
title="Filter is case sensitive">
|
|
M
|
|
</a>
|
|
</div>
|
|
<div class="line">
|
|
Showing {{shown}} of {{count}} available options.
|
|
</div -->
|
|
|
|
<div class='line treeview l-tree-item-flat-list' name='selected'>
|
|
<ul class="tree">
|
|
<li ng-repeat="selectedObject in selector.selected()">
|
|
<span
|
|
class="tree-item"
|
|
ng-class="{selected: selector.listModel.selectedObject === selectedObject }"
|
|
>
|
|
<mct-representation
|
|
key="'label'"
|
|
mct-object="selectedObject"
|
|
ng-click="selector.listModel.selectedObject = selectedObject"
|
|
>
|
|
</mct-representation>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div> |