-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated player property in PlayerIcon component to be computed to f…
…ix icon shape not updating when the player was changed to one with a different shape. * Updated gameStarBulkUpgraded() method in store.js to fix newScience calculation incorrectly calculating the amount of new science. * Updated SvgWrapper component: - Replaced use of object element with render() function, reducing the level of hackery that was being utilised. This also helps to mitigate the SVG pop-in slightly on slow browsers. - Now caches SVG element text (fixes SVG pop-in on slow browsers for all but the very first load of the SVG data) * Updated StarIcon component: - Corrected typo in SvgWrapper component import. - Fixed wormhole and nebula icons not being displaying inline (which would result in text being pushed out of the way). * Updated tabs in Galaxy component to always show four tabs per row. * Added new global styles.css file. * Adjusted styling for blue info boxes to improve readability: - Font colour is now fully white instead of slighty translucent white. - Small font size is now increased from .875em to .925em. * Updated getFriendlyColour() method in gameHelper to also convert the returned colour to lower case (in case it needs to be matched against a colour in colours.json). * Updated ensureExists() in ColourOverrideDialog to fix colour value lookup check (fixes Use Default button not working for older games). * Updated getColourForPlayer() method in store.js to run the colour through GameHelper.getFriendlyColour() before returning it (fixes colour bars appearing black in older games). * Updated gamePlayerJoined() method in BroadcastService to set the avatar value to the avatar file name. This fixes player avatars not loading correctly when players joined games. * Fixed compare() method in gridHelper not actually sorting null values after everything else.
- Loading branch information
1 parent
05be783
commit bad4f2a
Showing
13 changed files
with
76 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.bg-info { | ||
color: white; | ||
/*font-weight: 400;*/ | ||
} | ||
|
||
.bg-info .small, .bg-info small { | ||
font-size: .925em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters