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

Unified Diff: chrome/browser/resources/local_ntp/local_ntp.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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/local_ntp/local_ntp.css
diff --git a/chrome/browser/resources/local_ntp/local_ntp.css b/chrome/browser/resources/local_ntp/local_ntp.css
index 184560e9cc32f394350cf6b942a61f09d3d58b99..7838aa87155c7bdb00d3055c536347758b12bca6 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.css
+++ b/chrome/browser/resources/local_ntp/local_ntp.css
@@ -55,8 +55,6 @@ body.alternate-logo #logo {
}
#fakebox {
- -webkit-transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear;
background-color: #fff;
border: 1px solid rgb(185, 185, 185);
border-radius: 1px;
@@ -67,6 +65,8 @@ body.alternate-logo #logo {
line-height: 36px;
max-width: 672px;
position: relative;
+ transform: translate3d(0, 0, 0);
+ transition: transform 100ms linear, border-color 100ms linear;
/* #fakebox width (here and below) should be 2px less than #mv-tiles
to account for its border. */
width: 298px;
@@ -137,7 +137,7 @@ html[dir=rtl] #cursor {
right: 9px;
}
-@-webkit-keyframes blink {
+@keyframes blink {
0% {
opacity: 1;
}
@@ -156,7 +156,7 @@ body.fakebox-drag-focused #cursor {
}
body.fakebox-focused #cursor {
- -webkit-animation: blink 1.3s step-end infinite;
+ animation: blink 1.3s step-end infinite;
visibility: inherit;
}
@@ -276,9 +276,9 @@ html[dir=rtl] #mv-notice-x {
}
#mv-notice.mv-notice-delayed-hide {
- -webkit-transition-delay: 10s;
- -webkit-transition-property: opacity;
opacity: 0;
+ transition-delay: 10s;
+ transition-property: opacity;
}
#mv-notice.mv-notice-hide {

Powered by Google App Engine
This is Rietveld 408576698