2020-09-04 14:09:55 -04:00
|
|
|
<%= discourse_color_scheme_stylesheets %>
|
2020-08-03 22:57:10 -04:00
|
|
|
|
2015-05-20 01:56:54 -04:00
|
|
|
<%- if rtl? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
|
2015-05-20 01:56:54 -04:00
|
|
|
<%- else %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
|
2015-05-20 01:56:54 -04:00
|
|
|
<%- end %>
|
2013-02-11 06:41:23 -05:00
|
|
|
|
2013-05-02 03:22:27 -04:00
|
|
|
<%- if staff? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= discourse_stylesheet_link_tag(:admin) %>
|
2014-03-08 08:25:03 -05:00
|
|
|
<%- end %>
|
2013-12-18 14:47:22 -05:00
|
|
|
|
2022-06-17 08:50:21 -04:00
|
|
|
<%- if admin? %>
|
|
|
|
<%= discourse_stylesheet_link_tag(:wizard) %>
|
|
|
|
<%- end %>
|
|
|
|
|
2020-03-19 12:02:12 -04: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 02:57:17 -04:00
|
|
|
<%- if theme_id.present? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
|
2013-12-18 14:47:22 -05:00
|
|
|
<%- end %>
|