Changeset 202840 in webkit


Ignore:
Timestamp:
Jul 5, 2016 4:42:59 PM (8 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Switch last uses of -webkit-linear-gradient() to linear-gradient()
https://bugs.webkit.org/show_bug.cgi?id=159438
rdar://problem/27183417

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/RenderingFrameTimelineOverviewGraph.css:

(.timeline-overview-graph.rendering-frame > .frame-marker):
(body.window-inactive .timeline-overview-graph.rendering-frame > .frame-marker):

  • UserInterface/Views/TimelineRecordFrame.css:

(.timeline-record-frame.tall):
(.timeline-record-frame.selected):
(body.window-inactive .timeline-record-frame.selected):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r202831 r202840  
     12016-07-05  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Switch last uses of -webkit-linear-gradient() to linear-gradient()
     4        https://bugs.webkit.org/show_bug.cgi?id=159438
     5        rdar://problem/27183417
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        * UserInterface/Views/RenderingFrameTimelineOverviewGraph.css:
     10        (.timeline-overview-graph.rendering-frame > .frame-marker):
     11        (body.window-inactive .timeline-overview-graph.rendering-frame > .frame-marker):
     12        * UserInterface/Views/TimelineRecordFrame.css:
     13        (.timeline-record-frame.tall):
     14        (.timeline-record-frame.selected):
     15        (body.window-inactive .timeline-record-frame.selected):
     16
    1172016-07-05  Timothy Hatcher  <timothy@apple.com>
    218
  • trunk/Source/WebInspectorUI/UserInterface/Views/RenderingFrameTimelineOverviewGraph.css

    r187468 r202840  
    5454    top: -5px;
    5555
    56     background: -webkit-linear-gradient(left, hsl(210, 100%, 49%), hsl(210, 100%, 49%)) no-repeat 1px 0;
     56    background: linear-gradient(to right, hsl(210, 100%, 49%), hsl(210, 100%, 49%)) no-repeat 1px 0;
    5757
    5858    pointer-events: none;
     
    6060
    6161body.window-inactive .timeline-overview-graph.rendering-frame > .frame-marker {
    62     background-image: -webkit-linear-gradient(left, hsl(0, 0%, 60%), hsl(0, 0%, 60%));
     62    background-image: linear-gradient(to right, hsl(0, 0%, 60%), hsl(0, 0%, 60%));
    6363}
  • trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRecordFrame.css

    r188708 r202840  
    3535
    3636.timeline-record-frame.tall {
    37     -webkit-mask-image: -webkit-linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 1) 10%);
     37    -webkit-mask-image: linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 1) 10%);
    3838}
    3939
     
    5151
    5252.timeline-record-frame.selected {
    53     background: -webkit-linear-gradient(left, hsl(210, 98%, 96%), hsl(210, 98%, 96%)) no-repeat 1px -1px;
     53    background: linear-gradient(to right, hsl(210, 98%, 96%), hsl(210, 98%, 96%)) no-repeat 1px -1px;
    5454}
    5555
    5656body.window-inactive .timeline-record-frame.selected {
    57     background: -webkit-linear-gradient(left, hsl(0, 0%, 96%), hsl(0, 0%, 96%)) no-repeat 1px -1px;
     57    background: linear-gradient(to right, hsl(0, 0%, 96%), hsl(0, 0%, 96%)) no-repeat 1px -1px;
    5858}
    5959
Note: See TracChangeset for help on using the changeset viewer.