Enhance log display behavior and menu state management
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-11 14:37:02 +11:00
parent 9bd2b32003
commit ffd43d5217
9 changed files with 166 additions and 52 deletions

View File

@@ -467,6 +467,10 @@ nav p {
padding: 8px;
border-radius: 8px;
background: rgba(13, 31, 49, 0.72);
white-space: pre-wrap;
overflow-wrap: anywhere;
word-break: break-word;
line-height: 1.45;
}
#logScreen p {
@@ -689,6 +693,45 @@ nav p {
max-height: 96px;
}
body.menu-log-focus #clientInfo,
body.menu-log-focus .dashboard-cards,
body.menu-log-focus #myStreamsBox {
display: none;
}
body.menu-log-focus #content {
padding: 8px;
padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
body.menu-log-focus #content h3 {
margin-bottom: 4px;
}
body.menu-log-focus #content-interaction {
top: 8px;
margin-bottom: 8px;
padding: 6px;
}
body.menu-log-focus #content-interaction .search {
display: none;
}
body.menu-log-focus #content-interaction input[type=button] {
min-height: 38px;
}
body.menu-log-focus #content_log {
padding: 5px;
}
body.menu-log-focus #content_log pre {
margin-bottom: 4px;
padding: 7px;
font-size: 11px;
}
.phone {
display: none;
}