save movies release date in BDD, remove unused badge, add help to export movie from letterboxd

This commit is contained in:
thibaud-leclere
2026-03-31 22:18:46 +02:00
parent c5d359bb0c
commit 116812b3f8
8 changed files with 158 additions and 27 deletions

View File

@@ -296,22 +296,6 @@ body {
/* ── Badge ── */
.badge {
position: absolute;
top: 2px;
right: 2px;
background: var(--orange);
color: white;
font-size: 10px;
font-weight: 700;
min-width: 16px;
height: 16px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
}
/* ── Dropdown ── */
@@ -367,6 +351,70 @@ body {
margin: 0;
}
/* ── Dropdown item row ── */
.dropdown-item-row {
display: flex;
align-items: center;
}
.dropdown-item-row .dropdown-item {
flex: 1;
}
.info-btn {
width: 20px;
height: 20px;
border-radius: 50%;
border: 1.5px solid var(--text-faint);
background: none;
color: var(--text-faint);
font-size: 12px;
font-weight: 700;
font-style: italic;
font-family: 'Georgia', serif;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-right: 10px;
transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.info-btn:hover {
border-color: var(--orange);
color: var(--orange);
background: var(--surface-tint);
}
/* ── Help steps ── */
.help-steps {
margin: 0;
padding-left: 20px;
color: var(--text-muted);
font-size: 14px;
line-height: 1.8;
}
.help-steps code {
background: var(--surface-tint);
padding: 2px 6px;
border-radius: 4px;
font-size: 13px;
}
.help-steps a {
color: var(--orange);
font-weight: 600;
text-decoration: none;
}
.help-steps a:hover {
text-decoration: underline;
}
/* ── Import status ── */
.import-status-item {