add quest participant list to collection quests (#10568)

This commit is contained in:
Alys 2018-08-01 18:43:33 +10:00 committed by Matteo Pagliazzi
parent 0899dddb42
commit 714706f925

View file

@ -24,6 +24,9 @@ sidebar-section(:title="$t('questDetailsTitle')")
h3(v-once) {{ questData.text() }}
.quest-box
.collect-info(v-if='questData.collect')
.row
.col-12
a.float-right(@click="openParticipantList()") {{ $t('participantsTitle') }}
.row(v-for='(value, key) in questData.collect')
.col-2
div(:class="'quest_' + questData.key + '_' + key")
@ -74,14 +77,6 @@ sidebar-section(:title="$t('questDetailsTitle')")
margin: 0 auto;
}
.boss-info {
a {
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
color: $gray-10;
}
}
.boss-health-bar {
width: 80%;
background-color: red;
@ -142,6 +137,12 @@ sidebar-section(:title="$t('questDetailsTitle')")
padding: .5em;
margin-bottom: 1em;
a {
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
color: $gray-10;
}
svg: {
width: 100%;
height: 100%;