Types in reverse in URL bar
When I type in the URL bar in Firefox the cursor return to the left side of the input field area. This generates the word backwards. I have to log out as windows user an… (閱讀更多)
When I type in the URL bar in Firefox the cursor return to the left side of the input field area. This generates the word backwards.
I have to log out as windows user and log back in to correct this. Closing Firefox does not correct it.
Override "important!" in source files with userChrome.css
Hello, I'm trying to change the default text direction in the URL bar from right to left (in FF RTL locals). Replacing html|input.urlbar-input:-moz-locale-dir(rtl) { dir… (閱讀更多)
Hello,
I'm trying to change the default text direction in the URL bar from right to left (in FF RTL locals).
Replacing
html|input.urlbar-input:-moz-locale-dir(rtl) {
direction: ltr !important; text-align: right !important;
}
with
html|input.urlbar-input {
direction: ltr !important; text-align: left !important;
}
in chrome\browser\content\browser\browser.css does change the direction.
However, I can not achieve that with userChrome.css. Is it possible to override the "important!" rule in the source file with userChrome.css?
Thank you.