This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-07-05 02:41:40 +02:00
|
|
|
<%- if Setting.custom_css.present? %>
|
2022-07-18 08:41:08 +02:00
|
|
|
<%= raw Setting.custom_css %>
|
2022-07-05 02:41:40 +02:00
|
|
|
|
|
|
|
<%- end %>
|
|
|
|
<%- UserRole.where(highlighted: true).select { |role| role.color.present? }.each do |role| %>
|
|
|
|
.user-role-<%= role.id %> {
|
|
|
|
--user-role-accent: <%= role.color %>;
|
|
|
|
}
|
|
|
|
|
|
|
|
<%- end %>
|