Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion components.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,11 @@
}

.feedback-panel.is-open {
pointer-events: auto;
pointer-events: none; /* pass clicks through the wrapper to dots behind */
}

.feedback-panel.is-open .feedback-box:not([hidden]) {
pointer-events: auto; /* only the visible card captures events */
}

/* Single box fills the panel */
Expand Down Expand Up @@ -544,6 +548,8 @@
}

#viewVariant {
bottom: auto; /* hug content height */
max-height: calc(100% - var(--padding-md) * 2); /* cap at full panel */
}

/* ── Action Bar ── */
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ <h4 class="h3">Your dot has been planted!</h4>

<!-- Footer Bar -->
<div class="footerBar footerBar--end" style="gap:4px;">
<button class="btn btn--secondary" id="editFromConfirmBtn" type="button">Edit</button>
<button class="btn btn--primary" id="doneBtn" type="button">Done</button>
<button class="btn btn--secondary" id="editFromConfirmBtn" type="button">Edit your response</button>
<button class="btn btn--outlined" id="doneBtn" type="button">Done</button>
</div>
</div>

Expand Down Expand Up @@ -391,7 +391,7 @@ <h3 class="h3">This art inspiration</h3>
const topDots = [
// Yellow (x 2–44%)
{id:'y01',c:'yellow',x:3, y:10,s:false},
{id:'y02',c:'yellow',x:11, y:10,s:false},
{id:'y02',c:'yellow',x:38, y:40,s:false},
{id:'y03',c:'yellow',x:19, y:10,s:false},
{id:'y04',c:'yellow',x:28, y:10,s:false},
{id:'y05',c:'yellow',x:8, y:25,s:false},
Expand Down
Loading