blob: 7d7b413a10a171784a8b32a4d70d99a4b2547c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
.apihelp-header {
clear: both;
margin-bottom: 0.1em;
}
div.apihelp-linktrail {
font-size: smaller;
}
.apihelp-block {
margin-top: 0.5em;
}
.apihelp-block-head {
font-weight: bold;
}
.apihelp-flags {
font-size: smaller;
float: right;
border: 1px solid black;
padding: 0.25em;
width: 20em;
}
.apihelp-deprecated, .apihelp-flag-deprecated,
.apihelp-flag-internal strong {
font-weight: bold;
color: red;
}
.apihelp-unknown {
color: #888;
}
.apihelp-empty {
color: #888;
}
.apihelp-help-urls ul {
list-style-image: none;
list-style-type: none;
margin-left: 0;
}
.apihelp-parameters dl,
.apihelp-examples dl,
.apihelp-permissions dl {
margin-left: 2em;
}
.apihelp-parameters dt {
float: left;
clear: left;
min-width: 10em;
white-space: nowrap;
line-height: 1.5em;
}
.apihelp-parameters dt:after {
content: ':\A0'
}
.apihelp-parameters dd {
margin: 0 0 0.5em 10em;
line-height: 1.5em;
}
.apihelp-parameters dd p:first-child {
margin-top: 0;
}
.apihelp-parameters dd.info {
margin-left: 12em;
text-indent: -2em;
}
.apihelp-examples dt {
font-weight: normal;
}
.api-main-links {
text-align: center;
}
.api-main-links ul:before {
content: '[';
}
.api-main-links ul:after {
content: ']';
}
|