Bug 1379442 - Fix styling of nodeinfobar on RTL sites by setting writing-mode/direction to 'initial'. r=pbro draft
authorabhinav <abhinav.koppula@gmail.com>
Wed, 20 Sep 2017 09:04:30 +0530
changeset 667449 e2edeeaf076fa8a4505dd6993540fe138763d2df
parent 665623 7aceaf8bcb9f582db0f93488b48ef7019e348dba
child 732381 f28a95b5d7e7d2b4c0d00f1f8f6ddb6625f1d530
push id80706
push userbmo:abhinav.koppula@gmail.com
push dateWed, 20 Sep 2017 03:34:52 +0000
reviewerspbro
bugs1379442
milestone57.0a1
Bug 1379442 - Fix styling of nodeinfobar on RTL sites by setting writing-mode/direction to 'initial'. r=pbro MozReview-Commit-ID: 3fg7F80CXWe
devtools/server/actors/highlighters.css
--- a/devtools/server/actors/highlighters.css
+++ b/devtools/server/actors/highlighters.css
@@ -20,16 +20,18 @@
   Content CSS applying to the html element impact the highlighters.
   To avoid that, possible cases have been set to initial.
   */
   text-transform: initial;
   text-indent: initial;
   letter-spacing: initial;
   word-spacing: initial;
   color: initial;
+  direction: initial;
+  writing-mode: initial;
 }
 
 :-moz-native-anonymous .highlighter-container {
   --highlighter-guide-color: #08c;
   --highlighter-content-color: #87ceeb;
   --highlighter-bubble-text-color: hsl(216, 33%, 97%);
   --highlighter-bubble-background-color: hsl(214, 13%, 24%);
   --highlighter-bubble-border-color: rgba(255, 255, 255, 0.2);