about summary refs log tree commit diff
path: root/app/views/custom_css/show.css.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/custom_css/show.css.erb')
-rw-r--r--app/views/custom_css/show.css.erb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/custom_css/show.css.erb b/app/views/custom_css/show.css.erb
new file mode 100644
index 000000000..bcbe81962
--- /dev/null
+++ b/app/views/custom_css/show.css.erb
@@ -0,0 +1,12 @@
+<%- 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 %>;
+  --user-role-background: <%= role.color + '19' %>;
+  --user-role-border: <%= role.color + '80' %>;
+}
+
+<%- end %>