99bd271b35
When the Content-Security-Policy header has "style-src 'self';" inine style elements like style="display: none" are not honored by browsers, so add CSS to the markup classes and style them display: none
12 lines
376 B
HTML
12 lines
376 B
HTML
<div class="book-expand">
|
|
<label>
|
|
<div class="book-expand-head flex justify-between">
|
|
<span>{{ default "Expand" (.Get 0) }}</span>
|
|
<span>{{ default "↕" (.Get 1) }}</span>
|
|
</div>
|
|
<input type="checkbox" class="book-expand-expander" />
|
|
<div class="book-expand-content markdown-inner">
|
|
{{ .Inner | markdownify }}
|
|
</div>
|
|
</label>
|
|
</div>
|