OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * 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 |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 .extension-command-list-command-item-wrapper { | 5 .extension-command-list-command-item-wrapper { |
6 margin-left: 12px; | 6 margin-left: 12px; |
7 } | 7 } |
8 | 8 |
9 .command-title { | |
10 display: inline-block; | |
11 margin-top: 1em; | |
12 } | |
13 | |
14 .command-container { | |
15 width: 450px; | |
16 } | |
17 | |
18 .command-description { | |
19 display: inline-block; | |
20 margin-top: 0.5em; | |
21 min-height: 2em; | |
22 width: 55%; | |
23 } | |
24 | |
25 .command-shortcut-container { | |
26 display: inline-block; | |
27 float: right; | |
Evan Stade
2012/06/05 21:25:52
make the parent container a flex box.
| |
28 margin-top: 0.25em; | |
29 min-height: 2em; | |
30 width: 35%; | |
31 } | |
32 | |
9 .command-shortcut { | 33 .command-shortcut { |
10 float: right; | 34 border: solid 1px #999; |
35 color: rgb(48, 57, 66); | |
36 display: inline-block; | |
37 height: 1.5em; | |
38 min-width: 12.5em; | |
39 outline: none; | |
40 padding: 4px 0 1px 4px; | |
41 } | |
42 | |
43 .clearable { | |
44 background: white url('chrome://theme/IDR_EXTENSION_COMMAND_CLOSE') | |
45 no-repeat right; | |
46 } | |
47 | |
48 .capturing { | |
49 background: rgb(243, 244, 255); | |
50 border: solid 1px rgb(140, 147, 255); | |
51 color: #999; | |
52 } | |
53 | |
54 .contains-chars { | |
55 color: rgb(48, 57, 66); | |
11 } | 56 } |
12 | 57 |
13 .inactive-keybinding { | 58 .inactive-keybinding { |
14 color: Gray; | 59 color: #999; |
15 } | 60 } |
OLD | NEW |