Changeset 146918 in webkit


Ignore:
Timestamp:
Mar 26, 2013, 12:30:39 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

250ms -> 100ms

Patch by Dmitry Zvorygin <zvorygin@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 > *):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r146912 r146918  
     12013-03-26  Dmitry Zvorygin  <zvorygin@chromium.org>
     2
     3        Web Inspector: Faster drawer animation.
     4        https://bugs.webkit.org/show_bug.cgi?id=113330
     5
     6        250ms -> 100ms
     7
     8        Reviewed by Pavel Feldman.
     9
     10        * inspector/front-end/inspector.css:
     11        (.animate #main):
     12        (.animate #floating-status-bar-container):
     13        (.animate #drawer):
     14        (.animate #bottom-status-bar-container > *):
     15
    1162013-03-26  Brent Fulgham  <bfulgham@webkit.org>
    217
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r146905 r146918  
    604604
    605605.animate #main {
    606     -webkit-transition: bottom 250ms linear;
     606    -webkit-transition: bottom 100ms linear;
    607607}
    608608
     
    676676
    677677.animate #floating-status-bar-container {
    678     -webkit-transition: padding 250ms linear;
     678    -webkit-transition: padding 100ms linear;
    679679}
    680680
     
    924924
    925925.animate #drawer {
    926     -webkit-transition: height 250ms linear;
     926    -webkit-transition: height 100ms linear;
    927927}
    928928
     
    25402540
    25412541.animate #bottom-status-bar-container > * {
    2542     -webkit-transition: opacity 250ms linear;
     2542    -webkit-transition: opacity 100ms linear;
    25432543}
    25442544
Note: See TracChangeset for help on using the changeset viewer.