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

Side by Side Diff: chrome/common/extensions/docs/static/css/api.css

Issue 22854025: Use the externally_connectable schema from manifest_types.json to generate its (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 4 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 .type_name,
7 .variable,
8 .property {
9 font-style: italic;
10 }
11
12 .api_reference div.summary {
13 border: 1px solid #93B4D9;
14 font-family: "Courier New", courier, monospace;
15 padding: 0.5em 0.5em 0.5em 2em;
16 text-indent: -1.5em;
17 background-color: #CADEF4;
18 margin-top: 1em;
19 }
20
21 /* This style is used because types with functions prefix the function with the
22 * type name, using a lowercase first letter.
23 */
24 .api_reference .uncapitalize:first-letter {
25 text-transform: lowercase;
26 }
27
28 .api_reference .capitalize:first-letter {
29 text-transform: uppercase;
30 }
31
32 .api_reference div.description {
33 margin-left: 2em;
34 }
35
36 div.summary .subdued {
37 color: #7594B8;
38 }
39
40 .optional {
41 color: #7D7D7D;
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698