Title: [216304] trunk/Source/WebInspectorUI
Revision
216304
Author
nvasil...@apple.com
Date
2017-05-05 18:59:14 -0700 (Fri, 05 May 2017)

Log Message

REGRESSION (r212998): Web Inspector: bad spacing of go-to arrow for HTTP POST request data
https://bugs.webkit.org/show_bug.cgi?id=171674

Reviewed by Matt Baker.

* UserInterface/Views/DetailsSection.css:
(body[dir=ltr] .details-section > .content > .group > .row.simple > .value .go-to-arrow):
(body[dir=rtl] .details-section > .content > .group > .row.simple > .value .go-to-arrow):
Swap margin-left and margin-right. This regressed when RTL support was added.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (216303 => 216304)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-05-06 01:39:00 UTC (rev 216303)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-05-06 01:59:14 UTC (rev 216304)
@@ -1,3 +1,15 @@
+2017-05-05  Nikita Vasilyev  <nvasil...@apple.com>
+
+        REGRESSION (r212998): Web Inspector: bad spacing of go-to arrow for HTTP POST request data
+        https://bugs.webkit.org/show_bug.cgi?id=171674
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/DetailsSection.css:
+        (body[dir=ltr] .details-section > .content > .group > .row.simple > .value .go-to-arrow):
+        (body[dir=rtl] .details-section > .content > .group > .row.simple > .value .go-to-arrow):
+        Swap margin-left and margin-right. This regressed when RTL support was added.
+
 2017-05-03  Devin Rousso  <web...@devinrousso.com>
 
         REGRESSION (r215630): Web Inspector: Option-Click on URL in Styles sidebar does not work

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css (216303 => 216304)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2017-05-06 01:39:00 UTC (rev 216303)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DetailsSection.css	2017-05-06 01:59:14 UTC (rev 216304)
@@ -276,11 +276,11 @@
 }
 
 body[dir=ltr] .details-section > .content > .group > .row.simple > .value .go-to-arrow {
-    margin-right: var(--details-section-content-group-row-simple-value-go-to-margin-start);
+    margin-left: var(--details-section-content-group-row-simple-value-go-to-margin-start);
 }
 
 body[dir=rtl] .details-section > .content > .group > .row.simple > .value .go-to-arrow {
-    margin-left: var(--details-section-content-group-row-simple-value-go-to-margin-start);
+    margin-right: var(--details-section-content-group-row-simple-value-go-to-margin-start);
 }
 
 .details-section > .content > .group > .row.simple.data > .value {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to