Skip to content
Snippets Groups Projects
Commit 52301926 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

add requested colors to the execution status column. I really question their taste

parent 25e3839e
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1403add requested colors to the execution status column
Pipeline #10241 passed
......@@ -145,7 +145,9 @@
<app-status-badge [capabilityRequest]="request"></app-status-badge>
</a>
</td>
<td>{{ getExecutionStatusName(request) }}</td>
<td [ngClass]="{'stage1_status': getExecutionStatusName(request) === 'Awaiting QA',
'exec_status': getExecutionStatusName(request) === 'Executing',
'stage2_status': getExecutionStatusName(request) === 'Stage 2 Review'}">{{ getExecutionStatusName(request) }}</td>
<td>{{ getMetadata(request).sdm_id }}</td>
<td>{{ getMetadata(request).bands ? getMetadata(request).bands.split(' ').join(', ') : "" }}</td>
<td>{{ getMetadata(request).array_config }}</td>
......
......@@ -13,6 +13,27 @@
}
}
.exec_status {
background-color: #FFC0CB;
mat-label {
opacity: 1 !important;
}
}
.stage1_status {
background-color: #99FFFF;
mat-label {
opacity: 1 !important;
}
}
.stage2_status {
background-color: #FF7F50;
mat-label {
opacity: 1;
}
}
.mat-select-panel-wrap {
mat-option:last-child:before {
content: 'All (';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment