Make link hover color of box state entries more lighter

This commit is contained in:
Johannes Meyer 2014-03-07 16:55:33 +01:00
parent e8a626e896
commit 0b7d9620ec
1 changed files with 16 additions and 0 deletions

View File

@ -342,23 +342,39 @@ div.box.entry.state_down, div.box.entry.state_critical {
color: white;
}
div.box.entry.state_down a:hover, div.box.entry.state_critical a:hover {
color: #dcdcdc;
}
div.box.entry.state_warning {
border-left: 1em solid @colorWarning;
background-color: @colorWarning;
color: white;
}
div.box.entry.state_warning a:hover {
color: #dcdcdc;
}
div.box.entry.state_unreachable, div.box.entry.state_unknown {
border-left: 1em solid @colorUnknown;
background-color: @colorUnknown;
color: white;
}
div.box.entry.state_unreachable a:hover, div.box.entry.state_unknown a:hover {
color: #dcdcdc;
}
div.box.entry.handled {
background-color: transparent;
color: inherit;
}
div.box.entry.handled a:hover {
color: #666;
}
/* Tactical overview element styles */
div.tactical div.box {