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

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)
@@ -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;
+}

Powered by Google App Engine
This is Rietveld 408576698