This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/dashboard/templates/mobile.html
Claude 65a278dbee fix: comprehensive iPhone UI overhaul — glassmorphism, responsive layouts, theme unification
- base.html: add missing {% block extra_styles %}, mobile hamburger menu with
  slide-out nav, interactive-widget viewport meta, -webkit-text-size-adjust
- style.css: define 15+ missing CSS variables (--bg-secondary, --text-muted,
  --accent, --success, --danger, etc.), add missing utility classes (.grid,
  .stat, .agent-card, .agent-avatar, .form-group), glassmorphism card effects,
  iPhone breakpoints (768px, 390px), 44pt min touch targets, smooth animations
- mobile.html: rewrite with proper theme variables, glass cards, touch-friendly
  quick actions grid, chat with proper message bubbles
- swarm_live.html: replace undefined CSS vars, use mc-panel theme cards
- marketplace.html: responsive agent cards that stack on iPhone, themed pricing
- voice_button.html & voice_enhanced.html: proper theme integration, touch-sized
  buttons, themed result containers
- create_task.html: mobile-friendly forms with 16px font (prevents iOS zoom)
- tools.html & creative.html: themed headers, responsive column stacking
- spark.html: replace all hardcoded blue (#00d4ff) colors with theme purple/orange
- briefing.html: replace hardcoded bootstrap colors with theme variables

Fixes: header nav overflow on iPhone (7 links in single row), missing
extra_styles block silently dropping child template styles, undefined CSS
variables breaking mobile/swarm/marketplace/voice pages, sub-44pt touch
targets, missing -webkit-text-size-adjust, inconsistent color themes.

97 UI tests pass (91 UI-specific + 6 creative route).

https://claude.ai/code/session_01JiyhGyee2zoMN4p8xWYqEe
2026-02-24 22:25:04 +00:00

284 lines
8.5 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ page_title }}{% endblock %}
{% block extra_styles %}
<style>
@media (min-width: 769px) {
.mobile-only { display: none; }
}
@media (max-width: 768px) {
.desktop-message { display: none; }
}
.mobile-only {
display: flex;
flex-direction: column;
gap: 12px;
padding-bottom: 20px;
}
.quick-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
padding: 14px;
}
.quick-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 52px;
border-radius: var(--radius-md);
font-family: var(--font);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.06em;
text-decoration: none;
color: var(--text-bright);
border: 1px solid var(--border);
background: rgba(24, 10, 45, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
transition: transform 0.1s, border-color 0.2s, box-shadow 0.2s;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.quick-btn:hover { color: var(--text-bright); text-decoration: none; }
.quick-btn:active { transform: scale(0.96); }
.quick-btn.voice {
border-color: var(--border-glow);
background: rgba(124, 58, 237, 0.15);
}
.quick-btn.voice:active {
box-shadow: 0 0 18px rgba(124, 58, 237, 0.3);
}
.mobile-chat-wrap {
flex: 1;
display: flex;
flex-direction: column;
min-height: 0;
}
.mobile-chat-log {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 14px;
max-height: 300px;
}
.mobile-chat-input {
display: flex;
gap: 8px;
padding: 10px 14px;
padding-bottom: max(10px, env(safe-area-inset-bottom));
background: rgba(24, 10, 45, 0.9);
border-top: 1px solid var(--border);
}
.mobile-chat-input input {
flex: 1;
background: rgba(8, 4, 18, 0.75);
border: 1px solid var(--border);
border-radius: var(--radius-md);
color: var(--text-bright);
font-family: var(--font);
font-size: 16px;
padding: 10px 12px;
min-height: 44px;
}
.mobile-chat-input input:focus {
outline: none;
border-color: var(--border-glow);
box-shadow: 0 0 0 1px var(--border-glow), 0 0 8px rgba(124, 58, 237, 0.2);
}
.mobile-chat-input input::placeholder { color: var(--text-dim); }
.mobile-chat-input button {
background: var(--border-glow);
border: none;
border-radius: var(--radius-md);
color: var(--text-bright);
font-family: var(--font);
font-size: 12px;
font-weight: 700;
padding: 0 16px;
min-height: 44px;
letter-spacing: 0.1em;
transition: background 0.15s, transform 0.1s;
touch-action: manipulation;
}
.mobile-chat-input button:active { transform: scale(0.96); }
.mobile-agents-list {
padding: 14px;
display: flex;
flex-direction: column;
gap: 8px;
}
.mobile-chat-msg {
margin-bottom: 12px;
}
.mobile-chat-msg .meta {
font-size: 10px;
letter-spacing: 0.1em;
margin-bottom: 3px;
}
.mobile-chat-msg.user .meta { color: var(--orange); }
.mobile-chat-msg.timmy .meta { color: var(--purple); }
.mobile-chat-msg .bubble {
background: rgba(24, 10, 45, 0.8);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 10px 12px;
font-size: 13px;
line-height: 1.6;
color: var(--text);
}
.mobile-chat-msg.timmy .bubble {
border-left: 3px solid var(--purple);
}
.mobile-chat-msg.user .bubble {
border-color: var(--border-glow);
}
</style>
{% endblock %}
{% block content %}
<div class="mobile-only">
<!-- Quick Actions -->
<div class="card mc-panel">
<div class="card-header mc-panel-header">// QUICK ACTIONS</div>
<div class="quick-grid">
<a href="/voice/button" class="quick-btn voice">&#x1F3A4; Voice</a>
<a href="/swarm/task/create" class="quick-btn">&#x2795; Task</a>
<a href="/swarm/live" class="quick-btn">&#x1F4CA; Swarm</a>
<a href="/marketplace/ui" class="quick-btn">&#x1F3EA; Market</a>
</div>
</div>
<!-- Chat -->
<div class="card mc-panel mobile-chat-wrap">
<div class="card-header mc-panel-header">// TIMMY</div>
<div class="mobile-chat-log" id="mobile-chat">
<div class="mobile-chat-msg timmy">
<div class="meta">TIMMY</div>
<div class="bubble">Sir, Timmy here. Ready for your command.</div>
</div>
</div>
<form onsubmit="sendMobileMessage(event)" class="mobile-chat-input">
<input type="text" id="mobile-message" placeholder="Message Timmy..." required autocomplete="off" />
<button type="submit">SEND</button>
</form>
</div>
<!-- Agents -->
<div class="card mc-panel">
<div class="card-header mc-panel-header">// YOUR AGENTS</div>
<div class="mobile-agents-list">
{% if agents %}
{% for agent in agents[:3] %}
<div class="agent-card">
<div class="agent-avatar">{{ agent.name[0] }}</div>
<div class="agent-info">
<div class="agent-name">{{ agent.name }}</div>
<div class="agent-meta">
<span class="badge badge-{{ 'success' if agent.status == 'active' else 'warning' if agent.status == 'busy' else 'danger' }}">
{{ agent.status }}
</span>
</div>
</div>
</div>
{% endfor %}
{% else %}
<div style="color: var(--text-dim); text-align: center; padding: 20px; font-size: 12px; letter-spacing: 0.08em;">
NO AGENTS YET
</div>
{% endif %}
</div>
</div>
</div>
<!-- Desktop fallback -->
<div class="desktop-message" style="text-align: center; padding: 60px;">
<p style="font-size: 3rem; margin-bottom: 20px;">&#x1F4F1;</p>
<h2 style="margin-bottom: 16px; color: var(--text-bright);">Mobile Dashboard</h2>
<p style="color: var(--text-dim);">
This page is optimized for mobile devices.<br>
Please visit on your iPhone or use the desktop dashboard.
</p>
<a href="/" class="btn btn-primary" style="margin-top: 20px;">
Go to Desktop Dashboard
</a>
</div>
<script>
async function sendMobileMessage(event) {
event.preventDefault();
const input = document.getElementById('mobile-message');
const message = input.value.trim();
if (!message) return;
const chat = document.getElementById('mobile-chat');
// Add user message
const userDiv = document.createElement('div');
userDiv.className = 'mobile-chat-msg user';
const userMeta = document.createElement('div');
userMeta.className = 'meta';
userMeta.textContent = 'YOU';
const userBubble = document.createElement('div');
userBubble.className = 'bubble';
userBubble.textContent = message;
userDiv.appendChild(userMeta);
userDiv.appendChild(userBubble);
chat.appendChild(userDiv);
chat.scrollTop = chat.scrollHeight;
input.value = '';
try {
const response = await fetch('/agents/timmy/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: 'message=' + encodeURIComponent(message)
});
const html = await response.text();
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
const timmyResponse = doc.querySelector('.chat-message.timmy, .msg-body');
const replyDiv = document.createElement('div');
replyDiv.className = 'mobile-chat-msg timmy';
const replyMeta = document.createElement('div');
replyMeta.className = 'meta';
replyMeta.textContent = 'TIMMY';
const replyBubble = document.createElement('div');
replyBubble.className = 'bubble';
replyBubble.textContent = timmyResponse ? timmyResponse.textContent.trim() : 'Response received.';
replyDiv.appendChild(replyMeta);
replyDiv.appendChild(replyBubble);
chat.appendChild(replyDiv);
chat.scrollTop = chat.scrollHeight;
} catch (e) {
const errDiv = document.createElement('div');
errDiv.className = 'mobile-chat-msg timmy';
const errMeta = document.createElement('div');
errMeta.className = 'meta';
errMeta.textContent = 'TIMMY';
const errBubble = document.createElement('div');
errBubble.className = 'bubble';
errBubble.style.color = 'var(--red)';
errBubble.textContent = 'Sorry, I could not process that. Try again?';
errDiv.appendChild(errMeta);
errDiv.appendChild(errBubble);
chat.appendChild(errDiv);
chat.scrollTop = chat.scrollHeight;
}
}
</script>
{% endblock %}