mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 16:22:47 +08:00
16 lines
391 B
Plaintext
16 lines
391 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 mobile_view? %>
|
|
<%= SiteCustomization.custom_stylesheet(session[:preview_style]) %>
|
|
<% end %>
|