From bd4d1724088cc8ccc5a0830f66374b3507982be7 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Thu, 24 Apr 2025 12:51:14 -0500 Subject: [PATCH] dev_docs: Better present images in tables. --- docs/_static/theme_overrides.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css index 7418fa63ec..57e20d950a 100644 --- a/docs/_static/theme_overrides.css +++ b/docs/_static/theme_overrides.css @@ -9,3 +9,10 @@ .wy-table-responsive { overflow: visible !important; } + +/* Present tables with columns of equal size + when images are present. */ +.rst-content table.docutils:has(img) { + table-layout: fixed; + width: 100%; +}