Skip to content
Jon Crain edited this page Dec 5, 2018 · 5 revisions

Themes

As of version 2.12 MunkiReport includes 16 themes from https://bootswatch.com.

Switching themes is done via the 'wrench' icon in the MunkiReport menu bar. MunkiReport will remember the theme choice in the browser.

You can force a theme by adding the following to a custom.js file:

$(document).on('appReady', function(e, lang) {

    // Select and load the 'Slate' theme
    mr.setPref('theme', 'Slate');
    mr.loadTheme();

    // Hide the theme switcher
    $('ul.dropdown-menu.theme').parent().hide();
});
Clone this wiki locally