fix(ui): render sidebar view-archived icon as outline (#111867)

The .sidebar-view-archived svg rule set stroke: currentColor but never
fill: none, so the archive icon's lid <rect> rendered with SVG's default
black fill — a solid black bar instead of the outlined Lucide archive
box. Align the rule with sibling sidebar icon styles (fill: none,
1.7px stroke, round caps/joins).
This commit is contained in:
Peter Steinberger
2026-07-20 08:47:35 -07:00
committed by GitHub
parent ee74d7b8dc
commit 5ca5c5c1e0
+4
View File
@@ -1732,6 +1732,10 @@ html.openclaw-native-macos
width: 12px;
height: 12px;
stroke: currentColor;
fill: none;
stroke-width: 1.7px;
stroke-linecap: round;
stroke-linejoin: round;
}
.sidebar-recent-session--dragging {