Changeset 209089 in webkit


Ignore:
Timestamp:
Nov 29, 2016 1:49:51 PM (7 years ago)
Author:
Matt Baker
Message:

Web Inspector: Breakpoints button enabled state is too subtle
https://bugs.webkit.org/show_bug.cgi?id=165153

Reviewed by Joseph Pecoraro.

  • UserInterface/Images/Breakpoints.svg:

Change to path so stroke and fill can be styled.

  • UserInterface/Views/DebuggerSidebarPanel.css:

(.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints):
(.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints.activated):
Fill and stroke styles for the active and inactive breakpoint button.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r209062 r209089  
     12016-11-29  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: Breakpoints button enabled state is too subtle
     4        https://bugs.webkit.org/show_bug.cgi?id=165153
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Images/Breakpoints.svg:
     9        Change to path so stroke and fill can be styled.
     10
     11        * UserInterface/Views/DebuggerSidebarPanel.css:
     12        (.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints):
     13        (.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints.activated):
     14        Fill and stroke styles for the active and inactive breakpoint button.
     15
    1162016-11-28  Matt Baker  <mattbaker@apple.com>
    217
  • trunk/Source/WebInspectorUI/UserInterface/Images/Breakpoints.svg

    r191693 r209089  
    22<!-- Copyright © 2014 Apple Inc. All rights reserved. -->
    33<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
    4     <path fill="none" stroke="currentColor" d="M 0.5 3.5 L 0.5 11.5 L 10.5 11.5 L 14.5 7.5 L 10.5 3.5 L 0.5 3.5 Z"/>
     4    <path d="M 0.5 3.5 L 0.5 11.5 L 10.5 11.5 L 14.5 7.5 L 10.5 3.5 L 0.5 3.5 Z"/>
    55</svg>
  • trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.css

    r205651 r209089  
    3333    left: 0;
    3434    right: 0;
     35}
     36
     37.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints {
     38    fill: none;
     39    stroke: var(--glyph-color);
     40}
     41.sidebar > .panel.navigation.debugger > .navigation-bar .debugger-breakpoints.activated {
     42    fill: var(--glyph-color-active);
     43    stroke: var(--glyph-color-active);
    3544}
    3645
Note: See TracChangeset for help on using the changeset viewer.