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

Side by Side Diff: chrome/browser/resources/extensions/extension_commands_overlay.css

Issue 10514003: Config UI for Extension Commands (part 1). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 /* 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 -webkit-box-orient: horizontal;
16 display: -webkit-box;
17 width: 450px;
18 }
19
20 .command-description {
21 -webkit-box-flex: 1;
22 display: -webkit-box;
23 margin-top: 0.5em;
24 min-height: 2em;
25 }
26
27 .command-shortcut-container {
28 display: -webkit-box;
29 margin-top: 0.25em;
30 min-height: 2em;
31 }
32
9 .command-shortcut { 33 .command-shortcut {
10 float: right; 34 border: solid 1px #BFBFBF;
35 border-radius: 2px;
36 color: rgb(48, 57, 66);
37 display: inline-block;
38 height: 1.4em;
39 min-width: 12.5em;
40 outline: none;
41 padding: 3px 0 1px 4px;
42 }
43
44 .clearable {
45 background: white url('chrome://theme/IDR_EXTENSION_COMMAND_CLOSE')
46 no-repeat right;
47 }
48
49 .capturing {
50 background: rgb(243, 244, 255);
51 border: solid 1px rgb(140, 147, 255);
52 color: #999;
53 }
54
55 .contains-chars {
56 color: rgb(48, 57, 66);
11 } 57 }
12 58
13 .inactive-keybinding { 59 .inactive-keybinding {
14 color: Gray; 60 color: #999;
15 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698