mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Changed the campaign switching icons arrows nested in the campaign maps.
This commit is contained in:
parent
ba6565395e
commit
07cf741015
4 changed files with 27 additions and 9 deletions
app
styles/play
templates/play
views/play
|
@ -194,6 +194,26 @@ $gameControlMargin: 30px
|
|||
display: block
|
||||
margin: 10px auto 0 auto
|
||||
width: 200px
|
||||
|
||||
.campaign-switch
|
||||
color: purple
|
||||
position: absolute
|
||||
z-index: 1
|
||||
font-size: 2vw
|
||||
text-shadow: 0 0 0.3vw white, 0 0 0.3vw white
|
||||
|
||||
&:hover
|
||||
text-decoration: none
|
||||
|
||||
&#forest-link
|
||||
left: 94.5%
|
||||
top: 7%
|
||||
transform: rotate(-35deg)
|
||||
|
||||
&#dungeon-link
|
||||
left: 26.6%
|
||||
top: 43%
|
||||
transform: rotate(180deg)
|
||||
|
||||
.game-controls
|
||||
position: absolute
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
if props.length
|
||||
#skills
|
||||
h3.big-font(data-i18n="play.skills-granted")
|
||||
h3.big-font(data-i18n="play.skills_granted")
|
||||
for prop in props
|
||||
p
|
||||
strong.big-font= prop.name
|
||||
|
|
|
@ -35,6 +35,10 @@
|
|||
.campaign-label(style="color: #{campaign.color}")= campaign.name
|
||||
if isIPadApp && !level.disabled && !level.locked
|
||||
button.btn.btn-success.btn-lg.start-level(data-i18n="common.play") Play
|
||||
if mapType === 'dungeon' && forestIsAvailable
|
||||
a#forest-link.glyphicon.glyphicon-share-alt.campaign-switch(href="/play/forest", data-i18n="[title]play.campaign_forest")
|
||||
if mapType === 'forest'
|
||||
a#dungeon-link.glyphicon.glyphicon-share-alt.campaign-switch(href="/play/dungeon", data-i18n="[title]play.campaign_dungeon")
|
||||
|
||||
.game-controls.header-font
|
||||
button.btn.items(data-toggle='coco-modal', data-target='play/modal/PlayItemsModal', data-i18n="[title]play.items")
|
||||
|
@ -53,13 +57,6 @@
|
|||
// a.btn.account(href="/user/#{me.getSlugOrID()}", data-i18n="[title]play.account")
|
||||
// a.btn.settings(href='/account', data-i18n="[title]play.settings")
|
||||
|
||||
if mapType === 'forest'
|
||||
a.btn.campaign-switch(href="/play/dungeon", data-i18n="[title]play.campaign_dungeon")
|
||||
img(src="/images/pages/play/map_dungeon_icon.jpg").img-thumbnail
|
||||
if mapType === 'dungeon'
|
||||
a.btn.campaign-switch(href="/play/forest", data-i18n="[title]play.campaign_forest")
|
||||
img(src="/images/pages/play/map_forest_icon.jpg").img-thumbnail
|
||||
|
||||
.old-levels
|
||||
a(href="/play-old", data-i18n="play.older_campaigns").header-font Older Campaigns
|
||||
|
||||
|
|
|
@ -100,6 +100,7 @@ module.exports = class WorldMapView extends RootView
|
|||
context.isIPadApp = application.isIPadApp
|
||||
context.mapType = _.string.slugify @terrain
|
||||
context.nextLevel = @nextLevel
|
||||
context.forestIsAvailable = '541b67f71ccc8eaae19f3c62' in (me.get('earned')?.levels or [])
|
||||
context
|
||||
|
||||
afterRender: ->
|
||||
|
@ -596,7 +597,7 @@ forest = [
|
|||
description: 'Protect the peasants from the pursuing ogres.'
|
||||
nextLevels:
|
||||
continue: 'winding-trail'
|
||||
x: 29.63
|
||||
x: 32.63
|
||||
y: 53.69
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue