diff --git a/palette b/palette index b5929b7..a65b2d4 100755 Binary files a/palette and b/palette differ diff --git a/web/static/app.css b/web/static/app.css index eb1906a..8c210b9 100644 --- a/web/static/app.css +++ b/web/static/app.css @@ -292,3 +292,7 @@ td a.slug:hover { color: var(--accent); } .unlock-card .pw-field { margin: 18px 0 4px; text-align: left; } .unlock-card .pw-field input { text-align: left; } .unlock-err { margin-top: 10px; font-size: 20.7px; color: #ff8fa3; } + +/* paste name under slug pill in Paste column (#43) */ +.paste-sub { font-size: 19.8px; color: var(--muted-fg); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.paste-sub.dim { color: var(--muted); } diff --git a/web/templates/history.html b/web/templates/history.html index 2061d77..45c7277 100644 --- a/web/templates/history.html +++ b/web/templates/history.html @@ -8,8 +8,8 @@
- - + +
PasteDescriptionLanguageSizeViewsCreated
PasteLanguageSizeViewsCreated
@@ -68,8 +68,8 @@ async function load() { } else { $('empty').style.display = 'none'; rows.innerHTML = items.map(it => - `${esc(it.id)}` + - `${it.title ? esc(it.title) : 'none'}` + + `${esc(it.id)}` + + (it.title ? `
${esc(it.title)}
` : `
none
`) + `` + `${esc(it.language || 'text')}` + `${fmtSize(it.size)}${it.view_count}${ago(it.created_at)}` ).join('');