commit
0770a61534
2 changed files with 8 additions and 4 deletions
app
|
@ -60,10 +60,8 @@
|
||||||
a[disabled] .level
|
a[disabled] .level
|
||||||
opacity: 0.7
|
opacity: 0.7
|
||||||
|
|
||||||
a.complete .level-difficulty:after
|
a .level-difficulty .level-status-complete
|
||||||
content: " - Complete!"
|
|
||||||
color: $yellow
|
color: $yellow
|
||||||
|
|
||||||
a.started .level-difficulty:after
|
a .level-difficulty .level-status-started
|
||||||
content: " - Started"
|
|
||||||
color: desaturate($yellow, 50%)
|
color: desaturate($yellow, 50%)
|
||||||
|
|
|
@ -23,5 +23,11 @@ block content
|
||||||
if playCount
|
if playCount
|
||||||
span.spl.spr - #{playCount.sessions}
|
span.spl.spr - #{playCount.sessions}
|
||||||
span(data-i18n="play.players") players
|
span(data-i18n="play.players") players
|
||||||
|
if (view.levelStatusMap[level.id]=='complete')
|
||||||
|
span.spl.spr -
|
||||||
|
span(class="level-status-#{view.levelStatusMap[level.id]}", data-i18n="clans.complete_2")
|
||||||
|
else if (view.levelStatusMap[level.id]=='started')
|
||||||
|
span.spl.spr -
|
||||||
|
span(class="level-status-#{view.levelStatusMap[level.id]}", data-i18n="clans.started_2")
|
||||||
.play-text-container
|
.play-text-container
|
||||||
.overlay-text.play-text(data-i18n="common.play") Play
|
.overlay-text.play-text(data-i18n="common.play") Play
|
||||||
|
|
Reference in a new issue