fixed findings
All checks were successful
default-pipeline default-pipeline #137

This commit is contained in:
Balázs Vigh 2021-04-29 08:24:20 +02:00
parent 3d52c967b6
commit ffc4aaf110
3 changed files with 11 additions and 10 deletions

View File

@ -157,13 +157,14 @@
#navigation .navigationItem { #navigation .navigationItem {
margin-top: 10px; margin-top: 10px;
opacity: 70%; opacity: 70%;
cursor: pointer;
} }
#navigation .navigationItem:hover { #navigation .navigationItem:hover {
opacity: 100%; opacity: 100%;
} }
#navigation span { #navigation div {
position: absolute; position: absolute;
} }
@ -188,9 +189,9 @@
} }
#showGuessButtonContainer { #showGuessButtonContainer {
position: absolute; position: absolute;
left: 60px; left: 65px;
bottom: 30px; bottom: 30px;
right: 60px; right: 20px;
z-index: 2; z-index: 2;
} }
#guess { #guess {

View File

@ -334,6 +334,9 @@
document.getElementById('guess').style.visibility = null; document.getElementById('guess').style.visibility = null;
document.getElementById('guess').classList.remove('result'); document.getElementById('guess').classList.remove('result');
// needs to be set visible after the show guess map hid it in mobile view
document.getElementById("navigation").style.visibility = 'visible';
Game.initialize(); Game.initialize();
}, },
@ -379,9 +382,6 @@
document.getElementById('currentRound').innerHTML = String(Game.rounds.length) + '/' + String(Game.NUMBER_OF_ROUNDS); document.getElementById('currentRound').innerHTML = String(Game.rounds.length) + '/' + String(Game.NUMBER_OF_ROUNDS);
Game.loadPano(Game.panoId, Game.pov); Game.loadPano(Game.panoId, Game.pov);
// needs to be set visible after the show guess map hid it in mobile view
document.getElementById("navigation").style.visibility = 'visible';
}, },
handleErrorResponse: function (error) { handleErrorResponse: function (error) {

View File

@ -61,12 +61,12 @@
</div> </div>
<div id="navigation"> <div id="navigation">
<div id="returnToStart" class="navigationItem"> <div id="returnToStart" class="navigationItem">
<span> <div>
<img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" /> <img src="<?= $_ENV['STATIC_ROOT'] ?>/img/circle_background.svg?rev=<?= REVISION ?>" alt="Circle Background" class="circleBackground" />
</span> </div>
<span> <div>
<img src="<?= $_ENV['STATIC_ROOT'] ?>/img/house-fill.svg?rev=<?= REVISION ?>" alt="Return to Start icon" class="navigationIcon" /> <img src="<?= $_ENV['STATIC_ROOT'] ?>/img/house-fill.svg?rev=<?= REVISION ?>" alt="Return to Start icon" class="navigationIcon" />
</span> </div>
</div> </div>
</div> </div>
@endsection @endsection