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

Side by Side Diff: chrome/browser/resources/options/extension_settings.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: reverting change to 1.8s -> 1800ms in print_preview.css 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 /* 1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 .details-view { 7 .details-view {
8 -webkit-padding-end: 10px; 8 -webkit-padding-end: 10px;
9 } 9 }
10 10
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 background-position: center top; 164 background-position: center top;
165 position: absolute; 165 position: absolute;
166 left: 12px; 166 left: 12px;
167 top: 25px; 167 top: 25px;
168 width: 6px; 168 width: 6px;
169 height: 16px; 169 height: 16px;
170 opacity: .25; 170 opacity: .25;
171 } 171 }
172 172
173 .extension-zippy-collapsed { 173 .extension-zippy-collapsed {
174 -webkit-transition: -webkit-transform .1s; 174 -webkit-transition: -webkit-transform 100ms;
175 -webkit-transform: rotate(0deg); 175 -webkit-transform: rotate(0deg);
176 } 176 }
177 177
178 .extension-zippy-collapsed:hover { 178 .extension-zippy-collapsed:hover {
179 opacity: .5; 179 opacity: .5;
180 -webkit-transform: rotate(5deg); 180 -webkit-transform: rotate(5deg);
181 -webkit-transition: -webkit-transform .1s, opacity .1s; 181 -webkit-transition: -webkit-transform 100ms, opacity 100ms;
182 } 182 }
183 183
184 .extension-zippy-expanded { 184 .extension-zippy-expanded {
185 -webkit-transition: -webkit-transform .1s; 185 -webkit-transition: -webkit-transform 100ms;
186 -webkit-transform: rotate(90deg); 186 -webkit-transform: rotate(90deg);
187 } 187 }
188 188
189 .extension-zippy-expanded:hover { 189 .extension-zippy-expanded:hover {
190 -webkit-transition: -webkit-transform .1s; 190 -webkit-transition: -webkit-transform 100ms;
191 -webkit-transform: rotate(85deg); 191 -webkit-transform: rotate(85deg);
192 } 192 }
193 193
194 .extension-enabling { 194 .extension-enabling {
195 position: relative; 195 position: relative;
196 top: 3px; 196 top: 3px;
197 } 197 }
198 198
199 .extension-enabling-label { 199 .extension-enabling-label {
200 color: black; 200 color: black;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 font-size: 15px; 265 font-size: 15px;
266 -webkit-padding-start: 10px; 266 -webkit-padding-start: 10px;
267 } 267 }
268 268
269 /* Support full keyboard accessibility without making things ugly 269 /* Support full keyboard accessibility without making things ugly
270 for users who click, by hiding some focus outlines when the user 270 for users who click, by hiding some focus outlines when the user
271 clicks anywhere, but showing them when the user presses any key. */ 271 clicks anywhere, but showing them when the user presses any key. */
272 body.hide-some-focus-outlines .extension-zippy-container { 272 body.hide-some-focus-outlines .extension-zippy-container {
273 outline: none; 273 outline: none;
274 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698