Skip to content

Commit 47fd36c

Browse files
Fix folder editor setting alignment to left column
1 parent c70b613 commit 47fd36c

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

207 KB
Binary file not shown.

folderview.plus.plg

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@
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.06.9">
10-
<!ENTITY md5 "9ce8fe4b57d37666e27c4724d33cf056">
9+
<!ENTITY version "2026.03.07.1">
10+
<!ENTITY md5 "aa4b59a70cfe7fcc7f232c2cc439b4f6">
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.1
17+
- Fix folder editor row alignment so settings blocks are left-anchored with section headers instead of centered.
18+
- Keep nested preview/advanced controls aligned to the same left column for consistent spacing.
19+
1620
###2026.03.06.9
1721
- Phase 1 folder editor overhaul:
1822
- add section navigation (General, Members, Preview, Actions, Automation, Advanced),

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,22 @@
7171
background: rgba(255, 255, 255, 0.02);
7272
}
7373

74+
/* Align setting rows with section headers instead of centered card width */
75+
.canvas form.folder-editor-form > .basic:not(.order-section),
76+
.canvas form.folder-editor-form > ul {
77+
width: min(1100px, calc(100% - 2em));
78+
margin-left: 1em !important;
79+
margin-right: auto !important;
80+
box-sizing: border-box;
81+
}
82+
83+
.canvas form.folder-editor-form > ul > li > .basic,
84+
.canvas form.folder-editor-form > ul > li > ul > li > .basic {
85+
width: 100%;
86+
margin-left: 0 !important;
87+
margin-right: 0 !important;
88+
}
89+
7490
.fv-live-grid {
7591
display: grid;
7692
gap: 0.4em 1em;

0 commit comments

Comments
 (0)