mirror of https://github.com/bra1n/townsquare.git
reworked CSS for pronoun tooltip and a little bit of player name to fix text overflow. Also moved the text content in to span tags for styling.
This commit is contained in:
parent
2590f00ea9
commit
f6ca08d6d5
|
@ -97,15 +97,14 @@
|
||||||
@click="updatePlayer('isVoteless', true)"
|
@click="updatePlayer('isVoteless', true)"
|
||||||
title="Ghost vote"
|
title="Ghost vote"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="name"
|
class="name"
|
||||||
@click="isMenuOpen = !isMenuOpen"
|
@click="isMenuOpen = !isMenuOpen"
|
||||||
:class="{ active: isMenuOpen }"
|
:class="{ active: isMenuOpen }"
|
||||||
>
|
>
|
||||||
{{ player.name }}
|
<span>{{ player.name }}</span>
|
||||||
<div class="pronouns" v-if="player.pronouns && player.pronouns !== ''">
|
<div class="pronouns" v-if="player.pronouns && player.pronouns !== ''">
|
||||||
{{ player.pronouns }}
|
<span>{{ player.pronouns }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -653,7 +652,7 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
|
|
||||||
/***** Player name *****/
|
/***** Player name *****/
|
||||||
.player > .name {
|
.player > .name {
|
||||||
text-align: center;
|
display: inline-flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
line-height: 120%;
|
line-height: 120%;
|
||||||
|
@ -665,31 +664,36 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
box-shadow: 0 0 5px black;
|
box-shadow: 0 0 5px black;
|
||||||
text-overflow: ellipsis;
|
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
#townsquare:not(.spectator) &:hover,
|
#townsquare:not(.spectator) &:hover,
|
||||||
&.active {
|
&.active {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover .pronouns {
|
||||||
|
opacity: 1;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.pronouns {
|
.pronouns {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
right: 120%;
|
||||||
max-width: 250px;
|
max-width: 250px;
|
||||||
padding: 5px 10px;
|
z-index: 25;
|
||||||
left: 110%;
|
|
||||||
font-size: 80%;
|
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border: 3px solid black;
|
border: 3px solid black;
|
||||||
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
|
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
|
||||||
text-align: left;
|
|
||||||
justify-items: center;
|
|
||||||
align-content: center;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
overflow: hidden;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 200ms ease-in-out;
|
transition: opacity 200ms ease-in-out;
|
||||||
|
|
||||||
|
@ -698,21 +702,12 @@ li.move:not(.from) .player .overlay svg.move {
|
||||||
border: 10px solid transparent;
|
border: 10px solid transparent;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
border-right-color: black;
|
border-left-color: black;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin-right: 2px;
|
margin-left: 2px;
|
||||||
right: 100%;
|
left: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover .pronouns {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#townsquare:not(.spectator) &:hover .pronouns,
|
|
||||||
&.active .pronouns {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.player.dead > .name {
|
.player.dead > .name {
|
||||||
|
|
|
@ -292,15 +292,15 @@ export default {
|
||||||
left: 100%;
|
left: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//show pronouns tooltip on the left
|
|
||||||
.pronouns {
|
.pronouns {
|
||||||
right: 110%;
|
left: 120%;
|
||||||
left: auto;
|
right: auto;
|
||||||
&:before {
|
&:before {
|
||||||
border-right-color: transparent;
|
border-left-color: transparent;
|
||||||
border-left-color: black;
|
border-right-color: black;
|
||||||
right: auto;
|
left: auto;
|
||||||
left: 100%;
|
right: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} @else {
|
} @else {
|
||||||
|
|
Loading…
Reference in New Issue