This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to annotated tag FIREFOX_102_4_0esr_BUILD1 in repository tor-browser.
commit 41a59ed1ffa03f8d932465fa7e3de0656144d535 Author: Tim Giles tgiles@mozilla.com AuthorDate: Tue Jun 28 16:38:27 2022 +0000
Bug 1773212 - Fix OS authentication checkbox for credit card autofill not wrapping its text. r=sgalich, a=RyanVM
Differential Revision: https://phabricator.services.mozilla.com/D150426 --- toolkit/components/formautofill/FormAutofillPreferences.jsm | 1 + 1 file changed, 1 insertion(+)
diff --git a/toolkit/components/formautofill/FormAutofillPreferences.jsm b/toolkit/components/formautofill/FormAutofillPreferences.jsm index ee5cde7360b9..1b007b29038a 100644 --- a/toolkit/components/formautofill/FormAutofillPreferences.jsm +++ b/toolkit/components/formautofill/FormAutofillPreferences.jsm @@ -259,6 +259,7 @@ FormAutofillPreferences.prototype = { reauthCheckboxGroup.classList.add("indent"); reauthLearnMore.classList.add("learnMore"); reauthCheckbox.classList.add("tail-with-learn-more"); + reauthCheckbox.setAttribute("flex", "1"); reauthCheckbox.disabled = !FormAutofill.isAutofillCreditCardsEnabled;
reauth.id = "creditCardReauthenticate";