/*
 * Whole-row navigation for admin change lists (pairs with
 * changelist_rowlink.js, both loaded from admin/base_site.html so they apply
 * to every change list).
 *
 * The hover background is painted on the cells (not the row) so it wins over
 * the admin's row-level striping; --selected-row is the brand token defined in
 * brand.css (#fff3e9), with a literal fallback for safety.
 */
#result_list tbody tr:hover th,
#result_list tbody tr:hover td {
  background: var(--selected-row, #fff3e9);
}

/* Only rows the JS actually wired up advertise themselves as clickable. */
#result_list tbody tr.rowlink {
  cursor: pointer;
}
