Title: [269127] trunk/Source/WebInspectorUI
Revision
269127
Author
[email protected]
Date
2020-10-28 14:34:04 -0700 (Wed, 28 Oct 2020)

Log Message

Web Inspector: Network: background color of rows from previous session is wrong
https://bugs.webkit.org/show_bug.cgi?id=218058
<rdar://problem/70550459>

Patch by Federico Bucchi <[email protected]> on 2020-10-28
Reviewed by Devin Rousso.

* UserInterface/Views/NetworkTableContentView.css:
(.network-table > .table li:not(.filler, .selected) .cell:not(.name, .current-session),):
(.network-table > .table li:not(.filler, .selected) .cell:not(.current-session)): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (269126 => 269127)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-10-28 21:30:27 UTC (rev 269126)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-10-28 21:34:04 UTC (rev 269127)
@@ -1,3 +1,15 @@
+2020-10-28  Federico Bucchi  <[email protected]>
+
+        Web Inspector: Network: background color of rows from previous session is wrong
+        https://bugs.webkit.org/show_bug.cgi?id=218058
+        <rdar://problem/70550459>
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/NetworkTableContentView.css:
+        (.network-table > .table li:not(.filler, .selected) .cell:not(.name, .current-session),):
+        (.network-table > .table li:not(.filler, .selected) .cell:not(.current-session)): Deleted.
+
 2020-10-27  Devin Rousso  <[email protected]>
 
         Web Inspector: truncate data URLs in the Resources sidebar and Headers panel

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.css (269126 => 269127)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.css	2020-10-28 21:30:27 UTC (rev 269126)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.css	2020-10-28 21:34:04 UTC (rev 269127)
@@ -50,7 +50,8 @@
     -webkit-margin-end: 4px;
 }
 
-.network-table > .table li:not(.filler, .selected) .cell:not(.current-session) {
+.network-table > .table li:not(.filler, .selected) .cell:not(.name, .current-session),
+.network-table > .table li:not(.filler, .selected) .cell.name:not(.current-session) > * {
     opacity: 0.5;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to