FEATURE: Add css classes to stylesheet link elements (#10598)

Adding these classes to the stylesheet link elements in order to toggle dark/light schemes via this theme-component. Eventually this theme-component could possible be merged into core.
This commit is contained in:
Jordan Vidrine
2020-09-04 15:40:40 -05:00
committed by GitHub
parent 726bae8f0c
commit e73ff68f75

View File

@ -135,7 +135,10 @@ class Stylesheet::Manager
return '' if !stylesheet
href = stylesheet[:new_href]
%[<link href="#{href}" media="#{media}" rel="stylesheet"/>].html_safe
css_class = media == 'all' ? "light-scheme" : "dark-scheme"
%[<link href="#{href}" media="#{media}" rel="stylesheet" class="#{css_class}"/>].html_safe
end
def self.color_scheme_cache_key(color_scheme, theme_id = nil)