diff --git a/src/gui/components/_legacy.py b/src/gui/components/_legacy.py index 18e5401..b1f5094 100644 --- a/src/gui/components/_legacy.py +++ b/src/gui/components/_legacy.py @@ -814,6 +814,16 @@ a[data-testid="stPageLink-NavLink"][href*="close"] { closeBtn.type = 'button'; closeBtn.className = 'datatools-footer-btn close'; closeBtn.textContent = labels.close; + + // TEMP: visible marker so the user can confirm whether + // ``#datatools-sticky-footer`` is the "white bar" they want + // removed. To be deleted once identification is confirmed. + var marker = doc.createElement('span'); + marker.textContent = + '◀ CLAUDE TEST: is this the white bar you want removed? ▶'; + marker.style.cssText = + 'color:#b00020;font-weight:700;font-size:12px;' + + 'margin-left:0.6rem;font-family:system-ui,sans-serif;'; // Soft-nav via the hidden ``st.page_link`` that // ``render_sticky_footer`` injects. Streamlit owns its click // handler and will route through ``st.switch_page`` (same @@ -848,6 +858,7 @@ a[data-testid="stPageLink-NavLink"][href*="close"] { div.appendChild(helpBtn); div.appendChild(closeBtn); + div.appendChild(marker); var pop = doc.createElement('div'); pop.id = 'datatools-help-popover';