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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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/chromevox/chromevox/injected/active_indicator.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
index 4db51b4e18d7066d34f557770dc2c2e77a160005..c5df3d038453218ad31c2be3c4ab52f66359ba6c 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/active_indicator.js
@@ -157,7 +157,7 @@ cvox.ActiveIndicator.STYLE =
'}' +
'.cvox_indicator_region {' +
' opacity: 0 !important;' +
- ' -webkit-transition: opacity 1s !important;' +
+ ' transition: opacity 1s !important;' +
'}' +
'.cvox_indicator_visible {' +
' opacity: 1 !important;' +
@@ -168,13 +168,13 @@ cvox.ActiveIndicator.STYLE =
' border-radius: 6px !important;' +
' margin: 0px !important;' +
' padding: 0px !important;' +
- ' -webkit-transition: none !important;' +
+ ' transition: none !important;' +
'}' +
'.cvox_indicator_animate_normal .cvox_indicator_region * {' +
- ' -webkit-transition: all 0.3s !important;' +
+ ' transition: all 0.3s !important;' +
'}' +
'.cvox_indicator_animate_quick .cvox_indicator_region * {' +
- ' -webkit-transition: all 0.1s !important;' +
+ ' transition: all 0.1s !important;' +
'}' +
'.cvox_indicator_top {' +
' border-radius: inherit inherit 0 0 !important;' +

Powered by Google App Engine
This is Rietveld 408576698