http://danbooru.donmai.us/users/custom_style.css failed when manually requested by anonymous users, or by users who didn't have a style set.
8 lines
243 B
Plaintext
8 lines
243 B
Plaintext
<% CurrentUser.user.custom_style.to_s.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 %>
|