fix(ui): render close icon in image lightbox header (#113913)

This commit is contained in:
Peter Steinberger
2026-07-25 17:16:29 -07:00
committed by GitHub
parent 93a0fdb9b8
commit 34ee065bf3

View File

@@ -127,6 +127,13 @@ class OpenClawImageLightbox extends OpenClawLitElement {
.close svg {
width: 17px;
height: 17px;
/* Shadow DOM: global icon stroke rules don't reach in here; without a
stroke the open-path x icon renders invisible. */
fill: none;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.stage {