Files
danbooru/app/views/users/custom_style.css.erb
evazion 806513836b Fix failbooru in /users/custom_style.css when custom_style is nil.
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.
2017-12-23 11:11:50 -06:00

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 %>