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

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

Issue 2688353003: Remove webkit prefixes for transform and perspective in chrome/ styles (Closed)
Patch Set: 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/history/history.css
diff --git a/chrome/browser/resources/history/history.css b/chrome/browser/resources/history/history.css
index 1d4da44ec7672f5e199aa365134f0080816ce637..b64b6b0c2457dcc67ee2a8320cb27dce76571cc3 100644
--- a/chrome/browser/resources/history/history.css
+++ b/chrome/browser/resources/history/history.css
@@ -120,11 +120,11 @@ html[dir='rtl'] #range-next {
html[dir='rtl'] #range-next,
#range-previous {
- -webkit-transform: scalex(-1);
+ transform: scalex(-1);
}
html[dir='rtl'] #range-previous {
- -webkit-transform: scaleX(1);
+ transform: scaleX(1);
}
#range-today {
@@ -480,8 +480,7 @@ html[dir='rtl'] .number-visits {
}
.site-domain-arrow {
- -webkit-transform: rotate(0);
- -webkit-transition: -webkit-transform 300ms linear;
+ -webkit-transition: transform 300ms linear;
background: url(../disclosure_triangle_small.png) no-repeat;
background-position: 5px 5px;
color: rgb(143, 143, 143);
@@ -489,15 +488,16 @@ html[dir='rtl'] .number-visits {
margin-right: 2px;
opacity: 0.58;
text-align: center;
+ transform: rotate(0);
width: 21px;
}
html[dir='rtl'] .site-domain-arrow {
- -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
}
html .expand .site-domain-arrow {
- -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
}
.entry .bookmark-section {

Powered by Google App Engine
This is Rietveld 408576698