Fix #66
This commit is contained in:
parent
7a941137b8
commit
436b1aa4ca
1 changed files with 12 additions and 1 deletions
|
|
@ -73,7 +73,7 @@
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
/* dotted line */
|
/* dotted line */
|
||||||
.project-step[data-status="in-progress"]::after,
|
.project-step[data-status="in-progress"]:not(:last-child)::after,
|
||||||
.project-step:last-child::before {
|
.project-step:last-child::before {
|
||||||
content: "";
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -87,6 +87,9 @@
|
||||||
right: calc(var(--gap) / -2);
|
right: calc(var(--gap) / -2);
|
||||||
bottom: -1.875rem;
|
bottom: -1.875rem;
|
||||||
}
|
}
|
||||||
|
.project-step[data-status="in-progress"]:first-child::after {
|
||||||
|
left: 5.5rem;
|
||||||
|
}
|
||||||
.project-step:last-child::before {
|
.project-step:last-child::before {
|
||||||
left: calc(var(--gap) / -2);
|
left: calc(var(--gap) / -2);
|
||||||
right: 6.75rem;
|
right: 6.75rem;
|
||||||
|
|
@ -117,6 +120,13 @@
|
||||||
.project-step:first-child::after {
|
.project-step:first-child::after {
|
||||||
left: 5.5rem;
|
left: 5.5rem;
|
||||||
}
|
}
|
||||||
|
.project-step[data-status="done"]:first-child .pill::after {
|
||||||
|
margin-left: 3.25rem;
|
||||||
|
}
|
||||||
|
.project-step[data-status="uncompleted"]:last-child::before {
|
||||||
|
margin-right: -3.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Hide all steps between in-progress and last step */
|
/* Hide all steps between in-progress and last step */
|
||||||
|
|
@ -145,6 +155,7 @@
|
||||||
.project-step[data-status="uncompleted"] > .pill {
|
.project-step[data-status="uncompleted"] > .pill {
|
||||||
--background: transparent;
|
--background: transparent;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
|
width: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-step[data-status="done"] .pill::after {
|
.project-step[data-status="done"] .pill::after {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue