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

Unified Diff: chrome/browser/resources/ntp4/nav_dot.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/ntp4/apps_page.css ('k') | chrome/browser/resources/ntp4/nav_dot.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp4/nav_dot.css
diff --git a/chrome/browser/resources/ntp4/nav_dot.css b/chrome/browser/resources/ntp4/nav_dot.css
index 52abe782ce13067b3d78ff1402d4dfd9bab0b91a..691217c943b1793ce85130ef71ce8db0603851c8 100644
--- a/chrome/browser/resources/ntp4/nav_dot.css
+++ b/chrome/browser/resources/ntp4/nav_dot.css
@@ -24,12 +24,12 @@ html.starting-up #dot-list {
.dot {
-webkit-margin-end: 10px;
-webkit-padding-start: 2px;
- -webkit-transition: -webkit-margin-end 250ms, max-width 250ms, opacity 250ms;
box-sizing: border-box;
cursor: pointer;
/* max-width: Set in new_tab.js. See measureNavDots() */
outline: none;
text-align: left;
+ transition: -webkit-margin-end 250ms, max-width 250ms, opacity 250ms;
}
.dot:last-child {
@@ -48,22 +48,22 @@ html.starting-up #dot-list {
}
.dot .selection-bar {
- -webkit-transition: border-color 200ms;
border-bottom: 5px solid;
border-color: rgba(0, 0, 0, 0.1);
height: 10px;
+ transition: border-color 200ms;
}
.dot input {
-webkit-appearance: caret;
-webkit-margin-start: 2px;
- -webkit-transition: color 200ms;
background-color: transparent;
cursor: inherit;
font: inherit;
height: auto;
margin-top: 2px;
padding: 1px 0;
+ transition: color 200ms;
width: 90%;
}
« no previous file with comments | « chrome/browser/resources/ntp4/apps_page.css ('k') | chrome/browser/resources/ntp4/nav_dot.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698