App outlink in filemanger should not be highlighted

This commit is contained in:
Johannes Zellner
2025-03-28 11:14:49 +01:00
parent deea1249c4
commit 78e2c223f2
+5 -1
View File
@@ -555,7 +555,7 @@ export default {
</div>
<div class="main-view-col" style="max-width: 300px;">
<div class="side-bar-title">
<a v-show="appLink" :href="appLink" target="_blank">{{ title }}</a>
<a v-show="appLink" :href="appLink" target="_blank" class="no-highlight">{{ title }}</a>
<span v-show="!appLink">{{ title }}</span>
</div>
<PreviewPanel :item="activeItem || activeDirectoryItem" :fallback-icon="fallbackIcon"/>
@@ -601,6 +601,10 @@ export default {
background-color: var(--pankow-color-background);
}
.no-highlight {
color: var(--pankow-color-text);
}
</style>
<style>