diff --git a/index.css b/index.css index bd0075020c0..0fd1e083bd3 100644 --- a/index.css +++ b/index.css @@ -156,4 +156,8 @@ body { #layout:fullscreen #dpad, #layout:fullscreen #apad { bottom: 6rem; +} + +input:-internal-autofill-selected { + -webkit-background-clip: text; } \ No newline at end of file diff --git a/src/ui/form-modal-ui-handler.ts b/src/ui/form-modal-ui-handler.ts index cd22a2326fd..b0e9fe92ce3 100644 --- a/src/ui/form-modal-ui-handler.ts +++ b/src/ui/form-modal-ui-handler.ts @@ -50,6 +50,7 @@ export abstract class FormModalUiHandler extends ModalUiHandler { this.modalContainer.add(label); const inputContainer = this.scene.add.container(70, (hasTitle ? 28 : 2) + 20 * f); + inputContainer.setVisible(false); const inputBg = addWindow(this.scene, 0, 0, 80, 16, false, false, 0, 0, WindowVariant.XTHIN);