@$el.addClass 'analysis-reports-report-pending' if status is 'PENDING'
@$el.addClass 'analysis-reports-report-working' if status is 'WORKING'
@$el.addClass 'analysis-reports-report-done' if status is 'SUCCESS'
+ @$el.addClass 'analysis-reports-report-cancelled' if status is 'CANCELLED'
@$el.addClass 'analysis-reports-report-failed' if status is 'FAIL'
@pendingColor: #fdfce2;
@workingColor: #ecf9fc;
@doneColor: #ecfced;
+@cancelledColor: #fcecec;
@failedColor: #fcecec;
background-color: @doneColor !important;
}
+.analysis-reports-report-cancelled {
+ background-color: @cancelledColor !important;
+}
+
.analysis-reports-report-failed {
background-color: @failedColor !important;