Changeset 236532 in webkit


Ignore:
Timestamp:
Sep 26, 2018, 4:23:53 PM (7 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Dark Mode: new watch expression popover has light background
https://bugs.webkit.org/show_bug.cgi?id=190013
<rdar://problem/44810000>

Reviewed by Matt Baker.

Make the background dark to match the CodeMirror editor background.

  • UserInterface/Views/ScopeChainDetailsSidebarPanel.css:

(@media (prefers-dark-interface)):
(.watch-expression-editor):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r236358 r236532  
     12018-09-26  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Dark Mode: new watch expression popover has light background
     4        https://bugs.webkit.org/show_bug.cgi?id=190013
     5        <rdar://problem/44810000>
     6
     7        Reviewed by Matt Baker.
     8
     9        Make the background dark to match the CodeMirror editor background.
     10
     11        * UserInterface/Views/ScopeChainDetailsSidebarPanel.css:
     12        (@media (prefers-dark-interface)):
     13        (.watch-expression-editor):
     14
    1152018-09-21  Nikita Vasilyev  <nvasilyev@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.css

    r225019 r236532  
    6464    top: 1px;
    6565}
     66
     67@media (prefers-dark-interface) {
     68    .watch-expression-editor {
     69        background-color: var(--background-color-code);
     70    }
     71}
Note: See TracChangeset for help on using the changeset viewer.