OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |