Skip to content

Commit

Permalink
Merge pull request mozilla-b2g#7411 from davidflanagan/bug821554
Browse files Browse the repository at this point in the history
Bug 821554 - make all app window transitions twice as fast
  • Loading branch information
vingtetun committed Jan 10, 2013
2 parents 08e3c4e + 0ae3d24 commit 7cecab8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions apps/system/style/system/system.css
Expand Up @@ -273,7 +273,7 @@ body {
}

#windows > iframe.appWindow.opening {
transition: transform 0.5s ease, opacity 0.3s ease;
transition: transform 0.25s ease, opacity 0.15s ease;
}

#windows.slow-transition > iframe.appWindow.opening {
Expand All @@ -284,7 +284,7 @@ body {
#screen.cards-view > #windows > iframe.appWindow.closing,
#screen.switch-app > #windows > iframe.appWindow.opening,
#screen.switch-app > #windows > iframe.appWindow.closing {
transition: transform 0.5s ease;
transition: transform 0.25s ease;
visibility: inherit;
opacity: 1;
}
Expand All @@ -302,7 +302,7 @@ body {

#screen.switch-app > #windows > iframe.appWindow.opening-switching {
transform: scale(0.6);
transition: transform 0.5s ease;
transition: transform 0.25s ease;
visibility: inherit;
opacity: 1;
}
Expand All @@ -313,7 +313,7 @@ body {

#screen.switch-app > #windows > iframe.appWindow.closing-card {
transform: translateX(-70%) scale(0.6);
transition: transform 0.5s ease;
transition: transform 0.25s ease;
visibility: inherit;
opacity: 1;
}
Expand All @@ -323,7 +323,7 @@ body {
}

#windows > iframe.appWindow.closing {
transition: transform 0.5s ease, opacity 0.3s ease 0.2s;
transition: transform 0.25s ease, opacity 0.15s ease 0.1s;
}

#windows.slow-transition > iframe.appWindow.closing {
Expand All @@ -333,7 +333,7 @@ body {
#windows > iframe.appWindow.inlineActivity,
#windows > iframe.appWindow.hideBottom {
transform: translateY(100%);
transition: transform 0.5s ease, visibility 0.5s ease;
transition: transform 0.25s ease, visibility 0.25s ease;
}

#windows.slow-transition > iframe.appWindow.inlineActivity,
Expand All @@ -342,13 +342,13 @@ body {
}

#windows > iframe.appWindow.back {
transition: transform 0.5s ease, visibility 0.5s ease;
transition: transform 0.25s ease, visibility 0.25s ease;
transform: scale(0.86);
}

#windows > iframe.appWindow.restored {
transform: none;
transition: transform 0.5s ease;
transition: transform 0.25s ease;
}

#windows > iframe.appWindow.inlineActivity.active {
Expand All @@ -373,14 +373,14 @@ body {
}

#windowSprite.inline-activity-opening {
transition: transform 0.5s ease;
transition: transform 0.25s ease;
transform: translateY(0);
opacity: 1;
visibility: visible;
}

#windowSprite.inline-activity-opened {
transition: opacity 0.3s ease;
transition: opacity 0.15s ease;

transform: translateY(0);
opacity: 0;
Expand All @@ -396,7 +396,7 @@ body {
}

#windowSprite.opening {
transition: transform 0.5s ease, opacity 0.3s ease;
transition: transform 0.25s ease, opacity 0.15s ease;

transform: scale(1);
opacity: 1;
Expand All @@ -408,7 +408,7 @@ body {
}

#windowSprite.opened {
transition: opacity 0.3s ease;
transition: opacity 0.15s ease;

transform: scale(1);
opacity: 0;
Expand All @@ -424,15 +424,15 @@ body {
}

#windowSprite.closing {
transition: opacity 0.1s ease;
transition: opacity 0.05s ease;

transform: scale(1);
opacity: 1;
visibility: visible;
}

#windowSprite.closed {
transition: transform 0.5s ease, opacity 0.3s ease;
transition: transform 0.25s ease, opacity 0.15s ease;

transform: scale(0.6);
opacity: 0;
Expand Down

0 comments on commit 7cecab8

Please sign in to comment.