Changeset 196406 in webkit


Ignore:
Timestamp:
Feb 10, 2016 4:52:30 PM (8 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Add new icon for the Timeline Recording navigation bar item
https://bugs.webkit.org/show_bug.cgi?id=154089
rdar://problem/24595652

Reviewed by Brian Burg.

  • UserInterface/Images/Stopwatch.png: Removed.
  • UserInterface/Images/Stopwatch@2x.png: Removed.
  • UserInterface/Images/Stopwatch.svg: Added.
  • UserInterface/Views/TimelineIcons.css:

(.stopwatch-icon .icon): Use Stopwatch.svg.
(body:not(.mac-platform, .windows-platform) .stopwatch-icon .icon): Added for GTK+.

Location:
trunk/Source/WebInspectorUI
Files:
1 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196404 r196406  
     12016-02-10  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Add new icon for the Timeline Recording navigation bar item
     4        https://bugs.webkit.org/show_bug.cgi?id=154089
     5        rdar://problem/24595652
     6
     7        Reviewed by Brian Burg.
     8
     9        * UserInterface/Images/Stopwatch.png: Removed.
     10        * UserInterface/Images/Stopwatch@2x.png: Removed.
     11        * UserInterface/Images/Stopwatch.svg: Added.
     12        * UserInterface/Views/TimelineIcons.css:
     13        (.stopwatch-icon .icon): Use Stopwatch.svg.
     14        (body:not(.mac-platform, .windows-platform) .stopwatch-icon .icon): Added for GTK+.
     15
    1162016-02-10  Matt Baker  <mattbaker@apple.com>
    217
  • trunk/Source/WebInspectorUI/UserInterface/Views/TimelineIcons.css

    r196151 r196406  
    7474
    7575.stopwatch-icon .icon {
     76    content: url(../Images/Stopwatch.svg);
     77}
     78
     79/* FIXME: <https://webkit.org/b/154088> [GTK] Web Inspector: Add new GTK+ icon for timeline recording stopwatch */
     80body:not(.mac-platform, .windows-platform) .stopwatch-icon .icon {
    7681    content: -webkit-image-set(url(../Images/Stopwatch.png) 1x, url(../Images/Stopwatch@2x.png) 2x);
    7782}
Note: See TracChangeset for help on using the changeset viewer.