⚠ ネタバレ注意: 本サイトはSFアニメ「SOLAR LINE」の内容を詳細に分析しています。未視聴の方はご注意ください。
📝 AI生成コンテンツ: 本考証の大部分は AI(Claude Code 等)によって生成されています。内容の正確性については原作および引用元をご確認ください。

Task 352: Table Readability — Responsive Horizontal Scroll

完了 ← タスク一覧

Task 352: Table Readability — Responsive Horizontal Scroll

Status: DONE

Description

Tables across reports were too wide and hard to read, especially on narrower screens.

Added responsive horizontal scrolling (overflow-x: auto) to all table types.

Changes

  1. Markdown tables (renderMarkdownTable): Wrapped output in <div class="table-wrap"> with overflow-x: auto
  2. .table-wrap CSS: Added styling for bare markdown tables (borders, padding, font-size, header styling)
  3. Named table wrappers: Added <div class="table-wrap"> around:

- renderComparisonTable() output

- Speaker registry tables (transcription pages)

- Transcription index table

- Task dashboard table

- ADR index table

- Ideas index table

  1. renderCustomComparisonTable(): Added overflow-x: auto to existing div wrapper
  2. Tab panels: Added overflow-x: auto to .tab-panel CSS for transcription tab content tables
  3. Mobile: Added responsive font-size override for .table-wrap tables at ≤600px

Testing