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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years, 1 month 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/plugins.css
diff --git a/chrome/browser/resources/plugins.css b/chrome/browser/resources/plugins.css
index f721353e6afe21219d11aaa1853c506efe360488..927a5c04a12bd7b54ad60af638f4762e28e44a4a 100644
--- a/chrome/browser/resources/plugins.css
+++ b/chrome/browser/resources/plugins.css
@@ -99,9 +99,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 {
@@ -109,8 +109,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