css/monitoring-colors: make text readable on hover

This commit is contained in:
Thomas Gelf 2014-11-19 10:04:14 +01:00
parent eb823c4045
commit 3f6c28dfb3
1 changed files with 5 additions and 1 deletions

View File

@ -194,8 +194,12 @@ tr.state.handled td.state {
}
/* HOVER colors */
tr[href]:hover {
color: black;
background-color: #eee;
}
tr[href]:hover, tr.state[href]:hover td.state {
tr.state[href]:hover td.state {
color: white;
background-color: #eee;
}