diff --git a/History.md b/History.md index 033a7767b2..c4081368ca 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,20 @@ ## v.NEXT +* The `accounts-ui-unstyled` package has been updated to use `
` and + `` tags with its login/signup form, instead of ``'s. This + change helps browser's notice login/signup requests, allowing them to + trigger their "remember your login/password" functionality. + + > **Note:** If your application is styling the login/signup form using a CSS + path that includes the replaced `div` elements (e.g. + `div.login-form { ...` or `div.login-button { ...`), your styles will + break. You can either update your CSS to use `form.` / `button.` or + adjust your CSS specificity by styling on `class` / `id` attributes + only. + + [Issue #1746](https://github.com/meteor/meteor/issues/1746) + [PR #9442](https://github.com/meteor/meteor/pull/9442) + * The `meteor-babel` npm package (along with its Babel-related dependencies) has been updated to version 7.0.0-beta.34, a major update from Babel 6. Thanks to the strong abstraction of the `meteor-babel` diff --git a/packages/accounts-ui-unstyled/login_buttons.import.less b/packages/accounts-ui-unstyled/login_buttons.import.less index 9fe144f9e7..0f4af375a3 100644 --- a/packages/accounts-ui-unstyled/login_buttons.import.less +++ b/packages/accounts-ui-unstyled/login_buttons.import.less @@ -73,6 +73,10 @@ position: relative; // so that we can position the image absolutely within the button } + button.login-button { + width: 100%; + } + .login-buttons-with-only-one-button { display: inline-block; .login-button { display: inline-block; } diff --git a/packages/accounts-ui-unstyled/login_buttons_dropdown.html b/packages/accounts-ui-unstyled/login_buttons_dropdown.html index f7d4a16f61..6b1f11b756 100644 --- a/packages/accounts-ui-unstyled/login_buttons_dropdown.html +++ b/packages/accounts-ui-unstyled/login_buttons_dropdown.html @@ -97,20 +97,23 @@ {{#if inForgotPasswordFlow}} {{> _forgotPasswordForm}} {{else}} -