From 65a0e5f771ad2c5b7d3388a730f969180858ab43 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 13 Apr 2025 11:08:18 -0700 Subject: [PATCH] style: Apply left border and subtle background to highlighted rows --- aider/website/docs/leaderboards/index.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index 509c1a6d7..b0d2ca3ab 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -209,7 +209,13 @@ human intervention. /* Style for highlighted rows in view mode */ tr.view-highlighted > td { - background-color: #fffacd; + background-color: #fffef5; /* Very light yellow/cream */ + border-left: 4px solid #ffc107; /* Warning yellow border */ + } + /* Adjust padding for the first *visible* cell (Model name) in view mode */ + tr.view-highlighted > td:nth-child(2) { + /* Original padding is 8px. Subtract border width. */ + padding-left: 4px; }