Title: [146918] trunk/Source/WebCore
Revision
146918
Author
commit-qu...@webkit.org
Date
2013-03-26 12:30:39 -0700 (Tue, 26 Mar 2013)

Log Message

Web Inspector: Faster drawer animation.
https://bugs.webkit.org/show_bug.cgi?id=113330

250ms -> 100ms

Patch by Dmitry Zvorygin <zvory...@chromium.org> on 2013-03-26
Reviewed by Pavel Feldman.

* inspector/front-end/inspector.css:
(.animate #main):
(.animate #floating-status-bar-container):
(.animate #drawer):
(.animate #bottom-status-bar-container > *):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (146917 => 146918)


--- trunk/Source/WebCore/ChangeLog	2013-03-26 19:12:37 UTC (rev 146917)
+++ trunk/Source/WebCore/ChangeLog	2013-03-26 19:30:39 UTC (rev 146918)
@@ -1,3 +1,18 @@
+2013-03-26  Dmitry Zvorygin  <zvory...@chromium.org>
+
+        Web Inspector: Faster drawer animation.
+        https://bugs.webkit.org/show_bug.cgi?id=113330
+
+        250ms -> 100ms
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/inspector.css:
+        (.animate #main):
+        (.animate #floating-status-bar-container):
+        (.animate #drawer):
+        (.animate #bottom-status-bar-container > *):
+
 2013-03-26  Brent Fulgham  <bfulg...@webkit.org>
 
         [WinCairo] Unreviewed Build fix.

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (146917 => 146918)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2013-03-26 19:12:37 UTC (rev 146917)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2013-03-26 19:30:39 UTC (rev 146918)
@@ -603,7 +603,7 @@
 }
 
 .animate #main {
-    -webkit-transition: bottom 250ms linear;
+    -webkit-transition: bottom 100ms linear;
 }
 
 body.show-toolbar-icons #main {
@@ -675,7 +675,7 @@
 }
 
 .animate #floating-status-bar-container {
-    -webkit-transition: padding 250ms linear;
+    -webkit-transition: padding 100ms linear;
 }
 
 body.drawer-visible #floating-status-bar-container {
@@ -923,7 +923,7 @@
 }
 
 .animate #drawer {
-    -webkit-transition: height 250ms linear;
+    -webkit-transition: height 100ms linear;
 }
 
 #drawer-contents {
@@ -2539,7 +2539,7 @@
 }
 
 .animate #bottom-status-bar-container > * {
-    -webkit-transition: opacity 250ms linear;
+    -webkit-transition: opacity 100ms linear;
 }
 
 .search-status-bar-item {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to