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

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

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: bluetooth_internals/snackbar.js 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
« no previous file with comments | « ui/login/account_picker/screen_account_picker.js ('k') | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0dff606ca1df5b12c3c53690654c973671933549..64e25f6e2491e5c7569842b4ff45c68a2370b510 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -303,8 +303,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 {
@@ -399,11 +398,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 }
}
@@ -440,9 +439,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 {
@@ -961,10 +960,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; }
@@ -973,10 +972,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; }
@@ -985,10 +984,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; }
« no previous file with comments | « ui/login/account_picker/screen_account_picker.js ('k') | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698