Title: [204940] trunk/Source/WebInspectorUI
Revision
204940
Author
[email protected]
Date
2016-08-24 16:21:14 -0700 (Wed, 24 Aug 2016)

Log Message

Web Inspector: unexpected cursor changes while dragging ruler handle in rendering frames timeline
https://bugs.webkit.org/show_bug.cgi?id=161101
<rdar://problem/27974117>

Reviewed by Brian Burg.

-webkit-grab(bing) cursor styles shouldn't be applied to the selection
drag element when resizing.

* UserInterface/Views/TimelineRuler.css:
(.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag):
(.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag:active):
(.timeline-ruler:not(.disabled) > .selection-drag): Deleted.
(.timeline-ruler:not(.disabled) > .selection-drag:active): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (204939 => 204940)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-08-24 22:29:11 UTC (rev 204939)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-08-24 23:21:14 UTC (rev 204940)
@@ -1,3 +1,20 @@
+2016-08-24  Matt Baker  <[email protected]>
+
+        Web Inspector: unexpected cursor changes while dragging ruler handle in rendering frames timeline
+        https://bugs.webkit.org/show_bug.cgi?id=161101
+        <rdar://problem/27974117>
+
+        Reviewed by Brian Burg.
+
+        -webkit-grab(bing) cursor styles shouldn't be applied to the selection
+        drag element when resizing.
+
+        * UserInterface/Views/TimelineRuler.css:
+        (.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag):
+        (.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag:active):
+        (.timeline-ruler:not(.disabled) > .selection-drag): Deleted.
+        (.timeline-ruler:not(.disabled) > .selection-drag:active): Deleted.
+
 2016-08-24  Devin Rousso  <[email protected]>
 
         Web Inspector: Shift-Tab should unindent selected line

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css (204939 => 204940)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2016-08-24 22:29:11 UTC (rev 204939)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2016-08-24 23:21:14 UTC (rev 204940)
@@ -159,12 +159,12 @@
     height: 23px;
 }
 
-.timeline-ruler:not(.disabled) > .selection-drag {
+.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag {
     cursor: -webkit-grab;
     pointer-events: all;
 }
 
-.timeline-ruler:not(.disabled) > .selection-drag:active {
+.timeline-ruler:not(.disabled, .resizing-selection) > .selection-drag:active {
     cursor: -webkit-grabbing;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to