16 lines
373 B
Ruby
16 lines
373 B
Ruby
module ApplicationHelper
|
|
def hide_from_user_style_tag
|
|
tag.style(<<~CSS.html_safe)
|
|
[data-hide-from-user-id="#{Current.user.id}"] {
|
|
display: none!important;
|
|
}
|
|
CSS
|
|
end
|
|
|
|
def custom_styles_tag
|
|
if custom_styles = Current.account&.custom_styles
|
|
tag.style(custom_styles.to_s.html_safe, data: { turbo_track: "reload" })
|
|
end
|
|
end
|
|
end
|