Compare commits

...

2 Commits

Author SHA1 Message Date
librelad
b448bcd431 Merge claude/1 2026-05-22 13:32:16 +01:00
librelad
1fc7ff95a2 style(config): divider below features Danger Zone, drop config-actions top padding
Add a config-divider after the header-only Danger Zone banner on the features page so a line separates it from the feature fields. Drop the now-redundant 24px top padding on .config-actions since the divider above the Save/Reset buttons already provides that spacing.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Signed-off-by: librelad <librelad@digitalangels.vip>
2026-05-22 13:32:16 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -339,7 +339,7 @@
.config-actions {
display: flex;
gap: 12px;
padding-top: 24px;
padding-top: 0;
margin-top: 0px;
}

View File

@ -102,6 +102,9 @@ if (typeof window.ConfigManager === 'undefined') {
// the heading.
if (category === 'features') {
formHTML += '<div class="danger-zone-section danger-zone-section--header-only"><div class="danger-zone-header"><h3>⚠️ Danger Zone</h3><p>These options are for advanced users and may affect system stability</p></div></div>';
// Divider below the features Danger Zone banner, separating it from
// the feature fields — same rule used elsewhere in the config form.
formHTML += '<div class="config-divider"></div>';
}
//console.log('ConfigManager: About to process configData entries:', Object.keys(configData));