Bug 1585890 - Fix the direction of children-pointer in the Memory inspector's aggregate view for RTL. r=julienw

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Itiel 2019-10-08 12:02:01 +00:00
parent 3635800f0b
commit 4d9609efc5

View File

@ -397,7 +397,10 @@ html, body, #app, #memory-tool {
}
.children-pointer {
padding-inline-end: 5px;
display: inline-block;
/* We use transform to reverse the icon in RTL,
* so `padding-right` will get reversed as well. */
padding-right: 5px;
}
.children-pointer:dir(rtl) {