mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:51:55 +00:00
Reskin: Fix #2331 - strikeoff not working
This commit is contained in:
parent
97f0a4ba9d
commit
bf5fb3cbf1
@ -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
|
||||
}
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user