summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/extensions/extension_commands_overlay.css
blob: 13624174b8e51469ac7871ea432c1553bce5a3bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

.extension-command-list-command-item-wrapper {
  margin-left: 12px;
}

.command-title {
  display: inline-block;
  margin-top: 1em;
}

.command-container {
  -webkit-box-orient: horizontal;
  display: -webkit-box;
  width: 450px;
}

.command-description {
  -webkit-box-flex: 1;
  display: -webkit-box;
  margin-top: 0.5em;
  min-height: 2em;
}

.command-shortcut-container {
  display: -webkit-box;
  margin-top: 0.25em;
  min-height: 2em;
}

.command-shortcut {
  border: solid 1px #BFBFBF;
  border-radius: 2px;
  color: rgb(48, 57, 66);
  display: inline-block;
  height: 1.4em;
  min-width: 12.5em;
  padding: 3px 0 1px 4px;
}

.command-shortcut-text {
  display: inline-block;
  height: 1.4em;
  min-width: 11em;
  outline: none;
}

.clearable {
  background: white;
}

.command-clear {
  float: right;
  margin-top: 1px;
}

.capturing {
  background: rgb(243, 244, 255);
  border: solid 1px rgb(140, 147, 255);
  color: #999;
}

.contains-chars {
  color: rgb(48, 57, 66);
}

.inactive-keybinding {
  color: #999;
}