Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2505)

Unified Diff: chrome/browser/resources/components.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/components.css
diff --git a/chrome/browser/resources/components.css b/chrome/browser/resources/components.css
index 3daafe617c918e181b22aa9d674da9efa7ed54a7..c02403c420c3ec9a19d0cb5a38ee2ca60f7c0d1c 100644
--- a/chrome/browser/resources/components.css
+++ b/chrome/browser/resources/components.css
@@ -104,9 +104,9 @@ body.hide-tmi-mode-initial .show-in-tmi-mode {
}
body.hide-tmi-mode .show-in-tmi-mode {
- -webkit-transition: all 100ms ease-out;
height: 0 !important;
opacity: 0;
+ transition: all 100ms ease-out;
}
body.show-tmi-mode-initial .show-in-tmi-mode {
@@ -114,8 +114,8 @@ body.show-tmi-mode-initial .show-in-tmi-mode {
}
body.show-tmi-mode .show-in-tmi-mode {
- -webkit-transition: all 100ms ease-in;
opacity: 1;
+ transition: all 100ms ease-in;
}
.wbox-tmi-mode {

Powered by Google App Engine
This is Rietveld 408576698