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

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

Issue 8318001: Adding `content_security_policy` to a few sample extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: processes/show_tabs 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 #main {
8 font-family: arial,helvetica;
9 font-size: 10pt;
10 text-align: center;
11 margin-left: auto;
12 margin-right: auto;
13 padding: 10px 30px 20px 30px;
14 width: 800px;
15 border-left: solid 1px #ccc;
16 border-right: solid 1px #ccc;
17 }
18 #stop {
19 margin-left: 100px;
20 }
21 #container {
22 text-align: left;
23 }
24 #instructions {
25 text-align: left;
26 }
27 .outer {
28 margin: 12px 6px 6px 6px;
29 padding: 6px;
30 border: 1px solid #000;
31 }
32 .outer.disabled {
33 border: 1px solid #696969;
34 }
35 .runTestButton {
36 margin: 12px;
37 }
38 .description {
39 margin: 6px 12px;
40 }
41 .results {
42 margin: 12px;
43 }
44 .messages {
45 margin: 12px;
46 }
47 .error {
48 color: #900;
49 }
50 .result {
51 margin: 6px;
52 padding: 6px;
53 }
54 .success {
55 font-weight: bold;
56 color: #090;
57 }
58 .failure {
59 font-weight: bold;
60 color: #900;
61 }
62 .disabled {
63 color: #696969 !important;
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698