mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-27 09:13:46 +08:00
Remove strikethrough for step name and checklist items [SCI-7116]
This commit is contained in:
parent
3802355964
commit
371f5e782b
3 changed files with 1 additions and 13 deletions
|
@ -28,10 +28,6 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.done .step-checklist-text {
|
|
||||||
text-decoration: line-through;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover.done .step-checklist-text {
|
&:hover.done .step-checklist-text {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,14 +52,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.strikethrough {
|
|
||||||
text-decoration: line-through;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: initial;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.step-position {
|
.step-position {
|
||||||
@include font-main;
|
@include font-main;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
{{ step.attributes.position + 1 }}.
|
{{ step.attributes.position + 1 }}.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="step-name-container" :class="{'strikethrough': step.attributes.completed, 'step-element--locked': !urls.update_url}">
|
<div class="step-name-container" :class="{'step-element--locked': !urls.update_url}">
|
||||||
<InlineEdit
|
<InlineEdit
|
||||||
:value="step.attributes.name"
|
:value="step.attributes.name"
|
||||||
:class="{ 'step-element--locked': !urls.update_url }"
|
:class="{ 'step-element--locked': !urls.update_url }"
|
||||||
|
|
Loading…
Reference in a new issue