fix: mobile bottom nav bar sizing and layout and capture queue input visible on mobile

This commit is contained in:
2026-03-01 22:10:00 +00:00
parent 21bbb169f9
commit c21cbf5e9b
3 changed files with 47 additions and 15 deletions

View File

@@ -369,6 +369,7 @@ a:hover { color: var(--accent-hover); }
.btn-sm { padding: 5px 10px; font-size: 0.8rem; } .btn-sm { padding: 5px 10px; font-size: 0.8rem; }
.btn-xs { padding: 3px 8px; font-size: 0.75rem; } .btn-xs { padding: 3px 8px; font-size: 0.75rem; }
.btn-capture { min-height: 44px; font-size: 0.95rem; padding: 10px 20px; }
/* ---- Cards ---- */ /* ---- Cards ---- */
.card { .card {
@@ -561,6 +562,7 @@ a:hover { color: var(--accent-hover); }
.form-input, .form-input,
.form-select, .form-select,
.form-textarea { .form-textarea {
width: 100%;
font-family: var(--font-body); font-family: var(--font-body);
font-size: 0.92rem; font-size: 0.92rem;
padding: 9px 12px; padding: 9px 12px;
@@ -1029,13 +1031,20 @@ a:hover { color: var(--accent-hover); }
height: 56px; height: 56px;
background: var(--surface); background: var(--surface);
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
z-index: 200; z-index: 1000;
flex-direction: row;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
padding: 0 4px; padding: 0 4px;
padding-bottom: env(safe-area-inset-bottom, 0); padding-bottom: env(safe-area-inset-bottom, 0);
} }
.mobile-bottom-bar svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.mobile-nav-item { .mobile-nav-item {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -1057,6 +1066,7 @@ a:hover { color: var(--accent-hover); }
.mobile-nav-item svg { .mobile-nav-item svg {
width: 24px; width: 24px;
height: 24px; height: 24px;
flex-shrink: 0;
} }
.mobile-nav-item span { .mobile-nav-item span {
@@ -1137,12 +1147,34 @@ a:hover { color: var(--accent-hover); }
/* ---- Responsive ---- */ /* ---- Responsive ---- */
@media (max-width: 768px) { @media (max-width: 768px) {
body { padding-bottom: 60px; }
.sidebar { display: none; } .sidebar { display: none; }
.main-content { margin-left: 0; } .main-content { margin-left: 0; }
.form-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; }
.dashboard-grid { grid-template-columns: 1fr; } .dashboard-grid { grid-template-columns: 1fr; }
.page-content { padding: 16px; padding-bottom: 72px; } .page-content { padding: 16px; padding-bottom: 72px; }
.mobile-bottom-bar { display: flex; } .mobile-bottom-bar { display: flex; }
/* Capture form mobile */
.capture-form-card { padding: 12px; }
.capture-form-card .form-textarea {
font-size: 16px; /* prevents iOS zoom */
min-height: 80px;
}
.capture-form-card .btn-capture {
width: 100%;
min-height: 44px;
font-size: 1rem;
}
/* Capture items stack on mobile */
.capture-item {
flex-direction: column;
gap: 8px;
}
.capture-actions {
flex-wrap: wrap;
}
} }
.search-type-appointments { background: var(--amber-soft); color: var(--amber); } .search-type-appointments { background: var(--amber-soft); color: var(--amber); }

View File

@@ -172,23 +172,23 @@
<!-- Mobile Bottom Nav --> <!-- Mobile Bottom Nav -->
<nav class="mobile-bottom-bar"> <nav class="mobile-bottom-bar">
<a href="/" class="mobile-nav-item {% if active_nav == 'dashboard' %}active{% endif %}"> <a href="/" class="mobile-nav-item {% if active_nav == 'dashboard' %}active{% endif %}">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/></svg> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/></svg>
<span>Dashboard</span> <span>Dashboard</span>
</a> </a>
<a href="/focus" class="mobile-nav-item {% if active_nav == 'focus' %}active{% endif %}"> <a href="/focus" class="mobile-nav-item {% if active_nav == 'focus' %}active{% endif %}">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/></svg> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/></svg>
<span>Focus</span> <span>Focus</span>
</a> </a>
<a href="/tasks" class="mobile-nav-item {% if active_nav == 'tasks' %}active{% endif %}"> <a href="/tasks" class="mobile-nav-item {% if active_nav == 'tasks' %}active{% endif %}">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 11l3 3L22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 11l3 3L22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg>
<span>Tasks</span> <span>Tasks</span>
</a> </a>
<a href="/appointments" class="mobile-nav-item {% if active_nav == 'appointments' %}active{% endif %}"> <a href="/appointments" class="mobile-nav-item {% if active_nav == 'appointments' %}active{% endif %}">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>
<span>Calendar</span> <span>Calendar</span>
</a> </a>
<button class="mobile-nav-item" id="mobile-more-btn" onclick="toggleMobileMore()"> <button class="mobile-nav-item" id="mobile-more-btn" onclick="toggleMobileMore()">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="18" x2="21" y2="18"/></svg> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="18" x2="21" y2="18"/></svg>
<span>More</span> <span>More</span>
</button> </button>
</nav> </nav>
@@ -198,27 +198,27 @@
<div class="mobile-more-backdrop" onclick="toggleMobileMore()"></div> <div class="mobile-more-backdrop" onclick="toggleMobileMore()"></div>
<div class="mobile-more-content"> <div class="mobile-more-content">
<a href="/notes" class="mobile-more-item"> <a href="/notes" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/></svg>
Notes Notes
</a> </a>
<a href="/meetings" class="mobile-more-item"> <a href="/meetings" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
Meetings Meetings
</a> </a>
<a href="/decisions" class="mobile-more-item"> <a href="/decisions" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"/><path d="M9 12l2 2 4-4"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"/><path d="M9 12l2 2 4-4"/></svg>
Decisions Decisions
</a> </a>
<a href="/contacts" class="mobile-more-item"> <a href="/contacts" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
Contacts Contacts
</a> </a>
<a href="/weblinks" class="mobile-more-item"> <a href="/weblinks" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
Weblinks Weblinks
</a> </a>
<a href="/admin/trash" class="mobile-more-item"> <a href="/admin/trash" class="mobile-more-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg> <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg>
Admin Admin
</a> </a>
</div> </div>

View File

@@ -5,10 +5,10 @@
</div> </div>
<!-- Quick capture input --> <!-- Quick capture input -->
<div class="card mb-4"> <div class="card mb-4 capture-form-card">
<form action="/capture/add" method="post"> <form action="/capture/add" method="post">
<label class="form-label mb-2">Quick Capture (one item per line)</label> <label class="form-label mb-2">Quick Capture (one item per line)</label>
<textarea name="raw_text" class="form-textarea" rows="3" placeholder="Type or paste items here...&#10;Each line becomes a separate capture item" required></textarea> <textarea name="raw_text" class="form-textarea" rows="3" placeholder="Type or paste to capture..." required></textarea>
<details class="mt-2"> <details class="mt-2">
<summary class="text-sm text-muted" style="cursor:pointer">Context (optional)</summary> <summary class="text-sm text-muted" style="cursor:pointer">Context (optional)</summary>
<div class="form-grid mt-2" style="grid-template-columns:1fr 1fr"> <div class="form-grid mt-2" style="grid-template-columns:1fr 1fr">
@@ -41,7 +41,7 @@
</div> </div>
</div> </div>
</details> </details>
<div class="mt-2"><button type="submit" class="btn btn-primary">Capture</button></div> <div class="mt-2"><button type="submit" class="btn btn-primary btn-capture">Capture</button></div>
</form> </form>
</div> </div>