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

Unified Diff: chrome/browser/resources/history/history.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
« no previous file with comments | « chrome/browser/resources/help/help_page.js ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/history/history.css
diff --git a/chrome/browser/resources/history/history.css b/chrome/browser/resources/history/history.css
index b64b6b0c2457dcc67ee2a8320cb27dce76571cc3..b45eda2ee8eb22f55494b7d0e7651a03caad95f7 100644
--- a/chrome/browser/resources/history/history.css
+++ b/chrome/browser/resources/history/history.css
@@ -287,11 +287,11 @@ html[dir='rtl'] #timeframe-controls input[type='radio']:first-of-type {
}
.site-results {
- -webkit-transition: height 350ms ease-in-out;
clear: left;
margin: 0;
overflow: hidden;
padding: 0;
+ transition: height 350ms ease-in-out;
}
.site-results.grouped {
@@ -380,13 +380,13 @@ html[dir='rtl'] .number-visits {
}
.filter-status > div {
- flex: 0 0 auto;
- -webkit-transition: background-color 150ms;
border-radius: 3px;
display: none;
+ flex: 0 0 auto;
font-size: 11px;
height: 14px;
line-height: 12px;
+ transition: background-color 150ms;
white-space: nowrap;
}
@@ -480,7 +480,6 @@ html[dir='rtl'] .number-visits {
}
.site-domain-arrow {
- -webkit-transition: transform 300ms linear;
background: url(../disclosure_triangle_small.png) no-repeat;
background-position: 5px 5px;
color: rgb(143, 143, 143);
@@ -489,6 +488,7 @@ html[dir='rtl'] .number-visits {
opacity: 0.58;
text-align: center;
transform: rotate(0);
+ transition: transform 300ms linear;
width: 21px;
}
@@ -541,8 +541,8 @@ html .expand .site-domain-arrow {
}
.fade-out {
- -webkit-transition: opacity 200ms;
opacity: 0;
+ transition: opacity 200ms;
}
button.menu-button.drop-down {
« no previous file with comments | « chrome/browser/resources/help/help_page.js ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698