salix/client/core/src/components/date-picker/date-picker.html

21 lines
660 B
HTML
Raw Normal View History

2017-11-02 07:18:37 +00:00
<div
class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"
ng-focus="$ctrl.hasFocus = true"
ng-blur="$ctrl.hasFocus = false"
ng-mouseenter="$ctrl.hasMouseIn = true"
ng-mouseleave="$ctrl.hasMouseIn = false">
2017-07-12 12:32:15 +00:00
<input type="text"
class="mdl-textfield__input"
name="{{::$ctrl.name}}"
2017-07-12 11:32:25 +00:00
ng-disabled="{{!$ctrl.enabled}}"
2017-11-02 07:18:37 +00:00
rule="{{::$ctrl.rule}}"/>
<div class="mdl-chip__action">
2018-02-10 15:18:01 +00:00
<i
class="material-icons pointer"
ng-show="$ctrl.model && ($ctrl.hasFocus || $ctrl.hasMouseIn)"
2018-02-10 15:18:01 +00:00
ng-click="$ctrl.onClear()">
clear
</i>
2017-11-02 07:18:37 +00:00
</div>
<label class="mdl-textfield__label" translate>{{$ctrl.label}}</label>
2017-07-12 11:32:25 +00:00
</div>