OLD | NEW |
| (Empty) |
1 /* | |
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 | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 .handlers-column-headers { | |
8 display: -webkit-box; | |
9 font-size: 13px; | |
10 font-weight: bold; | |
11 } | |
12 | |
13 .handlers-type-column { | |
14 width: 100px; | |
15 -webkit-margin-end: 10px; | |
16 -webkit-margin-start: 14px; | |
17 } | |
18 | |
19 .handlers-site-column { | |
20 max-width: 180px; | |
21 } | |
22 | |
23 .handlers-site-column select { | |
24 max-width: 170px; | |
25 } | |
26 | |
27 .handlers-remove-column { | |
28 -webkit-box-flex: 1; | |
29 } | |
30 | |
31 .handlers-remove-link { | |
32 color: #555; | |
33 cursor: pointer; | |
34 opacity: 0; | |
35 padding-left: 14px; | |
36 text-decoration: underline; | |
37 -webkit-transition: 150ms opacity; | |
38 } | |
39 | |
40 div > .handlers-remove-column { | |
41 opacity: 0; | |
42 } | |
43 | |
44 div:not(.none):hover > .handlers-remove-column { | |
45 opacity: 1; | |
46 } | |
47 | |
48 #handlers { | |
49 min-height: 250px; | |
50 } | |
51 | |
52 #handler-options list { | |
53 border-radius: 2px; | |
54 border: solid 1px #D9D9D9; | |
55 margin-bottom: 10px; | |
56 margin-top: 4px; | |
57 } | |
OLD | NEW |