Title: [218777] trunk/Source/WebInspectorUI
- Revision
- 218777
- Author
- [email protected]
- Date
- 2017-06-23 17:35:20 -0700 (Fri, 23 Jun 2017)
Log Message
Web Inspector: RTL: flip all go-to-arrow instances
https://bugs.webkit.org/show_bug.cgi?id=173794
<rdar://problem/32221912>
Reviewed by Joseph Pecoraro.
Move the flipping transform so it applies to all go-to arrows.
* UserInterface/Views/DataGrid.css:
(body[dir=rtl] .data-grid td .go-to-arrow):
* UserInterface/Views/Main.css:
(body[dir=rtl] .go-to-arrow):
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (218776 => 218777)
--- trunk/Source/WebInspectorUI/ChangeLog 2017-06-24 00:03:38 UTC (rev 218776)
+++ trunk/Source/WebInspectorUI/ChangeLog 2017-06-24 00:35:20 UTC (rev 218777)
@@ -1,3 +1,18 @@
+2017-06-23 Brian Burg <[email protected]>
+
+ Web Inspector: RTL: flip all go-to-arrow instances
+ https://bugs.webkit.org/show_bug.cgi?id=173794
+ <rdar://problem/32221912>
+
+ Reviewed by Joseph Pecoraro.
+
+ Move the flipping transform so it applies to all go-to arrows.
+
+ * UserInterface/Views/DataGrid.css:
+ (body[dir=rtl] .data-grid td .go-to-arrow):
+ * UserInterface/Views/Main.css:
+ (body[dir=rtl] .go-to-arrow):
+
2017-06-22 Joseph Pecoraro <[email protected]>
Web Inspector: Pausing with a deep call stack can be very slow, avoid eagerly generating object previews
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css (218776 => 218777)
--- trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css 2017-06-24 00:03:38 UTC (rev 218776)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css 2017-06-24 00:35:20 UTC (rev 218777)
@@ -360,7 +360,6 @@
body[dir=rtl] .data-grid td .go-to-arrow {
float: left;
margin-right: var(--data-grid-go-to-arrow-margin-start);
- transform: scaleX(-1);
}
.data-grid tr:matches(.selected, :hover) .go-to-arrow {
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Main.css (218776 => 218777)
--- trunk/Source/WebInspectorUI/UserInterface/Views/Main.css 2017-06-24 00:03:38 UTC (rev 218776)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Main.css 2017-06-24 00:35:20 UTC (rev 218777)
@@ -314,6 +314,10 @@
background-image: url(../Images/GoToArrow.svg#active);
}
+body[dir=rtl] .go-to-arrow {
+ transform: scaleX(-1);
+}
+
:matches(:focus, .force-focus) .selected .go-to-arrow {
background-image: url(../Images/GoToArrow.svg#selected);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes