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 @@ -201,8 +201,15 @@ dt {
201
201
}
202
202
203
203
dd {
204
- margin-bottom : 16px ;
205
- color : # 727272 ;
204
+ color : # 212121 ;
205
+ }
206
+
207
+ dd .callable , dd .constant , dd .property {
208
+ margin-bottom : 24px ;
209
+ }
210
+
211
+ dd p {
212
+ margin-top : 4px ;
206
213
}
207
214
208
215
section .summary h2 {
@@ -225,6 +232,7 @@ dl.dl-horizontal dt {
225
232
226
233
dt .name {
227
234
font-size : 17px ;
235
+ font-weight : 500 ;
228
236
}
229
237
230
238
dl dt .callable .name {
@@ -236,8 +244,13 @@ dl dt.callable .name {
236
244
white-space : nowrap;
237
245
}
238
246
247
+ .signature {
248
+ color : # 727272 ;
249
+ }
250
+
239
251
.signature a {
240
- color : rgb (51 , 51 , 51 );
252
+ /* 50% mix of default-primary-color and primary-text-color. */
253
+ color : # 4674a2 ;
241
254
}
242
255
243
256
.optional {
@@ -337,9 +350,12 @@ footer .container-fluid {
337
350
margin : 0 ;
338
351
}
339
352
340
- .is-inherited {
341
- color : # 727272 ;
353
+ /* The little slug line under a declaration for things like "const",
354
+ "read-only", etc. */
355
+ .features {
356
+ font-size : 14px ;
342
357
font-style : italic;
358
+ color : # 727272 ;
343
359
}
344
360
345
361
.multi-line-signature {
@@ -413,10 +429,6 @@ nav .self-name {
413
429
font-style : italic;
414
430
}
415
431
416
- .readable-writable {
417
- font-style : italic;
418
- }
419
-
420
432
section .multi-line-signature div .parameters {
421
433
margin-left : 24px ;
422
434
}
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
{{/clazz.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