K19-Screenshot (Bühnenplan) + Fallback-SVGs responsiv skalieren #144

Merged
fable-5 merged 2 commits from k19-screenshot-svgfit into main 2026-07-19 23:02:27 +02:00
Showing only changes of commit 4762cb73d3 - Show all commits

View File

@ -2793,6 +2793,15 @@ ul[data-type='task_list'] li p:last-of-type {
height: auto;
}
/* Plugin-fallback SVGs (e.g. Excalidraw sketches inlined by the api's
fallback renderer) carry fixed pixel width/height attributes; without this
they overflow narrow viewports the img rule above does not match inline
<svg> elements. */
.dt-plugin-fallback svg {
max-width: 100%;
height: auto;
}
/* Effective-permissions inspector (issue #57) */
.inspector__intro {
color: var(--color-text-muted);