Added mono theme - dark nav with white icons

This commit is contained in:
laf
2015-03-31 18:08:13 +01:00
parent 7fdd267bfc
commit 9e18ce34d2
3 changed files with 20 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ if (isset($config['enable_bgp']) && $config['enable_bgp'])
$bgp_alerts = dbFetchCell("SELECT COUNT(bgpPeer_id) FROM bgpPeers AS B where (bgpPeerAdminStatus = 'start' OR bgpPeerAdminStatus = 'running') AND bgpPeerState != 'established'");
}
if (isset($config['site_style']) && $config['site_style'] == 'dark') {
if (isset($config['site_style']) && ($config['site_style'] == 'dark' || $config['site_style'] == 'mono')) {
$navbar = 'navbar-inverse';
}