Right, I think I've grabbed all the relevant bits. In an application.css in SPLUNK_HOME/etc/apps/APPNAMEOFYOURCHOICE/appserver/static put the following;
.SingleValueHolder {
background-color: #CCCCCC;
background-image: url("/en-US/static/@128297/img/skins/default/overlay_gradient_50.png");
background-repeat: repeat-x;
border-radius: 4px 4px 4px 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25) inset;
font-size: 14px;
font-weight: bold;
}
.SingleValue .severe {
background-color: #BB2121;
color: #FFFFFF;
}
.SingleValue .high {
background-color: #E67918;
color: #FFFFFF;
}
.SingleValue .elevated {
background-color: #E9DA34;
color: #000000;
}
.SingleValue .guarded {
background-color: #4DA6DF;
color: #FFFFFF;
}
.SingleValue .low {
background-color: #72C72D;
color: #FFFFFF;
}
.SingleValue .None {
background-color: #999999;
color: #FFFFFF;
}
.SingleValue .singleResult {
color: #FFFFFF !important;
font-size: 14px;
margin: 0px;
padding-left: 3px;
vertical-align:0px;
}
EDIT: Added CSS for singleResult, needed to override the new singleResult related CSS in v5
... View more