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

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

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/options/cookies_view.css
diff --git a/chrome/browser/resources/options/cookies_view.css b/chrome/browser/resources/options/cookies_view.css
index 2377e57b1bf7a40ab9afa5df217db1ad7cd1401c..c435819f15e268110c47726a22f33cd1765530a9 100644
--- a/chrome/browser/resources/options/cookies_view.css
+++ b/chrome/browser/resources/options/cookies_view.css
@@ -57,7 +57,7 @@
/* Enable animating the height of items. */
list.cookie-list .deletable-item {
- -webkit-transition: height 150ms ease-in-out;
+ transition: height 150ms ease-in-out;
}
/* Disable webkit-box display. */
@@ -115,17 +115,17 @@ list.cookie-list > .deletable-item[selected] .cookie-data {
/* Notice that the margin and padding match up with those above. */
-webkit-margin-start: 14em;
-webkit-padding-start: 7px;
- -webkit-transition: 150ms ease-in-out;
display: none;
height: 0;
opacity: 0;
+ transition: 150ms ease-in-out;
/* Make the cookie items wrap correctly. */
white-space: normal;
}
.measure-items .cookie-items {
- -webkit-transition: none;
height: auto;
+ transition: none;
visibility: hidden;
}
« no previous file with comments | « chrome/browser/resources/options/chromeos/internet_detail.css ('k') | chrome/browser/resources/options/handler_options.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698