Added a link to changelog for version, added some CSS to change color of instance/keyboard shortcuts

This commit is contained in:
Ciarán Ainsworth 2019-03-13 09:54:37 +01:00 committed by Eliot Berriot
parent 5648ee29bd
commit f6629c0dc7
1 changed files with 8 additions and 3 deletions

View File

@ -10,9 +10,9 @@
<router-link class="item" to="/about">
<translate translate-context="Footer/About/List item.Link">About page</translate>
</router-link>
<div class="item" v-if="version">
<translate translate-context="Footer/*/List item" :translate-params="{version: version}" >Version %{version}</translate>
</div>
<a v-if="version" class="item" href="https://docs.funkwhale.audio/changelog.html" target="_blank">
<translate translate-context="Footer/*/List item" :translate-params="{version: version}" >Version %{version}</translate>
</a>
<div role="button" class="item" @click="$emit('show:set-instance-modal')" >
<translate translate-context="Footer/*/List item.Link">Use another instance</translate>
</div>
@ -83,4 +83,9 @@ export default {
footer p {
color: grey;
}
footer#footer div.item:hover {
color: rgba(0, 0, 0, 0.87);
}
</style>