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

Side by Side Diff: chrome/browser/resources/sync_promo.css

Issue 8680003: Clean-up: Change chrome/browser's CSS time units from s to ms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html { 6 html {
7 font-family: segoe ui, arial, helvetica, sans-serif; 7 font-family: segoe ui, arial, helvetica, sans-serif;
8 font-size: 13px; 8 font-size: 13px;
9 height: 100%; 9 height: 100%;
10 } 10 }
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 font-size: 13px; 112 font-size: 13px;
113 line-height: 20px; 113 line-height: 20px;
114 } 114 }
115 115
116 #promo-info-pane { 116 #promo-info-pane {
117 height: 186px; 117 height: 186px;
118 position: relative; 118 position: relative;
119 } 119 }
120 120
121 #promo-info-pane > * { 121 #promo-info-pane > * {
122 -webkit-transition: opacity .2s linear; 122 -webkit-transition: opacity 200ms linear;
123 opacity: 1; 123 opacity: 1;
124 position: absolute; 124 position: absolute;
125 } 125 }
126 126
127 #promo-info-pane > [hidden] { 127 #promo-info-pane > [hidden] {
128 display: inline-block; /* Override default user-agent styles. */ 128 display: inline-block; /* Override default user-agent styles. */
129 opacity: 0; 129 opacity: 0;
130 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698