style: Apply left border and subtle background to highlighted rows

This commit is contained in:
Paul Gauthier (aider) 2025-04-13 11:08:18 -07:00
parent 5ca6d8ce67
commit 65a0e5f771

View file

@ -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;
}
</style>