Reskin: Fix #2331 - strikeoff not working

This commit is contained in:
gkrishnan724 2017-06-30 11:48:49 +05:30
parent 97f0a4ba9d
commit bf5fb3cbf1
3 changed files with 15 additions and 4 deletions

View File

@ -156,6 +156,12 @@ span.required {
max-height: 100px;
}
.strikeoff{
color: red !important;
text-decoration:line-through;
text-decoration-style: double;
}
.breadcrumb{
padding: 2px;
margin-bottom: 4px;
@ -217,7 +223,7 @@ span.required {
background-color: #4f99ed;
color: #fff;
}
.statusoverpaid {
color: #800080
}

View File

@ -7495,6 +7495,11 @@ span.required {
.scrollme {
max-height: 100px; }
.strikeoff {
color: red !important;
text-decoration: line-through;
text-decoration-style: double; }
.breadcrumb {
padding: 2px;
margin-bottom: 4px;

View File

@ -17,7 +17,7 @@
</a>
<button type="button" data-ng-click="deleteCharge()" ng-show="!charge.isPaid && !charge.isWaived"
class="btn btn-primary" has-permission='DELETE_CLIENTCHARGE'><i
class="fa fa-trash "></i>{{'label.button.delete' | translate}}
class="fa fa-trash-o"></i>{{'label.button.delete' | translate}}
</button>
</div>
</h3>
@ -75,7 +75,7 @@
<th>{{'label.heading.amount' | translate}}</th>
<th>{{'label.heading.actions' | translate}}</th>
</tr>
<tr ng-class="pointer-main; {strikeoff : transaction.reversed==true}"
<tr ng-class="pointer-main; {strikeoff : transaction.reversed}"
ng-repeat="transaction in charge.clientTransactionDatas">
<td class="pointer">{{transaction.id}}</td>
<td class="pointer">{{transaction.officeName}}</td>
@ -86,7 +86,7 @@
<a uib-tooltip="{{'label.button.delete' | translate}}" ng-if="!transaction.reversed"
has-permission='UNDOTRANSACTION_CLIENT' ng-click="undoTransaction(transaction.id)"
class="btn btn-xs btn-primary ng-binding">
<i class="fa fa-trash "></i>
<i class="fa fa-trash-o"></i>
</a>
</td>
</tr>