Skip to content

Commit 4cc13e2

Browse files
Use explicit left-cell centering for Docker folder rows
1 parent 33eb95c commit 4cc13e2

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

207 KB
Binary file not shown.

folderview.plus.plg

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

1313
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" icon="folder-open-o" support="https://github.com/alexphillips-dev/FolderView-Plus/issues" min="7.0.0">
1414
<CHANGES>
1515

16+
###2026.03.07.6
17+
- Rework Docker folder left-cell vertical centering using explicit in-cell absolute centering, avoiding inherited top alignment from Unraid table styles.
18+
1619
###2026.03.07.5
1720
- Tighten Docker folder row centering fix:
1821
- force vertical middle alignment on all folder row cells,

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,21 @@
3232
vertical-align: middle !important;
3333
}
3434

35+
/* Unraid table styles can force top visual placement.
36+
Center the left folder block explicitly within the row height. */
3537
#docker_list > tr.sortable.folder > td.ct-name.folder-name {
38+
position: relative;
3639
padding-top: 0 !important;
3740
padding-bottom: 0 !important;
3841
}
3942

4043
#docker_list > tr.sortable.folder > td.ct-name.folder-name > .folder-name-sub {
41-
min-height: 3.5em;
44+
position: absolute;
45+
top: 50%;
46+
left: 8px;
47+
right: 8px;
48+
transform: translateY(-50%);
49+
min-height: 0;
4250
}
4351

4452
.folder-outer {

0 commit comments

Comments
 (0)