Make exercises into details (so they can be collapsed)

This commit is contained in:
Danila Fedorin 2023-12-28 00:12:51 -08:00
parent 72fb69d87b
commit 0d3100ba33
3 changed files with 19 additions and 17 deletions

View File

@ -2,8 +2,6 @@
@import "mixins.scss"; @import "mixins.scss";
.bergamot-exercise { .bergamot-exercise {
@include bordered-block;
padding: 1em;
counter-increment: bergamot-exercise; counter-increment: bergamot-exercise;
.bergamot-root { .bergamot-root {
@ -69,7 +67,7 @@
} }
.bergamot-button-group { .bergamot-button-group {
margin-top: 0.5em; margin-top: 1em;
} }
} }

View File

@ -1,9 +1,11 @@
<div class="bergamot-exercise"> <div class="bergamot-exercise">
<details open>
<summary>
<span class="bergamot-exercise-label"> <span class="bergamot-exercise-label">
{{ partial "icon.html" "edit-2" }}
<span class="bergamot-exercise-number"></span> <span class="bergamot-exercise-number"></span>
{{ if or (eq (.Get "label") "") (eq (.Get "label") nil) }}{{ else }}({{ .Get "label" }}){{ end }}: {{ if or (eq (.Get "label") "") (eq (.Get "label") nil) }}{{ else }}({{ .Get "label" }}){{ end }}:
</span> </span>
</summary>
{{ .Inner }} {{ .Inner }}
<div class="bergamot-button-group"> <div class="bergamot-button-group">
@ -15,4 +17,5 @@
</div> </div>
<div id="bergamot-widget-container-{{ .Get "id" }}"></div> <div id="bergamot-widget-container-{{ .Get "id" }}"></div>
</details>
</div> </div>

View File

@ -2,5 +2,6 @@
window.Bergamot.presets['{{ .Get "name" }}'] = { window.Bergamot.presets['{{ .Get "name" }}'] = {
rules: '{{ .Inner }}', rules: '{{ .Inner }}',
inputPrompt: '{{ .Get "prompt" }}', inputPrompt: '{{ .Get "prompt" }}',
query: '{{ .Get "query" }}',
}; };
</script> </script>