Changeset 269127 in webkit


Ignore:
Timestamp:
Oct 28, 2020 2:34:04 PM (21 months ago)
Author:
commit-queue@webkit.org
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 <Federico Bucchi> 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.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r269075 r269127  
     12020-10-28  Federico Bucchi  <fbucchi@apple.com>
     2
     3        Web Inspector: Network: background color of rows from previous session is wrong
     4        https://bugs.webkit.org/show_bug.cgi?id=218058
     5        <rdar://problem/70550459>
     6
     7        Reviewed by Devin Rousso.
     8
     9        * UserInterface/Views/NetworkTableContentView.css:
     10        (.network-table > .table li:not(.filler, .selected) .cell:not(.name, .current-session),):
     11        (.network-table > .table li:not(.filler, .selected) .cell:not(.current-session)): Deleted.
     12
    1132020-10-27  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.css

    r265237 r269127  
    5151}
    5252
    53 .network-table > .table li:not(.filler, .selected) .cell:not(.current-session) {
     53.network-table > .table li:not(.filler, .selected) .cell:not(.name, .current-session),
     54.network-table > .table li:not(.filler, .selected) .cell.name:not(.current-session) > * {
    5455    opacity: 0.5;
    5556}
Note: See TracChangeset for help on using the changeset viewer.