8 lines
238 B
Plaintext
8 lines
238 B
Plaintext
<% CurrentUser.user.custom_style.split(/\r\n|\r|\n/).each do |line| %>
|
|
<% if line =~ /^@import/ %>
|
|
<%= raw(line) %>
|
|
<% else %>
|
|
<%= raw(line.gsub(/(\S)\s*(?:!important)?\s*(;|})/, "\\1 !important\\2")) %>
|
|
<% end %>
|
|
<% end %>
|