Title: [237973] trunk/Source/WebInspectorUI
Revision
237973
Author
nvasil...@apple.com
Date
2018-11-07 18:00:49 -0800 (Wed, 07 Nov 2018)

Log Message

REGRESSION(r236705): Web Inspector: wrong text color for selected DataGrid row
https://bugs.webkit.org/show_bug.cgi?id=191405
<rdar://problem/45893283>

Reviewed by Matt Baker.

Selection background color for both Dark Mode mode and Light Mode is dark blue.
The text color for both cases should be white.

* UserInterface/Views/DataGrid.css:
(body:not(.window-inactive, .window-docked-inactive) .data-grid:focus tr.editable.selected .cell-content > input):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (237972 => 237973)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-11-08 01:47:27 UTC (rev 237972)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-11-08 02:00:49 UTC (rev 237973)
@@ -1,3 +1,17 @@
+2018-11-07  Nikita Vasilyev  <nvasil...@apple.com>
+
+        REGRESSION(r236705): Web Inspector: wrong text color for selected DataGrid row
+        https://bugs.webkit.org/show_bug.cgi?id=191405
+        <rdar://problem/45893283>
+
+        Reviewed by Matt Baker.
+
+        Selection background color for both Dark Mode mode and Light Mode is dark blue.
+        The text color for both cases should be white.
+
+        * UserInterface/Views/DataGrid.css:
+        (body:not(.window-inactive, .window-docked-inactive) .data-grid:focus tr.editable.selected .cell-content > input):
+
 2018-11-07  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Fix "_javascript_" => "_javascript_" enum in protocol generated objects

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css (237972 => 237973)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css	2018-11-08 01:47:27 UTC (rev 237972)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.css	2018-11-08 02:00:49 UTC (rev 237973)
@@ -426,7 +426,7 @@
 }
 
 body:not(.window-inactive, .window-docked-inactive) .data-grid:focus tr.editable.selected .cell-content > input {
-    color: var(--text-color);
+    color: var(--selected-foreground-color);
 }
 
 @media (prefers-dark-interface) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to