dragoon0x/everything-design-taste

table-design

Data table patterns, sorting, filtering, pagination, responsive tables, and information-dense displays.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill table-design

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,658 B
  • docs SUMMARY.md 123 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Table Design

Table Fundamentals

Column Design

  • Left-align text columns. Right-align number columns. Center status indicators.
  • Column headers: bold, slightly smaller, uppercase or gray text.
  • Sortable columns: show sort indicator. Default sort by most useful column.
  • Minimum column width: ensure content doesn't truncate to unreadable lengths.

Row Design

  • Alternate row shading (zebra stripes) for wide tables. Skip for narrow tables.
  • Row height: 48-56px for comfortable reading. 36-40px for dense/power-user views.
  • Hover state on rows when clickable. No hover state on non-interactive tables.
  • Selected state: subtle background highlight + checkbox.

Pagination vs Infinite Scroll

Use Pagination Use Infinite Scroll
When users search for specific items When users browse/discover
Data tables and results Social feeds and galleries
When URL state matters When position doesn't matter

Responsive Tables

  • Under 768px: convert rows to cards. Each card shows one row's data.
  • Or: horizontal scroll with first column frozen.
  • Never: shrink text to fit. Never: hide columns without user control.
  • Priority columns: let users choose which columns to show.

Filtering

  • Filters above the table, not in a sidebar (unless 5+ filter types).
  • Show active filter count. One-click to clear all filters.
  • Instant filtering (no "Apply" button) for small datasets.