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

Unified Diff: chrome/common/extensions/docs/examples/extensions/plugin_settings/css/rule_list.css

Issue 8396001: Add sample extension that allows setting plugin-specific content settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update docs Created 9 years, 1 month 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/common/extensions/docs/examples/extensions/plugin_settings/css/rule_list.css
diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/rule_list.css b/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/rule_list.css
new file mode 100644
index 0000000000000000000000000000000000000000..b67157badb067903ef9db50c3541b3c4b1e85dda
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/rule_list.css
@@ -0,0 +1,33 @@
+/*
+Copyright (c) 2011 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.
+*/
+
+.rule-pattern {
+ -webkit-box-flex: 1;
+ -webkit-margin-end: 10px;
+ -webkit-margin-start: 14px;
+}
+
+.rule-behavior {
+ display: inline-block;
+ width: 120px;
+}
+
+select.rule-behavior {
+ vertical-align: middle;
+}
+
+.rule-list {
+ border: 1px solid #d9d9d9;
+ border-radius: 2px;
+}
+
+.pattern-column-header {
+ -webkit-box-flex: 1;
+}
+
+.setting-column-header {
+ width: 145px;
+}

Powered by Google App Engine
This is Rietveld 408576698