2020-09-05 02:09:55 +08:00
|
|
|
<%= discourse_color_scheme_stylesheets %>
|
2020-08-04 10:57:10 +08:00
|
|
|
|
2015-05-20 13:56:54 +08:00
|
|
|
<%- if rtl? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
|
2015-05-20 13:56:54 +08:00
|
|
|
<%- else %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
|
2015-05-20 13:56:54 +08:00
|
|
|
<%- end %>
|
2013-02-11 19:41:23 +08:00
|
|
|
|
2013-05-02 15:22:27 +08:00
|
|
|
<%- if staff? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(:admin) %>
|
2014-03-08 21:25:03 +08:00
|
|
|
<%- end %>
|
2013-12-19 03:47:22 +08:00
|
|
|
|
2022-06-17 20:50:21 +08:00
|
|
|
<%- if admin? %>
|
|
|
|
<%= discourse_stylesheet_link_tag(:wizard) %>
|
|
|
|
<%- end %>
|
|
|
|
|
2020-03-20 00:02:12 +08:00
|
|
|
<%- Discourse.find_plugin_css_assets(include_official: allow_plugins?, include_unofficial: allow_third_party_plugins?, mobile_view: mobile_view?, desktop_view: !mobile_view?, request: request).each do |file| %>
|
|
|
|
<%= discourse_stylesheet_link_tag(file) %>
|
|
|
|
<%- end %>
|
|
|
|
|
2021-06-15 14:57:17 +08:00
|
|
|
<%- if theme_id.present? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
|
2013-12-19 03:47:22 +08:00
|
|
|
<%- end %>
|