mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
afb1202865
open #1515 open #117 Layout styling in datetime picker; Modded picker to hide time selects area when time options are null; (cherry picked from commit 6721093)
67 lines
2.3 KiB
HTML
67 lines
2.3 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 ng-controller="DateTimePickerController" class="l-datetime-picker s-datetime-picker s-menu">
|
|
<div class="holder">
|
|
<div class="l-month-year-pager">
|
|
<a class="pager prev" ng-click="changeMonth(-1)"></a>
|
|
<span class="val">{{month}} {{year}}</span>
|
|
<a class="pager next" ng-click="changeMonth(1)"></a>
|
|
</div>
|
|
<div class="l-calendar">
|
|
<ul class="l-cal-row l-header">
|
|
<li ng-repeat="day in ['Su','Mo','Tu','We','Th','Fr','Sa']">{{day}}</li>
|
|
</ul>
|
|
<ul class="l-cal-row l-body" ng-repeat="row in table">
|
|
<li ng-repeat="cell in row"
|
|
ng-click="select(cell)"
|
|
ng-class='{ "in-month": isInCurrentMonth(cell), selected: isSelected(cell) }'>
|
|
<div class="prime">{{cell.day}}</div>
|
|
<div class="sub">{{cell.dayOfYear}}</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="l-time-selects complex datetime"
|
|
ng-show="options">
|
|
<div class="field-hints">
|
|
<span class="hint time md"
|
|
ng-repeat="key in ['hours', 'minutes', 'seconds']"
|
|
ng-if="options[key]">
|
|
{{nameFor(key)}}
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<span class="field control time md"
|
|
ng-repeat="key in ['hours', 'minutes', 'seconds']"
|
|
ng-if="options[key]">
|
|
<div class='form-control select'>
|
|
<select size="1"
|
|
ng-model="time[key]"
|
|
ng-options="i for i in optionsFor(key)">
|
|
</select>
|
|
</div>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|