More tooltips
All checks were successful
the build was successful

This commit is contained in:
kolaente 2018-12-23 19:37:54 +01:00
parent 996e9d7c63
commit 22d596b283
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 8 additions and 1 deletions

View File

@ -56,7 +56,7 @@
<p class="menu-label" v-if="loading">Loading...</p>
<template v-for="n in namespaces">
<div :key="n.id">
<router-link :to="{name: 'editNamespace', params: {id: n.id} }" class="nsettings" v-if="n.id > 0">
<router-link v-tooltip.right="'Settings'" :to="{name: 'editNamespace', params: {id: n.id} }" class="nsettings" v-if="n.id > 0">
<span class="icon">
<icon icon="cog"/>
</span>

View File

@ -20,6 +20,7 @@
</p>
</div>
</form>
<p class="small" v-tooltip.bottom="'A namespace is a collection of lists you can share and use to organize your lists with.<br/>In fact, every list belongs to a namepace.'">What's a namespace?</p>
</div>
</template>

View File

@ -2,6 +2,7 @@
display: block !important;
z-index: 10000;
font-size: 0.8em;
text-align: center;
.tooltip-inner {
background: $dark;

View File

@ -41,4 +41,9 @@
right: 6vh;
color: $vikunja-light-text;
}
.small{
margin-top: 1em;
font-size: 0.5em;
}
}