Files
ubicloud/views/components/revealable_content.erb
2025-06-19 13:07:10 +03:00

14 lines
664 B
Plaintext

<%# locals: (content:) %>
<div class="revealable-content group flex-grow">
<div class="shadow-content justify-between items-center gap-2 flex group-[.active]:hidden">
●●●●●●
<img 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 src="/icons/hero-eye-slash.svg" width="18px" class="revealable-button inline-block cursor-pointer ms1"/>
</div>
</div>
</div>