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

Side by Side Diff: chrome/browser/resources/options/handler_options.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 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 .handlers-column-headers { 7 .handlers-column-headers {
8 display: -webkit-box; 8 display: -webkit-box;
9 font-size: 13px; 9 font-size: 13px;
10 font-weight: bold; 10 font-weight: bold;
(...skipping 16 matching lines...) Expand all
27 .handlers-remove-column { 27 .handlers-remove-column {
28 -webkit-box-flex: 1; 28 -webkit-box-flex: 1;
29 } 29 }
30 30
31 .handlers-remove-link { 31 .handlers-remove-link {
32 color: #555; 32 color: #555;
33 cursor: pointer; 33 cursor: pointer;
34 opacity: 0; 34 opacity: 0;
35 padding-left: 14px; 35 padding-left: 14px;
36 text-decoration: underline; 36 text-decoration: underline;
37 -webkit-transition: 0.15s opacity; 37 -webkit-transition: 150ms opacity;
38 } 38 }
39 39
40 div > .handlers-remove-column { 40 div > .handlers-remove-column {
41 opacity: 0; 41 opacity: 0;
42 } 42 }
43 43
44 div:not(.none):hover > .handlers-remove-column { 44 div:not(.none):hover > .handlers-remove-column {
45 opacity: 1; 45 opacity: 1;
46 } 46 }
47 47
48 #handlers { 48 #handlers {
49 min-height: 250px; 49 min-height: 250px;
50 } 50 }
51 51
52 #handler-options list { 52 #handler-options list {
53 border-radius: 2px; 53 border-radius: 2px;
54 border: solid 1px #D9D9D9; 54 border: solid 1px #D9D9D9;
55 margin-bottom: 10px; 55 margin-bottom: 10px;
56 margin-top: 4px; 56 margin-top: 4px;
57 } 57 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/extension_settings.css ('k') | chrome/browser/resources/options/language_options.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698