Title: [217229] trunk/Source/WebInspectorUI
Revision
217229
Author
[email protected]
Date
2017-05-22 11:27:34 -0700 (Mon, 22 May 2017)

Log Message

Web Inspector: RTL: Text in autocomplete popover should be aligned left
https://bugs.webkit.org/show_bug.cgi?id=171998

Patch by Nikita Vasilyev <[email protected]> on 2017-05-22
Reviewed by Brian Burg.

Autocomplete popover is only used for CSS and _javascript_, and
these should always be shown as LTR text.

* UserInterface/Views/CompletionSuggestionsView.css:
(.completion-suggestions):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (217228 => 217229)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-05-22 18:17:06 UTC (rev 217228)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-05-22 18:27:34 UTC (rev 217229)
@@ -1,3 +1,16 @@
+2017-05-22  Nikita Vasilyev  <[email protected]>
+
+        Web Inspector: RTL: Text in autocomplete popover should be aligned left
+        https://bugs.webkit.org/show_bug.cgi?id=171998
+
+        Reviewed by Brian Burg.
+
+        Autocomplete popover is only used for CSS and _javascript_, and
+        these should always be shown as LTR text.
+
+        * UserInterface/Views/CompletionSuggestionsView.css:
+        (.completion-suggestions):
+
 2017-05-22  Fujii Hironori  <[email protected]>
 
         [GTK] Web Inspector: Add active call frame indicator image

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CompletionSuggestionsView.css (217228 => 217229)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CompletionSuggestionsView.css	2017-05-22 18:17:06 UTC (rev 217228)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CompletionSuggestionsView.css	2017-05-22 18:27:34 UTC (rev 217229)
@@ -27,6 +27,8 @@
     position: absolute;
     display: block;
 
+    text-align: left;
+
     background-color: hsla(0, 0%, 100%, 0.9);
     border-radius: 5px;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to