change statuses to adapt to woocommerce statuses

This commit is contained in:
GotPPay
2018-08-08 16:47:45 +02:00
parent 2a0726d256
commit 0f515172fe
3 changed files with 9 additions and 9 deletions

View File

@@ -30,10 +30,10 @@ export const dashboardTexts = {
}, },
statuses: { statuses: {
open: 'Open', open: 'Open',
'in-progress': 'In Progress', processing: 'In Progress',
production: 'Production', completed: 'Production',
'end-of-life': 'End Of Life', 'end-of-life': 'End Of Life',
canceled: 'Canceled', cancelled: 'Cancelled',
'not-accepted': 'Not Accepted', 'not-accepted': 'Not Accepted',
invalid: 'Invalid', invalid: 'Invalid',
pending: 'Pending' pending: 'Pending'

View File

@@ -36,8 +36,8 @@
background: $not-accepted-status-color; background: $not-accepted-status-color;
} }
.in-progress { .processing {
background: $in-progress-status-color; background: $processing-status-color;
} }
.next-action-details{ .next-action-details{

View File

@@ -31,15 +31,15 @@
background: $open-status-color; background: $open-status-color;
} }
.in-progress { .processing {
background: $in-progress-status-color; background: $processing-status-color;
} }
.line-open { .line-open {
border-left: 3px $open-status-color solid; border-left: 3px $open-status-color solid;
} }
.line-in-progress { .line-processing {
border-left: 3px $in-progress-status-color solid; border-left: 3px $processing-status-color solid;
} }
} }