sunburst style fix

Change-Id: If959ae78256186470fd3e877a385ddc2b27ae0a6
This commit is contained in:
Alon Heller 2016-10-20 08:24:43 +03:00
parent 92cd660345
commit a46af4ca73
2 changed files with 8 additions and 8 deletions

View File

@ -24,13 +24,13 @@
<div class="col-md-9">
<div class="legend-container">
<div class="circle green floating-to-the-left"></div>
<div class="circle green-background floating-to-the-left"></div>
<div class="floating-to-the-left more-margin">OK/TRANSIENT</div>
<div class="circle yellow floating-to-the-left"></div>
<div class="circle yellow-background floating-to-the-left"></div>
<div class="floating-to-the-left more-margin">SUBOPTIMAL</div>
<div class="circle red floating-to-the-left"></div>
<div class="circle red-background floating-to-the-left"></div>
<div class="floating-to-the-left more-margin">ERROR</div>
<div class="circle gray floating-to-the-left"></div>
<div class="circle gray-background floating-to-the-left"></div>
<div class="floating-to-the-left more-margin">N/A</div>
</div>
</div>

View File

@ -26,19 +26,19 @@
border-radius: 50px;
}
.green {
.green-background {
background: #3DAA00;
}
.yellow {
.yellow-background {
background: #FCD20E;
}
.red {
.red-background {
background: #BE0006;
}
.gray {
.gray-background {
background: #AEAEAE;
}