This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2022-07-04 17:41:40 -07:00
|
|
|
<%- if Setting.custom_css.present? %>
|
2022-07-17 23:41:08 -07:00
|
|
|
<%= raw Setting.custom_css %>
|
2022-07-04 17:41:40 -07: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-18 16:06:11 -07:00
|
|
|
--user-role-background: <%= role.color + '19' %>;
|
|
|
|
--user-role-border: <%= role.color + '80' %>;
|
2022-07-04 17:41:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
<%- end %>
|