more match-info, parsed-icon on player-page, disabled score-nav-links for not-parsed demos

This commit is contained in:
cnachtigall1991
2021-10-12 02:43:20 +02:00
parent 76aba61361
commit a53c4a3c14
10 changed files with 487 additions and 78 deletions

View File

@@ -3,6 +3,7 @@
<img :src="props.avatar" alt="Player avatar" class="player__avatar" :class="'team-color-' + props.color">
</td>
<td class="player__name" @click="GoToPlayer(props.steamid64)">
<i class="far fa-dot-circle text-success tracked" v-if="props.tracked" title="Tracked user"></i>
{{ props.name }}
<i class="fas fa-link"></i>
</td>
@@ -141,6 +142,11 @@ export default {
type: String,
required: true,
default: ''
},
tracked: {
type: Boolean,
required: true,
default: false
}
},
setup(props) {
@@ -187,6 +193,10 @@ export default {
text-overflow: ellipsis;
cursor: pointer;
.tracked {
font-size: .8rem;
}
.fas {
font-size: .5rem;
vertical-align: top;