Matrix icon in footer is invisible #8
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Seems to render correctly in {firefox,chrome}x{nixos,android,macos}, but fails on Safari+macOS and all browsers on iOS (per Apple policy they're forced to use Safari's rendering engine).
Poking around in the inspector, it's because the Matrix
<svg>
elements doesn't havewidth
andheight
attributes, so Safari renders it as a 0x0 element. Setting an explicit 16x16 viewport makes Safari render correctly, and doesn't seem to break {firefox,chrome}x{nixos}. I'll send a PRFurther detail: the SVG 2 spec introduced the
auto
value for width/height, to calculate the viewport dimensions based on content dimensions: https://www.w3.org/TR/SVG2/embedded.html#PlacementFirefox and Chrome seem to default width/height for svg elements to
auto
, whereas Safari doesn't (maybe sticks with SVG 1.1 behavior?) and so the viewport collapses into a singularity unless explicitly expanded.