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
+3 -3
View File
@@ -261,9 +261,9 @@ var Space = {
Space._panelTimeout = setTimeout(function() {
if (Engine.isLightsOff())
$('#spacePanel, .menu').animate({color: '#272823'}, 500, 'linear');
$('#spacePanel, .menu, select.menuBtn').animate({color: '#272823'}, 500, 'linear');
else
$('#spacePanel, .menu').animate({color: 'white'}, 500, 'linear');
$('#spacePanel, .menu, select.menuBtn').animate({color: 'white'}, 500, 'linear');
}, Space.FTB_SPEED / 2);
Space.createAsteroid();
@@ -349,7 +349,7 @@ var Space = {
$('#spacePanel').attr('style', '');
}
});
$('.menu').animate({color: '#666'}, 300, 'linear');
$('.menu, select.menuBtn').animate({color: '#666'}, 300, 'linear');
$('#outerSlider').animate({top: '0px'}, 300, 'linear');
Engine.activeModule = Ship;
Ship.onArrival();