dialog icon close

This commit is contained in:
Vicente Falco 2017-02-22 12:42:41 +01:00
parent 0f360db06e
commit 2210a53f31
1 changed files with 23 additions and 19 deletions

View File

@ -1,21 +1,25 @@
<div ng-mousedown="$ctrl.onDialogMouseDown($event)">
<form>
<div>
<dbody>
<h6 class="dialog-title" translate>
{{$ctrl.question}}
</h6>
<h6 translate>
{{$ctrl.message}}
</h6>
</dbody>
<div vn-one style="float:right;margin: -2em -1.4em 1em 0;">
<button>
<vn-icon vn-one icon="clear" ng-click="$ctrl.hide()" style="color:black"></vn-icon>
</button>
</div>
<div class="button-bar"
ng-click="$ctrl.onButtonClick($event)">
<buttons>
<button response="CANCEL" translate>Cancel</button>
<button response="ACCEPT" translate>Accept</button>
</buttons>
</div>
</form>
</div>
<form vn-one>
<div>
<dbody>
<h6 class="dialog-title" translate>
{{$ctrl.question}}
</h6>
<h6 translate>
{{$ctrl.message}}
</h6>
</dbody>
</div>
<div class="button-bar" ng-click="$ctrl.onButtonClick($event)">
<buttons>
<button response="CANCEL" translate>Cancel</button>
<button response="ACCEPT" translate>Accept</button>
</buttons>
</div>
</form>
</div>