Chromium Code Reviews| Index: chrome/browser/resources/extensions/extension_commands_overlay.css |
| =================================================================== |
| --- chrome/browser/resources/extensions/extension_commands_overlay.css (revision 140271) |
| +++ chrome/browser/resources/extensions/extension_commands_overlay.css (working copy) |
| @@ -7,9 +7,39 @@ |
| } |
| .command-shortcut { |
| + border: solid 1px Gray; |
| + color: Black; |
|
Evan Stade
2012/06/05 00:20:37
I think we don't capitalize colors
|
| float: right; |
| + height: 18px; |
| + 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
|
| + min-width: 150px; |
| + outline: none; |
| + padding: 4px 0 1px 4px; |
| } |
| +.clearable { |
| + background: White url('chrome://theme/IDR_EXTENSION_COMMAND_CLOSE') |
| + no-repeat right; |
| +} |
| + |
| +.capturing { |
| + background: rgb(243, 244, 255); |
| + border: solid 1px rgb(140, 147, 255); |
| + color: Gray; |
| +} |
| + |
| +.contains-chars { |
| + 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
|
| +} |
| + |
| .inactive-keybinding { |
| color: Gray; |
| } |
| + |
| +.left-column { |
| + width: 200px; |
| +} |
| + |
| +.right-column { |
| + width: 170px; |
| +} |