Visual tweaks, re-order buttons
This commit is contained in:
parent
1aa0237260
commit
c439c2a6ba
2 changed files with 19 additions and 9 deletions
23
style.css
23
style.css
|
|
@ -29,7 +29,6 @@ header {
|
|||
padding: .75rem 1.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: .75rem;
|
||||
}
|
||||
|
||||
|
|
@ -39,24 +38,32 @@ header h1 { font-size: 1.4rem; white-space: nowrap; }
|
|||
display: flex;
|
||||
gap: .6rem;
|
||||
align-items: center;
|
||||
flex: 1;
|
||||
justify-content: flex-end;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#filter-search {
|
||||
flex: 1;
|
||||
background: var(--bg);
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text);
|
||||
border-radius: var(--radius);
|
||||
padding: .3rem .6rem;
|
||||
font-size: .85rem;
|
||||
width: 180px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#btn-unlock { background: transparent; border: 1px solid var(--border); color: var(--muted); }
|
||||
#btn-add-tune { background: var(--accent); }
|
||||
#btn-clear-filters { background: transparent; border: 1px solid var(--border); color: var(--muted); font-size: .8rem; }
|
||||
#status { font-size: .8rem; color: var(--muted); }
|
||||
|
||||
#app-footer {
|
||||
padding: .4rem 1.25rem;
|
||||
text-align: center;
|
||||
font-size: .8rem;
|
||||
color: var(--muted);
|
||||
border-top: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
/* ── Column header filters ────────────────────────────────── */
|
||||
th[data-filter] {
|
||||
|
|
@ -400,9 +407,11 @@ fieldset.active .fs-body { display: contents; }
|
|||
|
||||
/* ── Responsive ───────────────────────────────────────────── */
|
||||
@media (max-width: 600px) {
|
||||
/* Header: wrap onto second line if needed */
|
||||
/* Header: h1 + actions on line 1, search full-width on line 2 */
|
||||
header { flex-wrap: wrap; }
|
||||
#header-actions { flex-wrap: wrap; }
|
||||
header h1 { order: 1; flex: 1; }
|
||||
#header-actions { order: 2; flex-shrink: 0; }
|
||||
#filter-search { order: 3; flex-basis: 100%; }
|
||||
|
||||
/* Table: block layout so the card has a concrete width to truncate against */
|
||||
#tune-table,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue