Added hover background colors to the issue list items

This commit is contained in:
Quincy Morgan
2018-12-19 13:38:36 -05:00
parent 14f62ec3b9
commit 92cc7eae15

View File

@@ -2836,15 +2836,23 @@ div.full-screen > button:hover {
height: auto;
color: inherit;
}
.issues-list li.severity-warning {
background: #ffb;
}
.issues-list li.severity-warning:hover {
background: #FFFF99;
}
.issues-list li.severity-warning .icon {
color: #FFB300
}
.issues-list li.severity-error {
background: #FFD5D4;
}
.issues-list li.severity-error:hover {
background: #FFC8C6;
}
.issues-list li.severity-error .icon {
color: #DD1400
}