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

Unified Diff: ui/login/account_picker/user_pod_row.css

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: sort 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: ui/login/account_picker/user_pod_row.css
diff --git a/ui/login/account_picker/user_pod_row.css b/ui/login/account_picker/user_pod_row.css
index f4bf5d6573b3f196aa6c1aaf05ab766bf6210c35..25ff066bf7cce7b355a77d2eeb97e78509d5aa24 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -295,8 +295,7 @@ html[dir=rtl] .main-pane {
}
.custom-icon.faded {
- -webkit-transition: opacity 200ms ease-in-out,
- visibility 200ms ease-in-out;
+ transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}
.custom-icon-hardlocked {
@@ -391,11 +390,11 @@ html[dir=rtl] .main-pane {
}
.custom-icon-spinner {
- -webkit-animation: easy-unlock-spinner-animation 2s steps(45) infinite;
+ animation: easy-unlock-spinner-animation 2s steps(45) infinite;
background-image: url(chrome://theme/IDR_EASY_UNLOCK_SPINNER);
}
-@-webkit-keyframes easy-unlock-spinner-animation {
+@keyframes easy-unlock-spinner-animation {
from { background-position: 0 }
to { background-position: -1215px }
}
@@ -432,9 +431,9 @@ html[dir=rtl] .main-pane {
.pod[auth-type='onlineSignIn'] .reauth-hint-container {
display: flex;
+ justify-content: center;
margin-top: 8px;
width: 100%;
- justify-content: center;
}
.reauth-hint-container .reauth-warning {
@@ -953,10 +952,10 @@ html[dir=rtl] .expanded-pane-contents {
/* Animations for the animated ellipsis: */
.animated-ellipsis-component0 {
- -webkit-animation: ellipsis-component0 1.5s infinite;
+ animation: ellipsis-component0 1.5s infinite;
}
-@-webkit-keyframes ellipsis-component0 {
+@keyframes ellipsis-component0 {
0% { opacity: 0; }
25% { opacity: 1; }
50% { opacity: 1; }
@@ -965,10 +964,10 @@ html[dir=rtl] .expanded-pane-contents {
}
.animated-ellipsis-component1 {
- -webkit-animation: ellipsis-component1 1.5s infinite;
+ animation: ellipsis-component1 1.5s infinite;
}
-@-webkit-keyframes ellipsis-component1 {
+@keyframes ellipsis-component1 {
0% { opacity: 0; }
25% { opacity: 0; }
50% { opacity: 1; }
@@ -977,10 +976,10 @@ html[dir=rtl] .expanded-pane-contents {
}
.animated-ellipsis-component2 {
- -webkit-animation: ellipsis-component2 1.5s infinite;
+ animation: ellipsis-component2 1.5s infinite;
}
-@-webkit-keyframes ellipsis-component2 {
+@keyframes ellipsis-component2 {
0% { opacity: 0; }
25% { opacity: 0; }
50% { opacity: 0; }

Powered by Google App Engine
This is Rietveld 408576698