metamaps--metamaps/app/views/shared/_metacodeCssColors.html.erb

11 lines
281 B
Plaintext
Raw Permalink Normal View History

<style>
2017-09-12 21:01:08 +00:00
<% # give text the color of the metacode by adding the class .metacodeColor{metacode-id} %>
<% Metacode.all.each do |m| %>
<% if m.color %>
2017-09-12 21:01:08 +00:00
<%= ".metacodeColor" + m.id.to_s + "{" %>
2017-09-08 20:58:17 +00:00
<%= "color:" + m.color + " !important;" %>
<%= "}" %>
<% end %>
<% end %>
2017-09-08 20:58:17 +00:00
</style>