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

19
html/css/mono.css Normal file
View File

@ -0,0 +1,19 @@
.fa-nav-icons {
color: #ffffff;
}
.fa-col-success {
color: #3c763d;
}
.fa-col-info {
color: #31708f;
}
.fa-col-primary {
color: #357ebd;
}
.twitter-typeahead .tt-hint {
border-color: #000 !important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

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';
}