Widen auto-download name fields

This commit is contained in:
Dymas
2026-05-25 10:34:23 +02:00
parent d34fbae7e7
commit 1b887269da
6 changed files with 20 additions and 5 deletions
+11 -3
View File
@@ -603,9 +603,15 @@ WATCHLIST_HTML = r"""<!doctype html>
}
.auto-download-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 8px;
}
.auto-download-grid label {
grid-column: span 2;
}
.auto-download-grid .wide-half {
grid-column: span 3;
}
.auto-download-modal label {
font-size: 10px;
}
@@ -685,6 +691,8 @@ WATCHLIST_HTML = r"""<!doctype html>
@media (max-width: 560px) {
.watchlist-grid { grid-template-columns: 1fr; }
.auto-download-grid { grid-template-columns: 1fr; }
.auto-download-grid label,
.auto-download-grid .wide-half { grid-column: span 1; }
}
</style>
</head>
@@ -816,10 +824,10 @@ WATCHLIST_HTML = r"""<!doctype html>
<label>Series
<input class="auto-download-series" id="autoDownloadSeries" type="number" min="1" step="1" value="1">
</label>
<label>Name source
<label class="wide-half">Name source
<select class="auto-download-name-select" id="autoDownloadNameSelect"></select>
</label>
<label>Name
<label class="wide-half">Name
<input class="auto-download-name" id="autoDownloadName" type="text">
</label>
</div>