From 58333c1b466b468407623f971b83111be0ed2abc Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Sun, 7 Mar 2021 13:21:00 -0500 Subject: [PATCH] corporation textbox now match the rest of the game. --- src/Constants.ts | 4 +++- src/Locations/LocationsHelpers.ts | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Constants.ts b/src/Constants.ts index 68a7d2620..e09dda6a2 100644 --- a/src/Constants.ts +++ b/src/Constants.ts @@ -248,6 +248,8 @@ export let CONSTANTS: IMap = { having a limit of 3. * Fixed an issue where the gang equipment screen would freeze the game if a script installed augmentations while it is open. - * All BonusTime now displays in the 'H M S' format + * All BonusTime now displays in the 'H M S' format. + * Donation textbox style updated to match the rest of the game. + * Corporation name style updated to match the rest of the game. ` } diff --git a/src/Locations/LocationsHelpers.ts b/src/Locations/LocationsHelpers.ts index 602f1d330..72bf02b0e 100644 --- a/src/Locations/LocationsHelpers.ts +++ b/src/Locations/LocationsHelpers.ts @@ -127,6 +127,7 @@ export function createStartCorporationPopup(p: IPlayer) { }); const nameInput = createElement("input", { + class: 'text-input', placeholder: "Corporation Name", }) as HTMLInputElement;