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

Unified Diff: chrome/common/extensions/docs/examples/extensions/imageinfo/info.css

Issue 8310002: Adding `content_security_policy` to imageinfo extension. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Docs. 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/imageinfo/info.css
diff --git a/chrome/common/extensions/docs/examples/extensions/imageinfo/info.css b/chrome/common/extensions/docs/examples/extensions/imageinfo/info.css
new file mode 100644
index 0000000000000000000000000000000000000000..0989945b0c0fbf81d5033d1599b260768990ce51
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/extensions/imageinfo/info.css
@@ -0,0 +1,56 @@
+/**
+ * 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: 14px Arial;
+}
+
+h1 {
+ margin: 30px 0 5px 0;
+ padding: 0;
+}
+code {
+ padding: 0;
+ margin: 5px 0;
+ display: block;
+}
+table {
+ border-collapse: collapse;
+ width: 100%;
+ margin: 15px 0;
+}
+td, th {
+ padding: 4px;
+}
+th {
+ text-align: left;
+ width: 130px;
+}
+tr {
+ display: none;
+}
+tr.rendered {
+ display: block;
+}
+tr.rendered:nth-child(odd) {
+ background: #eee;
+}
+#thumbnail {
+ position: fixed;
+ right: 20px;
+ top: 20px;
+ -webkit-box-shadow: 1px 1px 6px #000;
+ border: 4px solid #fff;
+ background: #fff;
+}
+#loader {
+ font: 30px Arial;
+ text-align: center;
+ padding: 100px;
+}
+#exif, #output {
+ display: none;
+}

Powered by Google App Engine
This is Rietveld 408576698