Fixup fonts

This commit is contained in:
Johannes Zellner
2026-02-05 15:08:30 +01:00
parent a7de7fb286
commit e23856bf10
12 changed files with 31 additions and 36 deletions
+1 -1
View File
@@ -485,7 +485,7 @@ onBeforeUnmount(() => {
.configure-menu-item[active] > a,
.configure-menu-item[active] > span {
color: var(--pankow-color-primary-active);
font-weight: bold;
font-weight: var(--pankow-font-weight-bold);
}
.configure-menu-item:hover > a,
+8 -1
View File
@@ -193,7 +193,7 @@ onUnmounted(() => {
<div class="eventlog-summary">
<div style="width: 160px; flex-shrink: 0;" class="pankow-no-mobile">{{ prettyLongDate(eventlog.raw.creationTime) }}</div>
<div style="width: 80px; flex-shrink: 0;" class="pankow-no-desktop">{{ prettyShortDate(eventlog.raw.creationTime) }}</div>
<div style="width: 160px; flex-shrink: 0; font-weight: bold; overflow: hidden; text-overflow: ellipsis;" class="pankow-no-mobile">{{ eventlog.source }}</div>
<div style="width: 160px;" class="eventlog-item-source pankow-no-mobile">{{ eventlog.source }}</div>
<div style="flex-grow: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;" v-html="eventlog.details"></div>
<!-- <div style="width: 160px; flex-shrink: 0; cursor: copy; overflow: hidden; text-overflow: ellipsis;" v-if="eventlog.raw.source.ip" @click="onCopySource(eventlog)">{{ eventlog.raw.source.ip }}</div> -->
<div style="width: 40px; flex-shrink: 0;"><Button v-if="eventlog.raw.data.taskId" @click.stop plain small tool :href="`/logs.html?taskId=${eventlog.raw.data.taskId}`" target="_blank">Logs</Button></div>
@@ -233,4 +233,11 @@ onUnmounted(() => {
padding: 5px 0;
}
.eventlog-item-source {
flex-shrink: 0;
font-weight: var(--pankow-font-weight-bold);
overflow: hidden;
text-overflow: ellipsis;
}
</style>
+1 -1
View File
@@ -155,7 +155,7 @@ onMounted(async () => {
.notification-item {
cursor: pointer;
border-radius: 10px;
font-weight: bold;
font-weight: var(--pankow-font-weight-bold);
}
.notification-item.new {
+1 -1
View File
@@ -247,7 +247,7 @@ onMounted(async () => {
<SettingsItem>
<div style="display: flex; align-items: center">
<div style="font-weight: bold">{{ $t('profile.language') }}</div>
<label>{{ $t('profile.language') }}</label>
</div>
<div style="display: flex; align-items: center">
<SingleSelect v-model="language" :options="languages" option-label="display" option-key="id" @select="onSelectLanguage"/>