mirror of
https://github.com/OrcaSlicer/OrcaSlicer_WIKI.git
synced 2026-05-17 08:35:46 +03:00
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:
@@ -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{
|
||||
|
||||
Reference in New Issue
Block a user