Title: [195519] trunk/Source/WebInspectorUI
Revision
195519
Author
[email protected]
Date
2016-01-24 16:58:58 -0800 (Sun, 24 Jan 2016)

Log Message

Web Inspector: Highlight timeline range handles on hover
https://bugs.webkit.org/show_bug.cgi?id=153395
<rdar://problem/24312364>

Reviewed by Timothy Hatcher.

* UserInterface/Views/TimelineRuler.css:
(.timeline-ruler > .selection-handle.clamped):
Gardening. No need to repeat "1px solid".

(.timeline-ruler > .selection-handle:hover, .timeline-ruler > .selection-handle:active):
":active" pseudo selector is needed to keep the handle highligted while it's being dragged
regardress if the mouse cursor is hovering over it or not.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (195518 => 195519)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-01-24 23:43:34 UTC (rev 195518)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-01-25 00:58:58 UTC (rev 195519)
@@ -1,3 +1,19 @@
+2016-01-24  Nikita Vasilyev  <[email protected]>
+
+        Web Inspector: Highlight timeline range handles on hover
+        https://bugs.webkit.org/show_bug.cgi?id=153395
+        <rdar://problem/24312364>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/TimelineRuler.css:
+        (.timeline-ruler > .selection-handle.clamped):
+        Gardening. No need to repeat "1px solid".
+
+        (.timeline-ruler > .selection-handle:hover, .timeline-ruler > .selection-handle:active):
+        ":active" pseudo selector is needed to keep the handle highligted while it's being dragged
+        regardress if the mouse cursor is hovering over it or not.
+
 2016-01-23  Aaron Chu  <[email protected]>
 
         Web Inspector: AXI: node-link-list should be collapsible

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css (195518 => 195519)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2016-01-24 23:43:34 UTC (rev 195518)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2016-01-25 00:58:58 UTC (rev 195519)
@@ -183,10 +183,16 @@
 }
 
 .timeline-ruler > .selection-handle.clamped {
-    border: 1px solid hsl(0, 0%, 64%);
+    border-color: hsl(0, 0%, 64%);
     background-color: white;
 }
 
+.timeline-ruler > .selection-handle:hover,
+.timeline-ruler > .selection-handle:active {
+    background-color: hsl(0, 0%, 50%);
+    border-color: white;
+}
+
 .timeline-ruler.both-handles-clamped > .selection-handle {
     z-index: 14;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to