Bug 1579955 - [RTL] Fix the "Custom URLs" textbox input and autocomplete popup direction in about:preferences r=johannh

Differential Revision: https://phabricator.services.mozilla.com/D45234

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Itiel 2019-09-10 10:53:49 +00:00
parent 7ac2c59abb
commit cc2864361e

View File

@ -363,20 +363,32 @@ button > hbox > label {
}
/* Home Pane */
#homepageGroup menulist,
#homepageGroup textbox {
margin: 5px 0;
}
#homepageGroup textbox {
text-align: match-parent;
}
#homepageAndNewWindowsOption {
margin-top: 20px;
}
#homepageGroup:-moz-locale-dir(rtl) input {
unicode-bidi: plaintext;
}
#homepageGroup:-moz-locale-dir(rtl) panel[type="autocomplete-richlistbox"] {
direction: rtl;
}
.homepage-button:first-of-type {
margin-inline-start: 0;
}
.homepage-button:last-of-type {
margin-inline-end: 0;
}