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; + } +}