Compare commits

...

2 Commits

Author SHA1 Message Date
Sucukdeluxe
0072f924c9 Release v1.7.204 2026-06-15 03:09:47 +02:00
Sucukdeluxe
cf416374e1 Account-Liste: Spalten von Kopfzeile und Zeilen fluchten wieder (Grid-Ausrichtung)
Kopfzeile und jede Datenzeile waren eigene CSS-Grids mit inhaltsabhaengigen
Spaltenbreiten (minmax(px, fr) + auto) — dadurch ergaben sich pro Zeile leicht
unterschiedliche Spaltenbreiten und die Werte (z.B. "Unbeschraenkt") standen nicht
unter ihrer Spaltenueberschrift, sondern nach links verschoben.

Fix: feste, inhaltsunabhaengige Spaltenverhaeltnisse minmax(0, Nfr) (plus fixe
Checkbox- und Aktions-Spalte). Dadurch loesen alle Grids identische Spaltenbreiten
auf und Kopf + Zeilen + Gruppen-Koepfe fluchten exakt. Zellen min-width:0 +
Ellipsis; Aktions-Spalte overflow sichtbar.

Reine CSS-Aenderung. build ok.
2026-06-15 03:08:55 +02:00
2 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "real-debrid-downloader", "name": "real-debrid-downloader",
"version": "1.7.203", "version": "1.7.204",
"description": "Desktop downloader", "description": "Desktop downloader",
"main": "build/main/main/main.js", "main": "build/main/main/main.js",
"author": "Sucukdeluxe", "author": "Sucukdeluxe",

View File

@ -3272,11 +3272,19 @@ td {
.acct2-head, .acct2-head,
.acct2-row { .acct2-row {
display: grid; display: grid;
grid-template-columns: 34px minmax(110px, 1.1fr) minmax(150px, 1.5fr) minmax(120px, 1.4fr) minmax(140px, 1.6fr) minmax(92px, 0.9fr) auto; grid-template-columns: 32px minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 1.3fr) minmax(0, 1.7fr) minmax(0, 1fr) 196px;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
padding: 7px 12px; padding: 7px 12px;
} }
.acct2-head > span,
.acct2-row > span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.acct2-head > .acct2-c-actions,
.acct2-row > .acct2-c-actions { overflow: visible; }
.acct2-head { .acct2-head {
background: color-mix(in srgb, var(--card) 60%, transparent); background: color-mix(in srgb, var(--card) 60%, transparent);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);