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-shortcut { | 9 .command-shortcut { |
10 border: solid 1px Gray; | |
11 color: Black; | |
Evan Stade
2012/06/05 00:20:37
I think we don't capitalize colors
| |
10 float: right; | 12 float: right; |
13 height: 18px; | |
14 min-height: 18px; | |
Evan Stade
2012/06/05 00:20:37
should probably be expressed in em. Also what is t
Finnur
2012/06/05 15:04:46
I don't always set font heights, but when I do I u
| |
15 min-width: 150px; | |
16 outline: none; | |
17 padding: 4px 0 1px 4px; | |
18 } | |
19 | |
20 .clearable { | |
21 background: White url('chrome://theme/IDR_EXTENSION_COMMAND_CLOSE') | |
22 no-repeat right; | |
23 } | |
24 | |
25 .capturing { | |
26 background: rgb(243, 244, 255); | |
27 border: solid 1px rgb(140, 147, 255); | |
28 color: Gray; | |
29 } | |
30 | |
31 .contains-chars { | |
32 color: Black; | |
Evan Stade
2012/06/05 00:20:37
please re-use the colors we are already using for
Finnur
2012/06/05 15:04:46
Well, firstly, this isn't actually an input text,
Evan Stade
2012/06/05 18:28:01
I don't have a problem with the UI, but I kind of
Finnur
2012/06/05 21:12:13
Hmm, I actually wasn't referring to the colors sch
| |
11 } | 33 } |
12 | 34 |
13 .inactive-keybinding { | 35 .inactive-keybinding { |
14 color: Gray; | 36 color: Gray; |
15 } | 37 } |
38 | |
39 .left-column { | |
40 width: 200px; | |
41 } | |
42 | |
43 .right-column { | |
44 width: 170px; | |
45 } | |
OLD | NEW |