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

Unified 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 side-by-side diff with in-line comments
Download patch
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)
@@ -6,10 +6,55 @@
margin-left: 12px;
}
-.command-shortcut {
+.command-title {
+ display: inline-block;
+ margin-top: 1em;
+}
+
+.command-container {
+ width: 450px;
+}
+
+.command-description {
+ display: inline-block;
+ margin-top: 0.5em;
+ min-height: 2em;
+ width: 55%;
+}
+
+.command-shortcut-container {
+ display: inline-block;
float: right;
Evan Stade 2012/06/05 21:25:52 make the parent container a flex box.
+ margin-top: 0.25em;
+ min-height: 2em;
+ width: 35%;
}
+.command-shortcut {
+ border: solid 1px #999;
+ color: rgb(48, 57, 66);
+ display: inline-block;
+ height: 1.5em;
+ min-width: 12.5em;
+ 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: #999;
+}
+
+.contains-chars {
+ color: rgb(48, 57, 66);
+}
+
.inactive-keybinding {
- color: Gray;
+ color: #999;
}

Powered by Google App Engine
This is Rietveld 408576698