Merge pull request #831 from MiguelMedeiros/fix-sum-column-ui-mempool-chart

Change total sum column to fixed color.
This commit is contained in:
wiz 2021-09-29 02:05:15 +09:00 committed by GitHub
commit 92048964d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -226,7 +226,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
</td>
<td class="total-progress-sum-bar">
<span class="total-percentage-bar-background">
<span style="width: ${progressPercentageSum.toFixed(2)}%; background-color: ${this.chartColorsOrdered[index]}"></span>
<span style="width: ${progressPercentageSum.toFixed(2)}%; background-color: ${this.chartColorsOrdered[3]}"></span>
</span>
</td>
</tr>`);

View file

@ -533,6 +533,9 @@ html:lang(ru) .card-title {
}
}
}
.total-percentage-bar-background {
background-color: #282d47;
}
}
.tx-wrapper-tooltip-chart-advanced {