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

Unified Diff: chrome/browser/resources/options2/web_intents_defaults.css

Issue 10808092: Add settings UI for managing defaults (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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/options2/web_intents_defaults.css
diff --git a/chrome/browser/resources/options2/web_intents_defaults.css b/chrome/browser/resources/options2/web_intents_defaults.css
new file mode 100644
index 0000000000000000000000000000000000000000..d52fc5a837dc92301db98ba127968397a90a21df
--- /dev/null
+++ b/chrome/browser/resources/options2/web_intents_defaults.css
@@ -0,0 +1,43 @@
+/* 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. */
+
+#services-list > div.deletable-item {
+ /* override the fixed 32px height of standard row. */
+ height: auto;
+}
+
+.intents-column-headers {
+ display: -webkit-box;
+ font-size: 13px;
+ font-weight: bold;
+}
+
+.intents-row {
+ margin: 5px;
+}
+
+.intents-preferred-service {
+ font-weight: bold;
+}
+
+.intents-service-matching-criteria {
+ color: #555;
+ font-size: .85em;
+}
+
+.intents-remove-column {
+ -webkit-box-flex: 1;
+}
+
+div > .intents-remove-column {
+ opacity: 0;
+}
+
+div:not(.none):hover > .intents-remove-column {
+ opacity: 1;
+}
+
+#intents {
+ min-height: 250px;
+}

Powered by Google App Engine
This is Rietveld 408576698