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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /**
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 body {
8 font: 14px Arial;
9 }
10
11 h1 {
12 margin: 30px 0 5px 0;
13 padding: 0;
14 }
15 code {
16 padding: 0;
17 margin: 5px 0;
18 display: block;
19 }
20 table {
21 border-collapse: collapse;
22 width: 100%;
23 margin: 15px 0;
24 }
25 td, th {
26 padding: 4px;
27 }
28 th {
29 text-align: left;
30 width: 130px;
31 }
32 tr {
33 display: none;
34 }
35 tr.rendered {
36 display: block;
37 }
38 tr.rendered:nth-child(odd) {
39 background: #eee;
40 }
41 #thumbnail {
42 position: fixed;
43 right: 20px;
44 top: 20px;
45 -webkit-box-shadow: 1px 1px 6px #000;
46 border: 4px solid #fff;
47 background: #fff;
48 }
49 #loader {
50 font: 30px Arial;
51 text-align: center;
52 padding: 100px;
53 }
54 #exif, #output {
55 display: none;
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698