File tree Expand file tree Collapse file tree 8 files changed +36
-28
lines changed Expand file tree Collapse file tree 8 files changed +36
-28
lines changed Original file line number Diff line number Diff line change @@ -204,8 +204,15 @@ dt {
204
204
}
205
205
206
206
dd {
207
- margin-bottom : 16px ;
208
- color : # 727272 ;
207
+ color : # 212121 ;
208
+ }
209
+
210
+ dd .callable , dd .constant , dd .property {
211
+ margin-bottom : 24px ;
212
+ }
213
+
214
+ dd p {
215
+ margin-top : 4px ;
209
216
}
210
217
211
218
section .summary h2 {
@@ -228,6 +235,7 @@ dl.dl-horizontal dt {
228
235
229
236
dt .name {
230
237
font-size : 17px ;
238
+ font-weight : 500 ;
231
239
}
232
240
233
241
dl dt .callable .name {
@@ -239,8 +247,13 @@ dl dt.callable .name {
239
247
white-space : nowrap;
240
248
}
241
249
250
+ .signature {
251
+ color : # 727272 ;
252
+ }
253
+
242
254
.signature a {
243
- color : rgb (51 , 51 , 51 );
255
+ /* 50% mix of default-primary-color and primary-text-color. */
256
+ color : # 4674a2 ;
244
257
}
245
258
246
259
.optional {
@@ -340,9 +353,12 @@ footer .container-fluid {
340
353
margin : 0 ;
341
354
}
342
355
343
- .is-inherited {
344
- color : # 727272 ;
356
+ /* The little slug line under a declaration for things like "const",
357
+ "read-only", etc. */
358
+ .features {
359
+ font-size : 14px ;
345
360
font-style : italic;
361
+ color : # 727272 ;
346
362
}
347
363
348
364
.multi-line-signature {
@@ -416,10 +432,6 @@ nav .self-name {
416
432
font-style : italic;
417
433
}
418
434
419
- .readable-writable {
420
- font-style : italic;
421
- }
422
-
423
435
section .multi-line-signature div .parameters {
424
436
margin-left : 24px ;
425
437
}
Original file line number Diff line number Diff line change 6
6
</ dt >
7
7
< dd >
8
8
{{#isInherited}}
9
- < div >
10
- < span class ="is-inherited "> inherited</ span >
11
- </ div >
9
+ < div class ="features "> inherited</ div >
12
10
{{/isInherited}}
13
- {{{ oneLineDoc }}}
11
+ < p > {{{ oneLineDoc }}}</ p >
14
12
</ dd >
Original file line number Diff line number Diff line change 1
1
< dt id ="{{htmlId}} " class ="constant ">
2
2
< span class ="top-level-variable-type "> {{{ linkedReturnType }}}</ span >
3
3
< span class ="name {{#isDeprecated}}deprecated{{/isDeprecated}} "> {{{ linkedName }}}</ span >
4
- =
5
- < span class ="constant-value "> {{{ constantValue }}}</ span >
4
+ < span class ="signature "> = {{{ constantValue }}}</ span >
6
5
</ dt >
7
6
< dd >
8
- < div class ="is-const ">
9
- const
10
- </ div >
11
- {{{ oneLineDoc }}}
7
+ < div class ="features "> const</ div >
8
+ < p > {{{ oneLineDoc }}}</ p >
12
9
</ dd >
Original file line number Diff line number Diff line change 1
1
< dt id ="{{htmlId}} " class ="property ">
2
- {{#isInherited}}{{> name_summary}}{{/isInherited}}{{^isInherited}}{{{linkedName}}}{{/isInherited}}
2
+ {{#isInherited}}{{> name_summary}}{{/isInherited}}
3
+ {{^isInherited}}< span class ="name "> {{{linkedName}}}</ span > {{/isInherited}}
3
4
< span class ="signature "> → {{{ linkedReturnType }}}</ span >
4
5
</ dt >
5
6
< dd >
6
7
{{> readable_writable}}
7
- {{{ oneLineDoc }}}
8
+ < p > {{{ oneLineDoc }}}</ p >
8
9
</ dd >
Original file line number Diff line number Diff line change 1
- < div class ="readable-writable ">
2
- {{#readOnly}}read-only{{/readOnly}}{{#writeOnly}}write-only{{/writeOnly}}{{#readWrite}}read / write{{/readWrite}}{{#isInherited}}, < span class =" is- inherited" > inherited </ span > {{/isInherited}}
1
+ < div class ="features ">
2
+ {{#readOnly}}read-only{{/readOnly}}{{#writeOnly}}write-only{{/writeOnly}}{{#readWrite}}read / write{{/readWrite}}{{#isInherited}}, inherited{{/isInherited}}
3
3
</ div >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ <h2>Constructors</h2>
131
131
const
132
132
</ div >
133
133
{{/isConst}}
134
- {{{ oneLineDoc }}}
134
+ < p > {{{ oneLineDoc }}}</ p >
135
135
</ dd >
136
136
{{/class.constructors}}
137
137
</ dl >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ <h2>Libraries</h2>
15
15
</ dt >
16
16
< dd >
17
17
{{#isNotDocumented}}< span class ="undocumented "> Library not documented.</ span > {{/isNotDocumented}}
18
- {{{ oneLineDoc }}}
18
+ < p > {{{ oneLineDoc }}}</ p >
19
19
</ dd >
20
20
{{/package.libraries}}
21
21
</ dl >
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ <h2>Enums</h2>
77
77
{{{linkedName}}}
78
78
</ dt >
79
79
< dd >
80
- {{{ oneLineDoc }}}
80
+ < p > {{{ oneLineDoc }}}</ p >
81
81
</ dd >
82
82
{{/library.enums}}
83
83
</ dl >
@@ -94,7 +94,7 @@ <h2>Classes</h2>
94
94
< span class ="name {{#isDeprecated}}deprecated{{/isDeprecated}} "> {{{linkedName}}}</ span >
95
95
</ dt >
96
96
< dd >
97
- {{{ oneLineDoc }}}
97
+ < p > {{{ oneLineDoc }}}</ p >
98
98
</ dd >
99
99
{{/library.classes}}
100
100
</ dl >
@@ -111,7 +111,7 @@ <h2>Exceptions / Errors</h2>
111
111
< span class ="name {{#isDeprecated}}deprecated{{/isDeprecated}} "> {{{linkedName}}}</ span >
112
112
</ dt >
113
113
< dd >
114
- {{{ oneLineDoc }}}
114
+ < p > {{{ oneLineDoc }}}</ p >
115
115
</ dd >
116
116
{{/library.exceptions}}
117
117
</ dl >
You can’t perform that action at this time.
0 commit comments