mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
<%- if Setting.custom_css.present? %>
|
|
<%= raw Setting.custom_css %>
|
|
|
|
<%- end %>
|
|
<%- UserRole.where(highlighted: true).select { |role| role.color.present? }.each do |role| %>
|
|
.user-role-<%= role.id %> {
|
|
--user-role-accent: <%= role.color %>;
|
|
}
|
|
|
|
<%- end %>
|