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

Unified Diff: chrome/browser/resources/options/browser_options.css

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (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/options/browser_options.css
diff --git a/chrome/browser/resources/options/browser_options.css b/chrome/browser/resources/options/browser_options.css
index 281d3bd9bee997a693bd665324c2e9a0e7ea4dfc..7e79825934211efb1f7efe08a7a04b52b36a95d4 100644
--- a/chrome/browser/resources/options/browser_options.css
+++ b/chrome/browser/resources/options/browser_options.css
@@ -235,7 +235,7 @@ list:not([disabled]) > .network-group[selected] {
width: 100%;
}
-@-webkit-keyframes connecting-animation {
+@keyframes connecting-animation {
0% {
background-position: 0 25%;
}
@@ -289,7 +289,7 @@ list:not([disabled]) > .network-group[selected] {
opacity: 1;
}
-@-webkit-keyframes vpn-connecting-animation {
+@keyframes vpn-connecting-animation {
from {
opacity: 1;
}
@@ -299,11 +299,11 @@ list:not([disabled]) > .network-group[selected] {
}
.network-connecting {
- -webkit-animation: connecting-animation 1s step-end infinite;
+ animation: connecting-animation 1s step-end infinite;
}
.network-vpn.network-connecting {
- -webkit-animation: vpn-connecting-animation 500ms alternate infinite;
+ animation: vpn-connecting-animation 500ms alternate infinite;
}
.network-title {
« no previous file with comments | « chrome/browser/resources/ntp4/tile_page.js ('k') | chrome/browser/resources/print_preview/print_preview.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698