Fix: Pfoten-Button rechts neben Suchzeile (Dog-Chip eigene Zeile), SW by-v1069
This commit is contained in:
parent
b1e4d7fce1
commit
9f47cfe1d4
5 changed files with 20 additions and 27 deletions
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '1068'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '1069'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
|
||||
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
||||
// Cache-Bust-Parameter nach Update-Reload sofort entfernen.
|
||||
|
|
|
|||
|
|
@ -562,28 +562,21 @@ window.Page_uebungen = (() => {
|
|||
function _render() {
|
||||
_container.innerHTML = `
|
||||
<div id="ueb-wrap">
|
||||
<div style="padding:var(--space-3) var(--space-4) var(--space-2);
|
||||
display:flex;gap:var(--space-3);align-items:stretch">
|
||||
<!-- Links: Dog-Chip + Suchzeile -->
|
||||
<div style="flex:1;min-width:0;display:flex;flex-direction:column;gap:var(--space-2)">
|
||||
${UI.dogChip(_appState)}
|
||||
<input type="search" id="ueb-search" placeholder="Übung suchen…"
|
||||
style="flex:1;min-width:0;padding:var(--space-2) var(--space-3);
|
||||
border:1px solid var(--c-border);border-radius:var(--radius-md);
|
||||
background:var(--c-surface);color:var(--c-text);font-size:var(--text-sm);
|
||||
outline:none">
|
||||
</div>
|
||||
<!-- Rechts: Pfoten-Button -->
|
||||
<div style="padding:var(--space-3) var(--space-4) 0">${UI.dogChip(_appState)}</div>
|
||||
<div style="padding:var(--space-2) var(--space-4) var(--space-2);display:flex;gap:var(--space-2);align-items:stretch">
|
||||
<input type="search" id="ueb-search" placeholder="Übung suchen…"
|
||||
style="flex:1;min-width:0;padding:var(--space-2) var(--space-3);
|
||||
border:1px solid var(--c-border);border-radius:var(--radius-md);
|
||||
background:var(--c-surface);color:var(--c-text);font-size:var(--text-sm);outline:none">
|
||||
<button id="ueb-quicksetup-btn"
|
||||
style="flex-shrink:0;width:68px;align-self:stretch;
|
||||
style="flex-shrink:0;width:64px;
|
||||
background:var(--c-primary-subtle);border:1.5px solid var(--c-primary-light);
|
||||
border-radius:var(--radius-lg);cursor:pointer;
|
||||
border-radius:var(--radius-md);cursor:pointer;
|
||||
display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px">
|
||||
<svg class="ph-icon" style="width:26px;height:26px;color:var(--c-primary)" aria-hidden="true">
|
||||
<svg class="ph-icon" style="width:24px;height:24px;color:var(--c-primary)" aria-hidden="true">
|
||||
<use href="/icons/phosphor.svg#paw-print"></use>
|
||||
</svg>
|
||||
<span style="font-size:9px;font-weight:var(--weight-semibold);color:var(--c-primary);
|
||||
line-height:1.2;text-align:center">Stand<br>erfassen</span>
|
||||
<span style="font-size:9px;font-weight:var(--weight-semibold);color:var(--c-primary);line-height:1.2;text-align:center">Stand<br>erfassen</span>
|
||||
</button>
|
||||
</div>
|
||||
${_renderTabs()}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue