Skip to content
Snippets Groups Projects
Commit ba1f03bb authored by Aditya Bharti's avatar Aditya Bharti
Browse files

bug 1407562 - Fix in-content HTML selects and about:telemetry "Raw JSON"...

bug 1407562 - Fix in-content HTML selects and about:telemetry "Raw JSON" element for RTL locales r=chutten

The arrow icon in about:telemetry's process <select> overlapped the text in RTL.
It turns out that this was also a problem in a couple of other places in the UI,
including the Add New Credit Card and And New Address dialogs for form autofill.
Now, those are fixed too.

On the about:telemetry page, the "Raw JSON" element is in the appropriate place now.
Earlier it was on the left in RTL locales.
parent 89030a42
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,10 @@ body {
left: 0;
}
body[dir=rtl] #category-raw{
right: 0;
}
.heading {
display: flex;
flex-direction: column;
......
......@@ -215,6 +215,10 @@ html|select:not([size]):not([multiple]) {
text-overflow: ellipsis;
}
html|select:not([size]):not([multiple]):dir(rtl){
background-position: left 3px center;
}
html|button:enabled:hover,
html|select:not([size]):not([multiple]):enabled:hover,
xul|button:not([disabled="true"]):hover,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment