Hide inline status messages unless error; keep release status visible

This commit is contained in:
Aaron
2025-12-13 09:36:59 -05:00
parent d436d3013d
commit 4e13b41bed

View File

@@ -425,6 +425,15 @@ body {
#releaseProgress {
display: none;
}
.status-msg {
display: none;
}
.status-msg.error {
display: block;
}
#releaseStatusMsg {
display: block;
}
:root[data-theme="light"] .log-box {
background: rgba(12, 18, 32, 0.04);
}