删除取消按钮边框去除

This commit is contained in:
Linda 2016-12-20 12:43:09 +08:00
parent dc61518fe8
commit 5ad5569942
2 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -211,10 +211,10 @@
</script> </script>
<script type="text/ng-template" id="taskEdit.html"> <script type="text/ng-template" id="taskEdit.html">
<div class="ngCellText" ng-init="entity=row.entity" ng-controller="Kubernetes.TaskEdit"> <div class="ngCellText" ng-init="entity=row.entity" ng-controller="Kubernetes.TaskEdit">
<button class="btn sj_btn" ng-click="showDeleteOne.open(entity)" ng-disabled="entity.status == 1 || entity.status == 0"> <button class="btn sj_btn" style="border:0;background:none;" ng-click="showDeleteOne.open(entity)" ng-disabled="entity.status == 1 || entity.status == 0">
<span class="glyphicon glyphicon-trash"></span>&nbsp;&nbsp;删除 <span class="glyphicon glyphicon-trash"></span>&nbsp;&nbsp;删除
</button> </button>
<button class="btn sj_btn" ng-click="showCancelOne.open(entity)" ng-disabled="entity.process == 100 || entity.status == 3"> <button class="btn sj_btn" style="border:0; " ng-click="showCancelOne.open(entity)" ng-disabled="entity.process == 100 || entity.status == 3">
<span class="glyphicon glyphicon-remove"></span>&nbsp;&nbsp;取消 <span class="glyphicon glyphicon-remove"></span>&nbsp;&nbsp;取消
</button> </button>
<div hawtio-confirm-dialog="showDeleteOne.show" title="是否删除任务?" ok-button-text="确认" cancel-button-text="取消" on-cancel="showDeleteOne.onCancelled()" on-ok="showDeleteOne.onOk()"> <div hawtio-confirm-dialog="showDeleteOne.show" title="是否删除任务?" ok-button-text="确认" cancel-button-text="取消" on-cancel="showDeleteOne.onCancelled()" on-ok="showDeleteOne.onOk()">