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

View File

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