Added a link to changelog for version, added some CSS to change color of instance/keyboard shortcuts
This commit is contained in:
parent
5648ee29bd
commit
f6629c0dc7
|
@ -10,9 +10,9 @@
|
||||||
<router-link class="item" to="/about">
|
<router-link class="item" to="/about">
|
||||||
<translate translate-context="Footer/About/List item.Link">About page</translate>
|
<translate translate-context="Footer/About/List item.Link">About page</translate>
|
||||||
</router-link>
|
</router-link>
|
||||||
<div class="item" v-if="version">
|
<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>
|
<translate translate-context="Footer/*/List item" :translate-params="{version: version}" >Version %{version}</translate>
|
||||||
</div>
|
</a>
|
||||||
<div role="button" class="item" @click="$emit('show:set-instance-modal')" >
|
<div role="button" class="item" @click="$emit('show:set-instance-modal')" >
|
||||||
<translate translate-context="Footer/*/List item.Link">Use another instance</translate>
|
<translate translate-context="Footer/*/List item.Link">Use another instance</translate>
|
||||||
</div>
|
</div>
|
||||||
|
@ -83,4 +83,9 @@ export default {
|
||||||
footer p {
|
footer p {
|
||||||
color: grey;
|
color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer#footer div.item:hover {
|
||||||
|
color: rgba(0, 0, 0, 0.87);
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue