feat: comprehensive mobile/responsive audit fixes
Touch targets: - All .lt-btn-sm, .lt-menu-btn, .lt-page-btn, .lt-dropdown-trigger, .lt-notif-bell-btn now 44px minimum on pointer:coarse devices Font size floors: - Nothing below 0.72rem on XS; nav drawer, cmd palette, stats, timeline, dropdown items, notification timestamps all bumped to readable sizes Notification panel: - width: min(300px,92vw) prevents overflow on 320px screens - max-height: min(280px,calc(80vh-110px)) for landscape safety - title: 2-line clamp instead of single-line truncate - Header/time font sizes increased to 0.75rem/0.7rem Dropdown panels: - Advanced filter: clamp(200px,60vw,260px) instead of fixed 240px - All dropdowns: max-width:90vw + proper alignment on SM/XS - Dropdown items: 0.78-0.8rem, 36px min-height Toolbar: - toolbar-left/right now flex-wrap on SM+XS; search expands full-width - Result count hidden on XS (.lt-hide-xs) to uncramp narrow toolbars Drawer: - Right drawer goes full-width (100vw) on SM with border-top - Status/Priority 2-col form grid collapses to 1-col (.lt-drawer-form-grid) Table card mode: - Breakpoint corrected from rogue 640px → 767px (system breakpoint) - Row min-height 36px, font bumped to 0.78rem Kanban: - Keeps 2-col at SM and XS (was collapsing to 1-col, confusing semantics) Grids: - Chart demo, sortable demo: auto-fit minmax so they reflow naturally - Countdown stat grid: auto-fit minmax(160px,1fr) instead of fixed 3-col - Grid gap reduced to var(--space-sm) at XS Split pane: - Demo height: clamp(160px,30vh,240px) instead of fixed 200px - Stacks vertically on SM with horizontal divider Modals: - max-width: 640px cap prevents 4K-wide modals; overridden on SM/XS Header: - Brand title truncated at max-width:110px on XS - WS status indicator hidden on XS to free header space - Admin badge hidden on XS - Safe-area insets applied to header-right and toast container Landscape phone: - Modal max-height respects viewport; notif list shrinks Breakpoint consistency: - Removed rogue 640px breakpoint; all queries use 479/767/1023/1279px system Section 78 added with all targeted overrides. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -119,7 +119,7 @@
|
||||
<button class="lt-theme-btn" id="lt-theme-btn" aria-label="Switch to light mode" title="Switch to light mode">☀</button>
|
||||
<!-- Notifications with badge + dropdown -->
|
||||
<div class="lt-notif-dropdown-wrap" id="lt-notif-bell">
|
||||
<button class="lt-btn lt-btn-sm lt-notif-bell-btn" id="lt-notif-bell-btn" aria-label="Open notifications" aria-expanded="false" aria-haspopup="true" style="padding:0 0.5rem;min-height:32px;">🔔</button>
|
||||
<button class="lt-btn lt-btn-sm lt-notif-bell-btn" id="lt-notif-bell-btn" aria-label="Open notifications" aria-expanded="false" aria-haspopup="true" style="padding:0 0.6rem;">🔔</button>
|
||||
<div class="lt-notif-panel" id="lt-notif-panel" aria-hidden="true">
|
||||
<div class="lt-notif-panel-header">
|
||||
<span>Notifications</span>
|
||||
@@ -185,7 +185,7 @@
|
||||
<label class="lt-label" for="td-title">Title</label>
|
||||
<input id="td-title" class="lt-input" type="text" value="Storage array link-down on compute-storage-01">
|
||||
</div>
|
||||
<div style="display:grid;grid-template-columns:1fr 1fr;gap:0.75rem">
|
||||
<div class="lt-drawer-form-grid" style="display:grid;grid-template-columns:1fr 1fr;gap:0.75rem">
|
||||
<div class="lt-form-group">
|
||||
<label class="lt-label" for="td-status">Status</label>
|
||||
<select id="td-status" class="lt-select">
|
||||
@@ -387,10 +387,10 @@
|
||||
<div class="lt-dropdown-wrap" id="adv-filter-wrap">
|
||||
<button class="lt-btn lt-btn-sm lt-dropdown-trigger" id="adv-filter-btn" aria-expanded="false" aria-haspopup="true">Advanced ▾</button>
|
||||
<div class="lt-dropdown-panel" id="adv-filter-panel" aria-hidden="true">
|
||||
<div style="padding:0.75rem;display:grid;gap:0.5rem;min-width:240px">
|
||||
<div style="padding:0.75rem;display:grid;gap:0.5rem;width:clamp(200px,60vw,260px)">
|
||||
<div class="lt-form-group" style="margin:0">
|
||||
<label class="lt-label" style="font-size:0.7rem">Status</label>
|
||||
<select class="lt-select" style="font-size:0.75rem">
|
||||
<label class="lt-label" style="font-size:0.75rem">Status</label>
|
||||
<select class="lt-select" style="font-size:0.8rem">
|
||||
<option value="">All</option>
|
||||
<option>Open</option>
|
||||
<option>In Progress</option>
|
||||
@@ -399,8 +399,8 @@
|
||||
</select>
|
||||
</div>
|
||||
<div class="lt-form-group" style="margin:0">
|
||||
<label class="lt-label" style="font-size:0.7rem">Priority</label>
|
||||
<select class="lt-select" style="font-size:0.75rem">
|
||||
<label class="lt-label" style="font-size:0.75rem">Priority</label>
|
||||
<select class="lt-select" style="font-size:0.8rem">
|
||||
<option value="">All</option>
|
||||
<option>P1 Critical</option>
|
||||
<option>P2 High</option>
|
||||
@@ -409,8 +409,8 @@
|
||||
</select>
|
||||
</div>
|
||||
<div class="lt-form-group" style="margin:0">
|
||||
<label class="lt-label" style="font-size:0.7rem">Assignee</label>
|
||||
<select class="lt-select" style="font-size:0.75rem">
|
||||
<label class="lt-label" style="font-size:0.75rem">Assignee</label>
|
||||
<select class="lt-select" style="font-size:0.8rem">
|
||||
<option value="">Anyone</option>
|
||||
<option>Unassigned</option>
|
||||
<option>jdoe</option>
|
||||
@@ -427,7 +427,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="lt-toolbar-right">
|
||||
<span class="lt-text-muted lt-text-xs" id="ticket-result-count">42 results</span>
|
||||
<span class="lt-text-muted lt-text-xs lt-hide-xs" id="ticket-result-count">42 results</span>
|
||||
<!-- Bulk actions dropdown -->
|
||||
<div class="lt-dropdown-wrap" id="bulk-action-wrap">
|
||||
<button class="lt-btn lt-btn-sm lt-btn-ghost lt-dropdown-trigger" id="bulk-action-btn" aria-expanded="false" aria-haspopup="true">Bulk Actions ▾</button>
|
||||
@@ -1326,7 +1326,7 @@
|
||||
<span class="lt-section-title">// CHART CONTAINERS</span>
|
||||
</div>
|
||||
<div class="lt-section-body">
|
||||
<div class="lt-grid lt-grid-2" style="gap:1rem">
|
||||
<div class="lt-grid lt-grid-2" style="gap:1rem;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))">
|
||||
<div class="lt-chart-wrap">
|
||||
<div class="lt-chart-header">
|
||||
<span class="lt-chart-title">Ticket Volume (7d)</span>
|
||||
@@ -1352,7 +1352,7 @@
|
||||
<span class="lt-section-title">// SPLIT PANE</span>
|
||||
</div>
|
||||
<div class="lt-section-body">
|
||||
<div class="lt-split" id="demo-split" style="height:200px;border:1px solid var(--border-dim)">
|
||||
<div class="lt-split" id="demo-split" style="height:clamp(160px,30vh,240px);border:1px solid var(--border-dim)">
|
||||
<div class="lt-split-pane" style="padding:1rem;overflow:auto">
|
||||
<div class="lt-section-label" style="margin-bottom:0.5rem">Panel A</div>
|
||||
<p style="font-size:0.78rem;color:var(--text-secondary)">Drag the divider to resize. Stacks vertically on mobile.</p>
|
||||
@@ -1441,9 +1441,9 @@
|
||||
<span class="lt-section-title">// DRAG-TO-REORDER (SORTABLE)</span>
|
||||
</div>
|
||||
<div class="lt-section-body">
|
||||
<div class="lt-grid lt-grid-2" style="gap:1.5rem">
|
||||
<div class="lt-grid lt-grid-2" style="gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))">
|
||||
<div>
|
||||
<p style="font-size:0.72rem;color:var(--text-muted);margin-bottom:0.75rem">Drag items to reorder. Uses native HTML5 drag API with pointer-events fallback.</p>
|
||||
<p style="font-size:0.75rem;color:var(--text-muted);margin-bottom:0.75rem">Drag items to reorder. Uses native HTML5 drag API with pointer-events fallback.</p>
|
||||
<ul id="demo-sortable" style="list-style:none;padding:0;display:flex;flex-direction:column;gap:4px">
|
||||
<li data-id="p1" style="padding:0.5rem 0.75rem;background:var(--bg-card);border:1px solid var(--border-dim);display:flex;align-items:center;gap:0.5rem"><span style="color:var(--text-muted);cursor:grab">⠿</span> P1 — Storage link-down</li>
|
||||
<li data-id="p2" style="padding:0.5rem 0.75rem;background:var(--bg-card);border:1px solid var(--border-dim);display:flex;align-items:center;gap:0.5rem"><span style="color:var(--text-muted);cursor:grab">⠿</span> P2 — Switch port flapping</li>
|
||||
@@ -1468,7 +1468,7 @@
|
||||
<span class="lt-section-title">// COUNTDOWN & TIMER</span>
|
||||
</div>
|
||||
<div class="lt-section-body">
|
||||
<div class="lt-grid lt-grid-3" style="gap:1rem">
|
||||
<div class="lt-grid lt-grid-3" style="gap:1rem;grid-template-columns:repeat(auto-fit,minmax(160px,1fr))">
|
||||
<div class="lt-stat-card">
|
||||
<div class="lt-stat-label">SLA Countdown</div>
|
||||
<div class="lt-countdown lt-num" id="demo-countdown">--:--:--</div>
|
||||
|
||||
Reference in New Issue
Block a user