From 36941bf4e939a073445c699adea412f1ca604dfb Mon Sep 17 00:00:00 2001 From: Cody Glassman Date: Tue, 17 Jun 2025 16:31:18 -0700 Subject: [PATCH] docs - add table hover highlight and increase max width --- docs/source/_static/theme-override.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/source/_static/theme-override.css b/docs/source/_static/theme-override.css index e3d52e8007..f0a8a13302 100644 --- a/docs/source/_static/theme-override.css +++ b/docs/source/_static/theme-override.css @@ -21,4 +21,16 @@ code { /* Table headers are bolded in dark mode, do it in light mode too */ table th { font-weight: 600 !important; -} \ No newline at end of file +} + +/* Highlight non-header rows on hover */ +tbody tr:hover { + background-color: hsl(var(--muted)); +} + +/* Increase maximum width for docs, default is quite narrow at 1400px max */ +@media (min-width: 1400px) { + .container { + max-width: 2000px !important; + } +}