Improve eventlog table layout and colors

This commit is contained in:
Johannes Zellner
2025-09-19 10:52:38 +02:00
parent e21c1bbc59
commit c30b8942e7
2 changed files with 2 additions and 10 deletions

View File

@@ -82,10 +82,6 @@ onMounted(async () => {
background-color: var(--pankow-color-background-hover);
}
.eventlog-table tbody tr.active {
font-weight: bold;
}
.eventlog-table th,
.eventlog-table td {
padding: 10px 6px;
@@ -99,7 +95,7 @@ onMounted(async () => {
}
.eventlog-details {
background-color: var(--pankow-color-background-hover);
background-color: color-mix(in oklab, var(--pankow-color-background-hover), black 5%);
cursor: auto;
position: relative;
}

View File

@@ -228,10 +228,6 @@ onUnmounted(() => {
background-color: var(--pankow-color-background-hover);
}
.eventlog-table tbody tr.active {
font-weight: bold;
}
.eventlog-table th,
.eventlog-table td {
padding: 6px;
@@ -245,7 +241,7 @@ onUnmounted(() => {
}
.eventlog-details {
background-color: var(--pankow-color-background-hover);
background-color: color-mix(in oklab, var(--pankow-color-background-hover), black 5%);
cursor: auto;
position: relative;
}