Bug 1573804 - Fix dropdown tooltip arrow RTL alignment in devtools HTML documents. r=ntim

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Itiel 2019-08-19 17:31:26 +00:00
Родитель b67d050045
Коммит a92ad7a9b4
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -222,12 +222,14 @@ strong {
flex-shrink: 0;
}
/* In RTL locales, only use RTL on the tooltip content, keep LTR for positioning */
.tooltip-container:-moz-locale-dir(rtl) {
/* In RTL locales and context, only use RTL on the tooltip content, keep LTR for positioning */
.tooltip-container:-moz-locale-dir(rtl),
.tooltip-container:dir(rtl) {
direction: ltr;
}
.tooltip-panel:-moz-locale-dir(rtl) {
.tooltip-panel:-moz-locale-dir(rtl),
.tooltip-panel:dir(rtl) {
direction: rtl;
}