mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
add quest participant list to collection quests (#10568)
This commit is contained in:
parent
0899dddb42
commit
714706f925
1 changed files with 9 additions and 8 deletions
|
|
@ -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%;
|
||||
|
|
|
|||
Loading…
Reference in a new issue