Commit 55778d5
fix(ui): fix z-order - panel must be above overlay
Critical fix: The slide-in panel was appearing behind the overlay,
causing a black screen with only a weird card visible.
The problem was widget creation order:
- Before: Overlay created first, then panel
- After: Panel positioned first, then overlay, then panel lifted
Changes:
- Position panel BEFORE creating overlay
- Create overlay AFTER panel is positioned
- Call lift() AFTER both are created to ensure panel is on top
This ensures proper z-order where:
- Overlay is at the bottom (dims background)
- Panel is above overlay (visible and interactive)
Fixes: Black screen covering entire application
Related: #14
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent f26835f commit 55778d5
1 file changed
Lines changed: 17 additions & 17 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
114 | 128 | | |
115 | 129 | | |
116 | 130 | | |
| |||
128 | 142 | | |
129 | 143 | | |
130 | 144 | | |
131 | | - | |
132 | | - | |
133 | | - | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
139 | | - | |
140 | | - | |
141 | | - | |
142 | | - | |
143 | | - | |
| 145 | + | |
| 146 | + | |
144 | 147 | | |
145 | 148 | | |
146 | 149 | | |
147 | 150 | | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | 151 | | |
152 | 152 | | |
153 | 153 | | |
| |||
0 commit comments