mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-07 07:11:58 +08:00
After running these changes, there are 1 error and 3 warnings when running the linter, due to bugs in the linter (https://github.com/marcoroth/herb/issues 480, 481, 483).
31 lines
786 B
Text
31 lines
786 B
Text
<%# locals: (content:) %>
|
|
|
|
<div class="revealable-content group flex-grow">
|
|
<div
|
|
class="
|
|
shadow-content justify-between items-center gap-2 flex
|
|
group-[.active]:hidden
|
|
"
|
|
>
|
|
●●●●●●
|
|
<img
|
|
alt=""
|
|
src="/icons/hero-eye.svg"
|
|
width="18px"
|
|
class="revealable-button inline-block cursor-pointer ms1"
|
|
>
|
|
</div>
|
|
<div class="revealed-content hidden group-[.active]:block break-all">
|
|
<div class="flex gap-2 items-center justify-between">
|
|
<div class="revealed-content-text whitespace-pre-line">
|
|
<%= content %>
|
|
</div>
|
|
<img
|
|
alt=""
|
|
src="/icons/hero-eye-slash.svg"
|
|
width="18px"
|
|
class="revealable-button inline-block cursor-pointer ms1"
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|