Issue:
Various UI elements are incorrectly styled
Reason
theme.js incorrectly references config.getTheme instead of config.getEditorTheme
Solution
var theme = config.getTheme(config.getPreference("editorTheme"));
change to
var theme = config.getEditorTheme(config.getPreference("editorTheme"));
var theme = config.getTheme(config.getPreference("windowTheme"));
change to
var theme = config.getEditorTheme(config.getPreference("windowTheme"));
Issue:
Various UI elements are incorrectly styled
Reason
theme.jsincorrectly referencesconfig.getThemeinstead ofconfig.getEditorThemeSolution
change /app/js/theme.js line 85 - currently
change to
change /app/js/theme.js line 113 - currently
change to