mirror of https://github.com/bra1n/townsquare.git
added night order tooltips (closes #104)
This commit is contained in:
parent
2eb228ec81
commit
c3c753f5b3
|
@ -45,6 +45,9 @@
|
||||||
require('../../assets/icons/' + role.id + '.png')})`
|
require('../../assets/icons/' + role.id + '.png')})`
|
||||||
}"
|
}"
|
||||||
></span>
|
></span>
|
||||||
|
<span class="reminder" v-if="role.firstNightReminder">
|
||||||
|
{{ role.firstNightReminder }}
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="other">
|
<ul class="other">
|
||||||
|
@ -76,6 +79,9 @@
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
</span>
|
</span>
|
||||||
|
<span class="reminder" v-if="role.otherNightReminder">
|
||||||
|
{{ role.otherNightReminder }}
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -267,6 +273,26 @@ ul {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.reminder {
|
||||||
|
position: fixed;
|
||||||
|
padding: 5px 10px;
|
||||||
|
left: 50%;
|
||||||
|
bottom: 10%;
|
||||||
|
width: 500px;
|
||||||
|
z-index: 25;
|
||||||
|
background: rgba(0, 0, 0, 0.75);
|
||||||
|
border-radius: 10px;
|
||||||
|
border: 3px solid black;
|
||||||
|
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
|
||||||
|
text-align: left;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 200ms ease-in-out;
|
||||||
|
margin-left: -250px;
|
||||||
|
}
|
||||||
|
&:hover .reminder {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.legend {
|
&.legend {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
Loading…
Reference in New Issue