Skip to content

Commit

Permalink
Refs #131062 removed counter numbering for active and next items as r…
Browse files Browse the repository at this point in the history
…equested:

- current workflow state now has a larger green bullet denoting active state
  • Loading branch information
ichim-david committed Jun 10, 2021
1 parent fc98c2e commit b3b75d4
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/less/editor.less
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@
width: 26px;
height: 26px;
border: 1px solid @progress-indicator-color;
background: @progress-indicator-color;
background: white;
border-radius: 50%;
color: white;
content: counter(item);
color: #000;
content: ' ';
font-size: 13px;
font-weight: 400;
line-height: 1.5rem;
line-height: 1.6rem;
text-align: center;
}

Expand Down Expand Up @@ -142,8 +142,10 @@

.progress__item.progress__item--active {
&:after {
background: @progress-indicator-color;
color: white;
background: white;
color: @progress-green;
content: '\2022';
font-size: 50px;
}

.progress__title.title-incomplete {
Expand Down

0 comments on commit b3b75d4

Please sign in to comment.