/** * Variable column widths for Markdown tables in text fields. * * EspoCRM core CSS forces `table-layout: fixed; width: 100%` on * `.complex-text table`, which makes all columns equally wide. * `auto` lets columns size to content instead. * * Registered via custom/Espo/Custom/Resources/metadata/app/client.json (cssList). */ .complex-text table { table-layout: auto !important; width: auto !important; max-width: 100% !important; }