From 92cc7eae152c5b1ce7da4f21f2ff78f5982fea04 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Wed, 19 Dec 2018 13:38:36 -0500 Subject: [PATCH] Added hover background colors to the issue list items --- css/80_app.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/80_app.css b/css/80_app.css index 0aff3413d..ea84faee0 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -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 }