Skip to content

Commit efe1eaf

Browse files
Center docker multi-row preview rows
1 parent 64b1dd1 commit efe1eaf

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

archive/folderview.plus-2026.03.22.28.txz.sha256

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
73b68b9ceaed1645b24821025082a32b3754812c1140b77cb079bf6b71f95b7b folderview.plus-2026.03.22.53.txz

folderview.plus.plg

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@
66
<!ENTITY launch "Settings/FolderViewPlus">
77
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
88
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/dev/folderview.plus.plg">
9-
<!ENTITY version "2026.03.22.52">
10-
<!ENTITY md5 "d8df6fbd1354b086a94ce1c281aa3288">
9+
<!ENTITY version "2026.03.22.53">
10+
<!ENTITY md5 "a446ad4cb58064b9814526470965ee5c">
1111
]>
1212

1313
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" icon="folder-icon.png" support="https://forums.unraid.net/topic/197631-plugin-folderview-plus/" min="7.0.0">
1414
<CHANGES>
1515

16+
###2026.03.22.53
17+
- UX: Center multi-row Docker preview content with balanced vertical padding and tighter row height.
18+
- Fix: Reduce the top-heavy row stack bias in multi-row previews so wrapped rows sit more like the normal preview box.
19+
20+
1621
###2026.03.22.52
1722
- Fix: Stack compact multi-row Docker preview cards like the normal preview, with status and quick actions on the second line under the name.
1823
- UX: Keep multi-row preview metadata grouped beneath the name instead of inline on the first row.

src/folderview.plus/usr/local/emhttp/plugins/folderview.plus/styles/docker.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,19 +327,20 @@ tr.folder.fv-parent-expanded div.folder-preview {
327327
min-height: 0;
328328
max-height: none;
329329
row-gap: 0;
330-
padding: 0;
330+
padding: 3px 0;
331331
flex-direction: column;
332332
flex-wrap: nowrap;
333333
align-items: flex-start;
334334
align-content: flex-start;
335+
justify-content: center;
335336
}
336337

337338
.folder-preview.fv-preview-multirow .folder-preview-row {
338339
width: 100%;
339340
box-sizing: border-box;
340341
align-items: center;
341-
min-height: calc(var(--fvplus-preview-row-height) - 0.45em);
342-
padding: 2px 0 2px 8px;
342+
min-height: calc(var(--fvplus-preview-row-height) - 0.85em);
343+
padding: 1px 0 1px 8px;
343344
}
344345

345346
.folder-preview.fv-preview-border-off {

0 commit comments

Comments
 (0)