We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d02c04 + f88ff52 commit ef76f83Copy full SHA for ef76f83
site/static/compare.html
@@ -115,8 +115,12 @@ <h3>Cache states</h3>
115
let klass = "";
116
if (pct > 1) {
117
klass = 'class="positive"';
118
+ } else if (pct > 0.1) {
119
+ klass = 'class="slightly-positive"';
120
} else if (pct < -1) {
121
klass = 'class="negative"';
122
+ } else if (pct < -0.1) {
123
+ klass = 'class="slightly-negative"';
124
}
125
let title = "";
126
let marker = "";
site/static/perf.css
@@ -86,9 +86,15 @@ img {
86
.positive {
87
color: red;
88
89
+.slightly-positive {
90
+ color: #ee9090;
91
+}
92
.negative {
93
color: green;
94
95
+.slightly-negative {
96
+ color: #90ee90;
97
98
.neutral {
99
color: black;
100
0 commit comments