mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
77a8a4083a
This reverts commitb537de3ca5
, reversing changes made tob925827e5b
.
16 lines
439 B
Plaintext
16 lines
439 B
Plaintext
<%- unless SiteCustomization.override_default_style(session[:preview_style]) %>
|
|
<% if mobile_view? %>
|
|
<%= stylesheet_link_tag "mobile" %>
|
|
<% else %>
|
|
<%= stylesheet_link_tag "desktop" %>
|
|
<% end %>
|
|
<%- end %>
|
|
|
|
<%- if staff? %>
|
|
<%= stylesheet_link_tag "admin"%>
|
|
<%-end%>
|
|
|
|
<%- unless customization_disabled? %>
|
|
<%= SiteCustomization.custom_stylesheet(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
|
<%- end %>
|