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

Side by Side Diff: chrome/browser/resources/options2/handler_options.css

Issue 9309116: [Clean up] Fix style guide nits in chrome/browser/resources/options2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /* Copyright (c) 2012 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 2 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 3 * found in the LICENSE file. */
5 */
6 4
7 .handlers-column-headers { 5 .handlers-column-headers {
8 display: -webkit-box; 6 display: -webkit-box;
9 font-size: 13px; 7 font-size: 13px;
10 font-weight: bold; 8 font-weight: bold;
11 } 9 }
12 10
13 .handlers-type-column { 11 .handlers-type-column {
14 width: 100px;
15 -webkit-margin-end: 10px; 12 -webkit-margin-end: 10px;
16 -webkit-margin-start: 14px; 13 -webkit-margin-start: 14px;
14 width: 100px;
17 } 15 }
18 16
19 .handlers-site-column { 17 .handlers-site-column {
20 max-width: 180px; 18 max-width: 180px;
21 } 19 }
22 20
23 .handlers-site-column select { 21 .handlers-site-column select {
24 max-width: 170px; 22 max-width: 170px;
25 } 23 }
26 24
27 .handlers-remove-column { 25 .handlers-remove-column {
28 -webkit-box-flex: 1; 26 -webkit-box-flex: 1;
29 } 27 }
30 28
31 .handlers-remove-link { 29 .handlers-remove-link {
30 -webkit-transition: 150ms opacity;
32 color: #555; 31 color: #555;
33 cursor: pointer; 32 cursor: pointer;
34 opacity: 0; 33 opacity: 0;
35 padding-left: 14px; 34 padding-left: 14px;
36 text-decoration: underline; 35 text-decoration: underline;
37 -webkit-transition: 150ms opacity;
38 } 36 }
39 37
40 div > .handlers-remove-column { 38 div > .handlers-remove-column {
41 opacity: 0; 39 opacity: 0;
42 } 40 }
43 41
44 div:not(.none):hover > .handlers-remove-column { 42 div:not(.none):hover > .handlers-remove-column {
45 opacity: 1; 43 opacity: 1;
46 } 44 }
47 45
48 #handlers { 46 #handlers {
49 min-height: 250px; 47 min-height: 250px;
50 } 48 }
51 49
52 #handler-options list { 50 #handler-options list {
51 border: solid 1px #D9D9D9;
53 border-radius: 2px; 52 border-radius: 2px;
54 border: solid 1px #D9D9D9;
55 margin-bottom: 10px; 53 margin-bottom: 10px;
56 margin-top: 4px; 54 margin-top: 4px;
57 } 55 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/font_settings.css ('k') | chrome/browser/resources/options2/import_data_overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698