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

Unified Diff: chrome/browser/resources/options/language_options.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/options/language_options.css
diff --git a/chrome/browser/resources/options/language_options.css b/chrome/browser/resources/options/language_options.css
index 26cc18e31dc473322993e1e4464258e102d759a1..e34f513d2b957139e754987f7f7535a948f36354 100644
--- a/chrome/browser/resources/options/language_options.css
+++ b/chrome/browser/resources/options/language_options.css
@@ -131,7 +131,6 @@
/* Notification */
#notification {
- -webkit-transition: opacity 150ms;
background-color: hsl(52, 100%, 80%);
border: 1px solid rgb(211, 211, 211);
border-radius: 6px;
@@ -146,6 +145,7 @@
padding: 7px 15px;
pointer-events: none;
position: relative;
+ transition: opacity 150ms;
white-space: nowrap;
z-index: 1;
}
@@ -158,9 +158,9 @@
}
#notification.show {
- -webkit-transition: opacity 1s;
opacity: 1;
pointer-events: all;
+ transition: opacity 1s;
}
#notification .link {
« no previous file with comments | « chrome/browser/resources/options/handler_options.css ('k') | chrome/browser/resources/options/manage_profile_overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698