Fix browse table cutoff in narrow windows (v1.10.6)

.conversations-table had overflow: hidden, which clipped the right
side of the table when the browser window was narrower than the
table's natural width AND prevented any scrollbar from appearing.

Switched to overflow-x: auto so the table scrolls horizontally on
demand. Border-radius still clips the rounded corners; the existing
container max-width caps things on the upper end.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
tux tucker 2026-05-18 19:44:30 -04:00
parent aec1345dec
commit e17314674c
5 changed files with 8 additions and 4 deletions

View file

@ -341,7 +341,7 @@
.conversations-table {
background: var(--bg-card);
border-radius: 8px;
overflow: hidden;
overflow-x: auto;
box-shadow: 0 2px 8px var(--shadow-sm);
}

View file

@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Claude Exporter Beta",
"version": "1.10.5",
"version": "1.10.6",
"description": "Export conversations and artifacts from Claude.ai",
"permissions": [
"activeTab",

View file

@ -1,5 +1,9 @@
# Changelog
## [1.10.6]
- Fixed browse table being cut off on the right when the browser window is narrower than the table — `.conversations-table` was `overflow: hidden`, which clipped and suppressed any scrollbar. Now `overflow-x: auto`, so the table scrolls horizontally when needed while keeping rounded corners.
## [1.10.5]
- Slimmed the Contact & Diagnostics section: replaced the three buttons (Email developer / Generate diagnostics / Clear log) with two inline links in a single sentence. "Clear log" removed entirely — and `clearDiagnosticsLog` dropped from `utils.js` since nothing calls it.

View file

@ -341,7 +341,7 @@
.conversations-table {
background: var(--bg-card);
border-radius: 8px;
overflow: hidden;
overflow-x: auto;
box-shadow: 0 2px 8px var(--shadow-sm);
}

View file

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Claude Exporter Beta",
"version": "1.10.5",
"version": "1.10.6",
"description": "Export conversations and artifacts from Claude.ai",
"permissions": [
"activeTab",