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

Unified Diff: chrome/common/extensions/docs/examples/extensions/plugin_settings/css/plugin_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: '' Created 9 years, 2 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/common/extensions/docs/examples/extensions/plugin_settings/css/plugin_list.css
diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/plugin_list.css b/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/plugin_list.css
new file mode 100644
index 0000000000000000000000000000000000000000..b0c4537c8c1736960d53d6bd97d8d190914a0de0
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/plugin_list.css
@@ -0,0 +1,67 @@
+/*
+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.
+*/
+
+body {
+ font-family: Helvetica, sans-serif;
+ background-color: white;
+ color: black;
+ margin: 10px;
+}
+
+.plugin-name {
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ font-weight: bold;
+}
+
+.plugin-description {
+ display: inline-block;
+ -webkit-padding-start: 7px;
+ width: auto;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ font-size: 95%;
+}
+
+.plugin-details {
+ -webkit-transition: height .5s ease-in-out;
+ background: #f5f8f8;
+ border: 1px solid #b2b2b2;
+ border-radius: 5px;
+ padding: 5px;
+ height: 0;
+ opacity: 0;
+}
+
+.plugin-measure-details .plugin-details {
+ /*-webkit-transition: none;*/
+ height: auto;
+ visibility: hidden;
+}
+
+li.plugin-show-details {
+ height: auto;
+}
+
+.plugin-show-details .plugin-description {
+ height: auto;
+}
+
+.plugin-show-details .plugin-details {
+ opacity: 1;
+ height: auto;
+}
+
+.column-headers {
+ -webkit-margin-start: 17px;
+ display: -webkit-box;
+ margin-top: 17px;
+}
+
+.column-headers > div {
+ font-weight: bold;
+}

Powered by Google App Engine
This is Rietveld 408576698