mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
59 lines
1,001 B
SCSS
59 lines
1,001 B
SCSS
// scss-lint:disable SelectorDepth
|
|
// scss-lint:disable NestingDepth
|
|
|
|
.step-checklist-items {
|
|
.sci-inline-edit {
|
|
margin-top: 2px;
|
|
|
|
.sci-inline-edit__content {
|
|
padding-bottom: 7px;
|
|
padding-top: 7px;
|
|
}
|
|
}
|
|
|
|
.step-checklist-item {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.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: 12px;
|
|
|
|
.fas {
|
|
margin-right: .5em;
|
|
}
|
|
}
|
|
|
|
.step-checklist-item-ghost {
|
|
border: 1px solid $brand-primary;
|
|
}
|
|
|
|
.sci-checkbox-container {
|
|
margin: 16px 0;
|
|
|
|
&.disabled {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|