* Sun Jun 15 2025 Brian Read <brianr@koozali.org> 11.0.0-92.sme

- rework datetime panel [SME: 13020]
- Fix errors in error messages for local networks panel [SME: 13044]
- Add in Config Db open in Proxy.pm needed after  UTF8 change [SME: 13046]
This commit is contained in:
2025-06-18 11:17:51 +01:00
parent 0733537064
commit d1f2013375
11 changed files with 850 additions and 490 deletions

View File

@@ -0,0 +1,29 @@
.datetime-config-row {
display: flex;
align-items: stretch;
margin-bottom: 1em;
}
.datetime-label-col {
background: #e8f3e2; /* light green */
padding: 1em 0em 0em 0em;
min-width: 192px;
display: flex;
align-items: flex-start;
justify-content: flex-end;
font-weight: bold;
border-radius: 4px 0 0 4px;
}
.datetime-label {
display: block;
}
.datetime-fields-col {
background: #fff;
padding: 1em;
flex: 1;
border: 1px solid #ccc;
border-left: none;
border-radius: 0 4px 4px 0;
}

View File

@@ -0,0 +1,18 @@
document.addEventListener('DOMContentLoaded', function() {
var select = document.getElementById('time_mode_select');
var ntpSection = document.getElementById('ntp_section');
var manualSection = document.getElementById('manual_section');
function toggleSections() {
if (select.value === 'dat_manually_set') {
ntpSection.style.display = 'none';
manualSection.style.display = 'block';
} else {
ntpSection.style.display = 'block';
manualSection.style.display = 'none';
}
}
select.addEventListener('change', toggleSections);
toggleSections(); // Set initial state
});