From d686f6844decdf0a7900ed06fc2bbeb36f3f8425 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 13 Apr 2025 11:08:49 -0700 Subject: [PATCH] style: Apply left border only to the first column in view mode --- aider/website/docs/leaderboards/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index b0d2ca3ab..19a95faf0 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -210,10 +210,11 @@ human intervention. /* Style for highlighted rows in view mode */ tr.view-highlighted > td { background-color: #fffef5; /* Very light yellow/cream */ - border-left: 4px solid #ffc107; /* Warning yellow border */ + /* Border moved to specific cell below */ } - /* Adjust padding for the first *visible* cell (Model name) in view mode */ + /* Apply border and adjust padding ONLY for the first *visible* cell (Model name) in view mode */ tr.view-highlighted > td:nth-child(2) { + border-left: 4px solid #ffc107; /* Warning yellow border */ /* Original padding is 8px. Subtract border width. */ padding-left: 4px; }