v2.5.0: improve admin domain language logs

This commit is contained in:
Виталий Литвинов
2026-04-24 22:59:21 +03:00
parent 9c74a0d00f
commit 3b075a7ed7
7 changed files with 235 additions and 20 deletions

View File

@@ -209,6 +209,12 @@ h2 {
flex-wrap: wrap;
}
.language-select {
width: 78px;
min-width: 78px;
font-weight: 800;
}
.icon-btn {
width: 42px;
padding: 0;
@@ -321,6 +327,33 @@ h2 {
line-height: 1.05;
}
.metric-status {
display: inline-flex;
align-items: center;
width: fit-content;
margin-top: 7px;
border-radius: 8px;
padding: 4px 8px;
background: var(--panel-strong);
font-size: 12px;
font-weight: 800;
}
.metric-status.ok {
background: color-mix(in srgb, var(--green) 16%, transparent);
color: var(--green);
}
.metric-status.warn {
background: color-mix(in srgb, var(--amber) 18%, transparent);
color: var(--amber);
}
.metric-status.error {
background: color-mix(in srgb, var(--red) 16%, transparent);
color: var(--red);
}
.grid-two {
display: grid;
grid-template-columns: minmax(0, 1.5fr) minmax(320px, .9fr);
@@ -566,6 +599,14 @@ td small {
overflow-wrap: anywhere;
}
.logs-meta {
min-height: 24px;
margin: -2px 0 8px;
color: var(--muted);
font-size: 12px;
font-weight: 700;
}
.logs {
min-height: 460px;
max-height: calc(100vh - 260px);