feat: Remove cost exceeded marker from leaderboard table

This commit is contained in:
Paul Gauthier (aider) 2025-04-13 13:42:35 -07:00
parent 7d0a9c7233
commit 1622531d85
2 changed files with 1 additions and 16 deletions

View file

@ -231,10 +231,7 @@ document.addEventListener('DOMContentLoaded', function() {
darkSection.style.zIndex = '1';
bar.parentNode.appendChild(darkSection);
// Add a marker at the end of the bar
const marker = document.createElement('div');
marker.className = 'cost-exceeded-marker';
bar.parentNode.appendChild(marker);
// No marker at the end of the bar
}
} else {
// Set width to 0 if cost is 0 or negative

View file

@ -196,18 +196,6 @@ human intervention.
);
z-index: 3;
}
.cost-exceeded-marker {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid rgba(0, 0, 0, 0.5);
z-index: 3;
}
.bar-viz {
position: absolute;
left: 0;