Skip to content

Commit

Permalink
chore: reinstate workflow steps
Browse files Browse the repository at this point in the history
Refs: OPS-9590
  • Loading branch information
left23 committed Oct 24, 2023
1 parent dfe3a5f commit 1788230
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions html/themes/custom/common_design_subtheme/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,34 @@
.field--label-inline + .field--name-field-summary {
margin-block-start: 1em;
}

ol.workflow-steps {
display: flex;
list-style: none;
align-content: space-between;
justify-content: space-between;
max-width: 80ch;
margin: 0.5rem auto;
padding: 0;
padding-bottom: 1rem;
border-bottom: solid 1px #232323;
}

ol.workflow-steps > li {
padding: .5rem;
}

ol.workflow-steps > li.done {
background-color: #666666;
color: #fff;
text-decoration: line-through;
}

ol.workflow-steps > li.active {
background-color: #00ff00;
}

ol.workflow-steps > li.to-do {
background-color: #ff004a;
color: #fff;
}

0 comments on commit 1788230

Please sign in to comment.