updated logging

This commit is contained in:
2026-04-02 13:21:33 -05:00
parent 150666d7c3
commit eb11231e34
2 changed files with 31 additions and 8 deletions

View File

@@ -100,9 +100,10 @@ button:disabled {
opacity: 0.88;
}
/* Update button: blue by default, green when updates available */
.btn-update {
background-color: var(--green);
color: #fff;
background-color: var(--accent-color);
color: #1e1e2e;
position: relative;
display: flex;
align-items: center;
@@ -110,6 +111,15 @@ button:disabled {
}
.btn-update:hover:not(:disabled) {
opacity: 0.88;
}
.btn-update.has-updates {
background-color: var(--green);
color: #fff;
}
.btn-update.has-updates:hover:not(:disabled) {
background-color: #27ae6e;
}
@@ -451,6 +461,7 @@ button:disabled {
background-color: #12121c;
white-space: pre-wrap;
word-break: break-all;
min-height: 200px;
}
.modal-footer {
@@ -462,13 +473,14 @@ button:disabled {
border-top: 1px solid var(--border-color);
}
/* Reboot button: green */
.btn-reboot {
background-color: var(--red);
background-color: var(--green);
color: #fff;
}
.btn-reboot:hover:not(:disabled) {
background-color: #c0181f;
background-color: #27ae6e;
}
.btn-save {
@@ -527,4 +539,4 @@ button:disabled {
width: 160px;
min-height: 200px;
}
}
}