Remove image limit size for tables (#97)

* Set fixed height for param_ images in tables

Added CSS rule to ensure images with alt text starting with 'param_' inside tables have a fixed height of 45px, maintaining consistent appearance and preventing layout issues.

* Update table image styles to respect explicit dimensions

Replaces the fixed height for table images with styles that allow images to use their explicit width and height. This provides more flexibility for displaying images with custom dimensions inside tables.
This commit is contained in:
Ian Bassi
2026-01-09 12:06:34 -03:00
committed by GitHub
parent 385cda6565
commit 425c18225b

View File

@@ -285,6 +285,14 @@ h1 + ol, h2 + ol, h3 + ol, h4 + ol{
padding: .75em 1.25em;
}
/* Let table images respect their explicit dimensions */
.md-typeset table img {
max-width: none;
max-height: none;
width: auto;
height: unset;
}
/* /////// FOOTER */
/* Fixes sidebar content rendering over footer when all items expanded */
.md-footer{