Bug 1651433 - Fix the telephone number to appear correctly in the preferences and in the autofill list r=MattN

Differential Revision: https://phabricator.services.mozilla.com/D82771
This commit is contained in:
Itiel 2020-07-08 19:51:14 +00:00
parent a7911be0b5
commit 50c5e799e3
3 changed files with 7 additions and 1 deletions

View File

@ -70,7 +70,7 @@
<span data-localization="country" class="label-text"/>
</label>
<label id="tel-container" class="container">
<input id="tel" type="tel"/>
<input id="tel" type="tel" dir="auto"/>
<span data-localization="tel" class="label-text"/>
</label>
<label id="email-container" class="container">

View File

@ -103,6 +103,7 @@ xul|richlistitem[originaltype="autofill-insecureWarning"] {
.autofill-item-box > .profile-label-col > .profile-label {
font-size: calc(var(--label-font-size) / var(--default-font-size) * 1em);
unicode-bidi: plaintext;
}
.autofill-item-box > .profile-label-col > .profile-label-affix {
@ -118,6 +119,7 @@ xul|richlistitem[originaltype="autofill-insecureWarning"] {
.autofill-item-box > .profile-comment-col > .profile-comment {
font-size: calc(var(--comment-font-size) / var(--default-font-size) * 1em);
unicode-bidi: plaintext;
}
.autofill-item-box[size="small"] {

View File

@ -25,6 +25,10 @@ form select {
padding-top: calc(var(--in-field-label-size) + .4em);
}
form input[type="tel"] {
text-align: match-parent;
}
select {
margin: 0;
padding-bottom: 5px;