2022-07-05 09:41:40 +09:00
|
|
|
<%- if Setting.custom_css.present? %>
|
2022-07-18 15:41:08 +09:00
|
|
|
<%= raw Setting.custom_css %>
|
2022-07-05 09:41:40 +09:00
|
|
|
|
|
|
|
<%- end %>
|
|
|
|
<%- UserRole.where(highlighted: true).select { |role| role.color.present? }.each do |role| %>
|
|
|
|
.user-role-<%= role.id %> {
|
|
|
|
--user-role-accent: <%= role.color %>;
|
2022-07-19 08:06:11 +09:00
|
|
|
--user-role-background: <%= role.color + '19' %>;
|
|
|
|
--user-role-border: <%= role.color + '80' %>;
|
2022-07-05 09:41:40 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
<%- end %>
|