Slight styling issues on language menu option

This commit is contained in:
Michael
2014-05-19 13:27:21 -04:00
parent 81d8129f0f
commit b7d539abbb
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -76,6 +76,7 @@ select.menuBtn {
border: none; border: none;
cursor: pointer; cursor: pointer;
margin: -1px -20px 0 0; margin: -1px -20px 0 0;
background: transparent;
} }
.menu span:hover { .menu span:hover {
+3 -3
View File
@@ -261,9 +261,9 @@ var Space = {
Space._panelTimeout = setTimeout(function() { Space._panelTimeout = setTimeout(function() {
if (Engine.isLightsOff()) if (Engine.isLightsOff())
$('#spacePanel, .menu').animate({color: '#272823'}, 500, 'linear'); $('#spacePanel, .menu, select.menuBtn').animate({color: '#272823'}, 500, 'linear');
else else
$('#spacePanel, .menu').animate({color: 'white'}, 500, 'linear'); $('#spacePanel, .menu, select.menuBtn').animate({color: 'white'}, 500, 'linear');
}, Space.FTB_SPEED / 2); }, Space.FTB_SPEED / 2);
Space.createAsteroid(); Space.createAsteroid();
@@ -349,7 +349,7 @@ var Space = {
$('#spacePanel').attr('style', ''); $('#spacePanel').attr('style', '');
} }
}); });
$('.menu').animate({color: '#666'}, 300, 'linear'); $('.menu, select.menuBtn').animate({color: '#666'}, 300, 'linear');
$('#outerSlider').animate({top: '0px'}, 300, 'linear'); $('#outerSlider').animate({top: '0px'}, 300, 'linear');
Engine.activeModule = Ship; Engine.activeModule = Ship;
Ship.onArrival(); Ship.onArrival();