v4.5.1: streamline CSS with custom properties, remove dead rules
refactor: streamline CSS with custom properties and remove dead rules - Add CSS custom properties (:root) for Tokyo Night palette — 13 colors defined once, reused 50+ times - Remove harmful background:#1a1b26 from b/u (dark patches in TLDR) - Remove redundant font-size:inherit from pre - Remove duplicate #man-content h2 in mobile query - Remove dead .tldr-body dt / .tldr-body dd code selectors - Organize into 8 logical sections Co-Authored-By: Claude <noreply@anthropic.com>
fix: break long shell chains into separate commands The sed pipe | ssh 'cat >' pattern caused /bin/sh quoting errors when all \ continued lines were combined into one -c argument. Now each operation (sed, mv, scp) is an independent shell invocation. Co-Authored-By: Claude Code 2.1.176 with model deepseek-v4-pro <noreply@deepseek.com>
Merge branch 'worktree-phpman-config-check'
fix: use tmpfile+scp instead of sed pipe to avoid shell quoting The sed ... | ssh 'cat >' pattern caused /bin/sh quoting errors with single quotes inside double-quoted sed expressions. Replaced with: sed ... > tmp && mv tmp FILE && scp FILE remote: This avoids the pipe entirely and makes the shell command simpler. Co-Authored-By: Claude Code 2.1.176 with model deepseek-v4-pro <noreply@deepseek.com>
Merge branch 'worktree-phpman-config-check'