2022-06-09 20:40:45 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
2022-05-11 21:51:26 +08:00
|
|
|
|
2022-06-09 20:40:45 +08:00
|
|
|
.step-checklist-items {
|
|
|
|
.step-element-header {
|
|
|
|
.step-element-name {
|
|
|
|
align-items: flex-start;
|
|
|
|
column-gap: .5em;
|
|
|
|
display: grid;
|
|
|
|
font-weight: normal;
|
|
|
|
grid-template-columns: max-content auto;
|
|
|
|
|
|
|
|
.step-checklist-text {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.done .step-checklist-text {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover.done .step-checklist-text {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.step-checklist-add-item {
|
|
|
|
margin-left: 9px;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
2022-05-11 21:51:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-26 20:02:02 +08:00
|
|
|
.step-checklist-item-ghost {
|
|
|
|
border: 1px solid $brand-primary;
|
|
|
|
}
|
|
|
|
|
2022-06-09 20:40:45 +08:00
|
|
|
.sci-checkbox-container {
|
|
|
|
margin: 10px 0;
|
2022-05-11 21:51:26 +08:00
|
|
|
|
2022-06-09 20:40:45 +08:00
|
|
|
&.disabled {
|
|
|
|
pointer-events: none;
|
2022-05-11 21:51:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|