Changeset 245484 in webkit


Ignore:
Timestamp:
May 17, 2019 4:07:21 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Dark Mode: Fix colors in network table waterfall container
https://bugs.webkit.org/show_bug.cgi?id=197955

Patch by Jamal Nasser <jamaln@mail.com> on 2019-05-17
Reviewed by Devin Rousso.

  • UserInterface/Views/NetworkTableContentView.css:

(.network-table :not(.header) .cell.waterfall .waterfall-container > .dom-event):
(.network-table :not(.header) .cell.waterfall .waterfall-container > .dom-activity):
(.network-table :not(.header) .cell.waterfall .waterfall-container > .area.dom-fullscreen):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r245167 r245484  
     12019-05-17  Jamal Nasser  <jamaln@mail.com>
     2
     3        Web Inspector: Dark Mode: Fix colors in network table waterfall container
     4        https://bugs.webkit.org/show_bug.cgi?id=197955
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Views/NetworkTableContentView.css:
     9        (.network-table :not(.header) .cell.waterfall .waterfall-container > .dom-event):
     10        (.network-table :not(.header) .cell.waterfall .waterfall-container > .dom-activity):
     11        (.network-table :not(.header) .cell.waterfall .waterfall-container > .area.dom-fullscreen):
     12
    1132019-05-09  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.css

    r244933 r245484  
    185185    min-width: var(--node-waterfall-dom-event-size);
    186186    height: var(--node-waterfall-dom-event-size);
    187     background-color: var(--selected-background-color);
     187    background-color: var(--selected-background-color-active);
    188188    border-radius: calc(var(--node-waterfall-dom-event-size) / 2);
    189189}
     
    192192    position: absolute;
    193193    top: calc(50% - 0.5px);
    194     border-top: 1px dashed var(--selected-background-color);
     194    border-top: 1px dashed var(--selected-background-color-active);
    195195}
    196196
     
    209209
    210210.network-table :not(.header) .cell.waterfall .waterfall-container > .area.dom-fullscreen {
    211     background-color: hsla(0, 0%, 75%, 0.75);
     211    background-color: hsl(0, 0%, 40%);
    212212}
    213213
Note: See TracChangeset for help on using the changeset viewer.