diff --git a/toolkit/mozapps/preferences/changemp.js b/toolkit/mozapps/preferences/changemp.js index 414e7d1b9ca8..f1459747b106 100644 --- a/toolkit/mozapps/preferences/changemp.js +++ b/toolkit/mozapps/preferences/changemp.js @@ -38,8 +38,7 @@ function process() { let msgBox = document.getElementById("message"); if ((token.needsLogin() && token.needsUserInit) || !token.needsLogin()) { oldpwbox.setAttribute("hidden", "true"); - document.l10n.setAttributes(msgBox, "password-not-set"); - msgBox.setAttribute("hidden", "false"); + msgBox.removeAttribute("hidden"); if (!token.needsLogin()) { oldpwbox.setAttribute("inited", "empty"); @@ -51,7 +50,7 @@ function process() { document.getElementById("pw1").focus(); } else { // Select old password field - oldpwbox.setAttribute("hidden", "false"); + oldpwbox.removeAttribute("hidden"); msgBox.setAttribute("hidden", "true"); oldpwbox.setAttribute("inited", "false"); oldpwbox.focus(); diff --git a/toolkit/mozapps/preferences/changemp.xul b/toolkit/mozapps/preferences/changemp.xul index 439d6520422d..1c5310ba0d83 100644 --- a/toolkit/mozapps/preferences/changemp.xul +++ b/toolkit/mozapps/preferences/changemp.xul @@ -25,7 +25,7 @@ - + - + - + - + diff --git a/toolkit/mozapps/preferences/removemp.xul b/toolkit/mozapps/preferences/removemp.xul index 113344b30b8b..c35cfe0c1499 100644 --- a/toolkit/mozapps/preferences/removemp.xul +++ b/toolkit/mozapps/preferences/removemp.xul @@ -31,9 +31,9 @@ diff --git a/toolkit/themes/osx/global/in-content/common.css b/toolkit/themes/osx/global/in-content/common.css index 4e2464219910..503b130cdb5c 100644 --- a/toolkit/themes/osx/global/in-content/common.css +++ b/toolkit/themes/osx/global/in-content/common.css @@ -86,3 +86,12 @@ html|button { /* XUL button min-width */ min-width: 79px; } + +html|input[type="email"], +html|input[type="tel"], +html|input[type="text"], +html|input[type="password"], +html|input[type="number"], +html|textarea { + margin: 4px; +} diff --git a/toolkit/themes/shared/in-content/common.inc.css b/toolkit/themes/shared/in-content/common.inc.css index cc30bdaf34b7..e2b8dc52434d 100644 --- a/toolkit/themes/shared/in-content/common.inc.css +++ b/toolkit/themes/shared/in-content/common.inc.css @@ -462,6 +462,7 @@ html|textarea { font-family: inherit; font-size: inherit; padding: 5px 8px; + margin: 2px 4px; } html|input[type="email"]:enabled:not(:focus):hover,