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

Unified Diff: chrome/browser/resources/chromeos/login/screen_error_message.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase 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/screen_error_message.css
diff --git a/chrome/browser/resources/chromeos/login/screen_error_message.css b/chrome/browser/resources/chromeos/login/screen_error_message.css
index 986a4a905c260b4bcc4621599206c327d3eebc31..b85da66800e134f26a18ac701be7e8302fbb87c8 100644
--- a/chrome/browser/resources/chromeos/login/screen_error_message.css
+++ b/chrome/browser/resources/chromeos/login/screen_error_message.css
@@ -47,13 +47,13 @@
}
.error-header {
- /* A hack used to prevent aliasing on High-DPI displays. */
- -webkit-transform: scale3d(1,1,1);
background-clip: padding-box;
background-color: white;
border-bottom: 1px solid rgb(238,238,238);
padding: 71px 20px 50px;
text-align: center;
+ /* A hack used to prevent aliasing on High-DPI displays. */
+ transform: scale3d(1,1,1);
}
.error-icon {
@@ -112,7 +112,7 @@
display: block;
}
-@-webkit-keyframes connecting-indicator-ellipsis {
+@keyframes connecting-indicator-ellipsis {
0% {
opacity: 0;
}
@@ -128,15 +128,15 @@
}
#connecting-indicator-ellipsis-1 {
- -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite;
+ animation: connecting-indicator-ellipsis 3s 0 infinite;
}
#connecting-indicator-ellipsis-2 {
- -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite;
+ animation: connecting-indicator-ellipsis 3s 500ms infinite;
}
#connecting-indicator-ellipsis-3 {
- -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite;
+ animation: connecting-indicator-ellipsis 3s 1s infinite;
}
#error-navigation {

Powered by Google App Engine
This is Rietveld 408576698