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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/news_a11y/feed.css

Issue 8309001: Adding `content_security_policy` to a few sample extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License and whitespace. 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 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-family: helvetica, arial, sans-serif;
9 font-size: 12px;
10 overflow: hidden;
11 }
12
13 a {
14 color:#0000CC;
15 text-decoration: underline;
16 cursor: pointer;
17 }
18
19 .open_box {
20 display: block;
21 overflow: hidden;
22 margin-right: 4px;
23 margin-top: 2px;
24 height: 12px;
25 width: 12px;
26 float: left;
27 clear: left;
28 background-image: url(sprite_arrows.gif);
29 background-position: 0px -24px;
30 cursor: pointer;
31 }
32
33 .opened .open_box {
34 background-position:-12px -24px;
35 }
36
37 .item {
38 padding: 2px 0px;
39 }
40
41 .item_title {
42 display: block;
43 min-width: 300px;
44 padding-left: 15px;
45 cursor: pointer;
46 }
47
48 .item_desc {
49 min-width: 500px;
50 height: 0px;
51 display: block;
52 border: none;
53 padding: 0px;
54 margin: 0px;
55 -webkit-transition: height 0.2s ease-out;
56 }
57
58 #title {
59 display: block;
60 margin-left: auto;
61 }
62
63 .error {
64 white-space: nowrap;
65 color: red;
66 }
67
68 .more {
69 display: block;
70 text-align: right;
71 padding-top: 20px;
72 padding-right: 10px;
73 color: #88C;
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698