Files
2025-11-05 11:44:01 +01:00

11 lines
293 B
Plaintext

<% if Current.user %>
<style>
[data-creator-id="<%= Current.user.id %>"] {
[data-only-visible-to-others] { display: none; }
}
[data-creator-id]:not([data-creator-id="<%= Current.user.id %>"]) {
[data-only-visible-to-you] { display: none; }
}
</style>
<% end %>