Title: [188963] trunk/Source/WebInspectorUI
Revision
188963
Author
nvasil...@apple.com
Date
2015-08-26 03:22:22 -0700 (Wed, 26 Aug 2015)

Log Message

Web Inspector: Make DOM node attribute changes highlighting less obnoxious
https://bugs.webkit.org/show_bug.cgi?id=148050

Reviewed by Timothy Hatcher.

* UserInterface/Views/DOMTreeOutline.css:
(@keyframes node-state-changed): Change color to a light green.
(.node-state-changed): Add a slight ease-in for the animation function.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (188962 => 188963)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-08-26 10:18:46 UTC (rev 188962)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-08-26 10:22:22 UTC (rev 188963)
@@ -1,3 +1,14 @@
+2015-08-26  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Make DOM node attribute changes highlighting less obnoxious
+        https://bugs.webkit.org/show_bug.cgi?id=148050
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/DOMTreeOutline.css:
+        (@keyframes node-state-changed): Change color to a light green.
+        (.node-state-changed): Add a slight ease-in for the animation function.
+
 2015-08-26  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Add Refresh button to Cookie Content View

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css (188962 => 188963)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css	2015-08-26 10:18:46 UTC (rev 188962)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css	2015-08-26 10:22:22 UTC (rev 188963)
@@ -167,10 +167,9 @@
 }
 
 @keyframes node-state-changed {
-    from { background-color: hsla(212, 92%, 54%, 0.5); }
+    from { background-color: hsla(83, 100%, 48%, 0.4); }
 }
 
 .node-state-changed {
-    animation: node-state-changed 1s cubic-bezier(0, 0, 0.25, 1);
-    border-radius: 3px;
+    animation: node-state-changed 1s cubic-bezier(0.25, 0, 0.25, 1);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to