minor style look and feel tweaks

This commit is contained in:
Brad Stein 2025-09-17 09:38:28 -05:00
parent dcf9a6ab90
commit f73bbc7b9f
3 changed files with 142 additions and 99 deletions

View File

@ -19,7 +19,7 @@ export default function Login({ onLogin }: { onLogin: () => void }) {
{err && <div className="meta bad">{err}</div>}
</div>
</form>
<p className="meta">Credentials are verified against your Jellyfin server.</p>
<p className="meta">Use your Jellyfin account.</p>
</section>
)
}

View File

@ -620,8 +620,9 @@ export default function Uploader() {
</div>
</div>
{sub && (
<div className="row-center buttons-row">
<div className="sub-actions">
<button
type="button"
className="icon-btn"
title="Go to library root"
aria-label="Go to library root"
@ -629,9 +630,23 @@ export default function Uploader() {
>
🏠
</button>
<button onClick={() => void renameFolder(sub)}>Rename</button>
<button onClick={() => void deleteFolder(sub)} className="bad">Delete</button>
<button onClick={() => { setSub(''); void refresh(lib, '') }}>Clear</button>
<button
type="button"
onClick={() => void renameFolder(sub)}
>
Rename
</button>
<button
type="button"
className="icon-btn danger"
title="Delete subfolder"
aria-label="Delete subfolder"
onClick={() => void deleteFolder(sub)}
>
</button>
</div>
)}
</article>
@ -690,12 +705,14 @@ export default function Uploader() {
Open
</button>
) : (
<>
{sub === '' && <button onClick={() => void renamePath(f.path)}>Rename</button>}
<button onClick={() => void deletePath(f.path, false)} className="bad">
Delete
<button
className="icon-btn bad"
title="Delete"
aria-label={`Delete ${f.name}`}
onClick={() => void deletePath(f.path, false)}
>
</button>
</>
)}
</div>
</article>

View File

@ -1,104 +1,130 @@
/* frontend/src/styles.css */
@import '@picocss/pico/css/pico.classless.min.css';
/* Container */
/* ── Container & sections ─────────────────────────────────────────────── */
main { max-width: 980px; margin: 0 auto; padding: 0 12px 24px; }
section{ margin-block: 1rem; }
/* App bar */
/* ── App bar ──────────────────────────────────────────────────────────── */
.app-header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin:12px 0 24px; }
.brand { display:flex; align-items:center; gap:8px; font-size:1.25rem; }
.brand .wing{ font-size:1.3em; line-height:1; }
/* Layout helpers */
/* ── Layout helpers ───────────────────────────────────────────────────── */
.grid-3 { display:grid; gap:12px; }
@media (min-width:768px){
.grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); align-items:end; }
}
.file-picker { display:grid; gap:12px; }
.row-between { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.row-right { display:flex; align-items:center; justify-content:flex-end; gap:8px; }
.row-center { display:flex; align-items:center; justify-content:center; gap:8px; }
/* Inputs fill their line */
/* Form controls fill their line */
label>input, label>select, label>textarea { width:100%; }
/* Subtle card and list rows */
.card { padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.03); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); }
.list-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 12px; border-radius: 8px; }
/* ── Cards & list rows ────────────────────────────────────────────────── */
.card{
padding:10px 12px;
border-radius:10px;
background:rgba(255,255,255,.03);
box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}
.list-row{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
padding:8px 12px;
border-radius:8px;
max-width:100%;
}
.list-row:not(:last-child){ margin-bottom:4px; }
/* File review cards */
/* Keep the left side flexible & clamped */
.list-row > :first-child{ flex:1 1 auto; min-width:0; }
.list-row .ellipsis{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
/* ── File review cards ────────────────────────────────────────────────── */
.video-card{
border:1px solid var(--muted-border-color);
border-radius:12px;
padding:12px;
background: var(--surface-2, rgba(255,255,255,0.02));
background:var(--surface-2,rgba(255,255,255,.02));
display:grid;
gap:10px;
max-width:100%;
}
.video-card > *{ min-width:0; } /* prevent horizontal overflow */
.thumb-row{ display:grid; place-items:center; }
.preview-thumb{ box-shadow:0 1px 0 rgba(0,0,0,.12); }
.filename { margin: 0 0 4px; }
.filename{ margin:0 0 4px; overflow-wrap:anywhere; word-break:break-word; } /* wrap long names */
/* Utilities */
.ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* ── Overflow guards & utilities ──────────────────────────────────────── */
html, body { max-width:100%; overflow-x:hidden; }
.wrap-anywhere{ overflow-wrap:anywhere; word-break:break-word; }
.mono-wrap{
font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
overflow-wrap:anywhere; word-break:break-word;
}
small.meta{ color:var(--muted-color); }
.bad { color:var(--del-color); }
.stretch { width:100%; }
/* --- Prevent horizontal overflow / allow wrapping --- */
/* Never let rows outgrow the viewport */
.list-row,
.card,
.video-card { max-width: 100%; }
/* Left column of rows: allow wrapping and shrinking */
.list-row .name,
.list-row .meta-wrap {
flex: 1 1 auto;
min-width: 0; /* enables flexbox text clamping */
/* ── Current SubFolder actions (3 equal columns) ─────────────────────── */
.sub-actions{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:10px;
align-items:stretch;
justify-items:stretch;
margin-top:8px;
}
.sub-actions > button{ width:100%; }
/* Right button cluster should never shrink weirdly */
.row-right {
flex: 0 0 auto; /* keep buttons the same width */
}
/* Generic helpers for wrapping long tokens (dots, underscores, hashes) */
.wrap-anywhere {
overflow-wrap: anywhere;
word-break: break-word;
}
/* Mono lines that can wrap (e.g., final filenames) */
.mono-wrap {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
overflow-wrap: anywhere;
word-break: break-word;
}
/* Long headings / filenames on cards should wrap instead of overflow */
.filename { overflow-wrap: anywhere; word-break: break-word; }
/* If any native control still nudges layout, this prevents accidental sideways scroll */
html, body { max-width: 100%; overflow-x: hidden; }
/* Let grid children inside cards shrink; prevents horizontal overflow */
.video-card > * { min-width: 0; }
/* Ensure long file names wrap instead of overflowing */
.filename { overflow-wrap: anywhere; word-break: break-word; }
/* Center the actions row in the Current SubFolder card */
.buttons-row {
justify-content: center; /* explicit, even though row-center already centers */
flex-wrap: wrap; /* wrap on very small screens */
}
/* Neutralize any framework inline margins to keep the group perfectly centered;
gap from the parent flex container provides the spacing */
.buttons-row > button {
/* ── Icon buttons (Home / Delete) ─────────────────────────────────────── */
.icon-btn{
display:inline-grid;
place-items:center;
padding:.35rem .45rem;
min-width:2.25rem;
height:2.25rem;
line-height:1;
font-size:1.15rem;
margin-inline:0;
}
/* Danger (red X). Keep .bad as an alias for compatibility. */
.icon-btn.danger,
.icon-btn.bad{
background:var(--del-color,#c0392b);
border-color:var(--del-color,#c0392b);
color:#fff;
}
.icon-btn.danger:hover,
.icon-btn.danger:focus,
.icon-btn.bad:hover,
.icon-btn.bad:focus{
filter:brightness(1.05);
}
/* Equal height for Current SubFolder action buttons */
.sub-actions { --sub-action-h: 2.75rem; } /* pick a single row height */
.sub-actions > button{
height: var(--sub-action-h);
display: inline-flex;
align-items: center;
justify-content: center;
}
/* Make icon buttons match that height only inside this group */
.sub-actions > .icon-btn{
height: var(--sub-action-h);
min-height: var(--sub-action-h);
padding: 0 .6rem; /* vertical centering; modest horizontal padding */
font-size: 1.15rem; /* same as your base icon size */
}