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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen.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/chromeos/login/oobe_screen.css
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen.css b/chrome/browser/resources/chromeos/login/oobe_screen.css
index 5569a69acaabaab689e930fca9a840f890a1c043..0327ddd7d9fb52262f25461abdaf3d7991c2dc09 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen.css
+++ b/chrome/browser/resources/chromeos/login/oobe_screen.css
@@ -15,9 +15,9 @@
}
.step.animated:not(.faded) {
- -webkit-transition: transform 200ms ease-in-out,
- opacity 200ms ease-in-out,
- visibility 200ms ease-in-out;
+ transition: transform 200ms ease-in-out,
+ opacity 200ms ease-in-out,
+ visibility 200ms ease-in-out;
}
.step.hidden {
@@ -122,9 +122,9 @@ html[dir=rtl] .step-controls {
#security-info a:focus,
#eula a:focus,
.step-extra-controls a:focus {
- -webkit-transition: outline-color 200ms;
/* Note: May use 1px solid here. */
outline-color: rgb(77, 144, 254);
+ transition: outline-color 200ms;
}
.step-extra-controls > *:not(:first-child) {

Powered by Google App Engine
This is Rietveld 408576698