Skip to content
Arjen van Bochoven edited this page Feb 2, 2017 · 5 revisions

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 the 'Slate' theme
	$('ul.dropdown-menu.theme a[data-switch="Slate"]').click();
	
	// Hide the theme switcher
	$('ul.dropdown-menu.theme').parent().hide();

});
Clone this wiki locally