prawn-dev 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/prawn/dev/tasks.rb +39 -1
- data/lib/prawn/dev/version.rb +1 -1
- data/lib/prawn/dev/yard_markup/code_highlight.rb +30 -0
- data/lib/prawn/dev/yard_markup/document.rb +48 -0
- data/lib/prawn/dev/yard_markup.rb +16 -0
- data/lib/rubocop/cop/prawn/style/trailing_comma_fix.rb +19 -0
- data/lib/rubocop/cop/prawn_cops.rb +18 -0
- data/rubocop.yml +475 -72
- data/templates/default/fulldoc/html/css/style.css +1021 -0
- data/templates/default/fulldoc/html/js/app.js +317 -0
- data/templates/default/fulldoc/html/setup.rb +19 -0
- data/templates/default/layout/html/setup.rb +14 -0
- data/templates/default/method_details/html/source.erb +17 -0
- data/templates/default/module/html/attribute_summary.erb +11 -0
- data/templates/default/module/html/constant_summary.erb +20 -0
- data/templates/default/module/html/item_summary.erb +46 -0
- data/templates/default/module/html/method_summary.erb +17 -0
- data/templates/default/tags/html/example.erb +11 -0
- data.tar.gz.sig +0 -0
- metadata +96 -25
- metadata.gz.sig +0 -0
@@ -0,0 +1,1021 @@
|
|
1
|
+
html {
|
2
|
+
width: 100%;
|
3
|
+
height: 100%;
|
4
|
+
}
|
5
|
+
body {
|
6
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
7
|
+
font-size: 13px;
|
8
|
+
width: 100%;
|
9
|
+
margin: 0;
|
10
|
+
padding: 0;
|
11
|
+
display: flex;
|
12
|
+
display: -webkit-flex;
|
13
|
+
display: -ms-flexbox;
|
14
|
+
}
|
15
|
+
|
16
|
+
#nav {
|
17
|
+
position: relative;
|
18
|
+
width: 100%;
|
19
|
+
height: 100%;
|
20
|
+
border: 0;
|
21
|
+
border-right: 1px dotted #eee;
|
22
|
+
overflow: auto;
|
23
|
+
}
|
24
|
+
.nav_wrap {
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
width: 20%;
|
28
|
+
height: 100%;
|
29
|
+
position: relative;
|
30
|
+
display: flex;
|
31
|
+
display: -webkit-flex;
|
32
|
+
display: -ms-flexbox;
|
33
|
+
flex-shrink: 0;
|
34
|
+
-webkit-flex-shrink: 0;
|
35
|
+
-ms-flex: 1 0;
|
36
|
+
}
|
37
|
+
#resizer {
|
38
|
+
position: absolute;
|
39
|
+
right: -5px;
|
40
|
+
top: 0;
|
41
|
+
width: 10px;
|
42
|
+
height: 100%;
|
43
|
+
cursor: col-resize;
|
44
|
+
z-index: 9999;
|
45
|
+
}
|
46
|
+
#main {
|
47
|
+
flex: 5 1;
|
48
|
+
-webkit-flex: 5 1;
|
49
|
+
-ms-flex: 5 1;
|
50
|
+
outline: none;
|
51
|
+
position: relative;
|
52
|
+
background: #fff;
|
53
|
+
padding: 1.2em;
|
54
|
+
padding-top: 0.2em;
|
55
|
+
box-sizing: border-box;
|
56
|
+
}
|
57
|
+
|
58
|
+
@media (max-width: 920px) {
|
59
|
+
.nav_wrap {
|
60
|
+
width: 100%;
|
61
|
+
top: 0;
|
62
|
+
right: 0;
|
63
|
+
overflow: visible;
|
64
|
+
position: absolute;
|
65
|
+
}
|
66
|
+
#resizer {
|
67
|
+
display: none;
|
68
|
+
}
|
69
|
+
#nav {
|
70
|
+
z-index: 9999;
|
71
|
+
background: #fff;
|
72
|
+
display: none;
|
73
|
+
position: absolute;
|
74
|
+
top: 40px;
|
75
|
+
right: 12px;
|
76
|
+
width: 500px;
|
77
|
+
max-width: 80%;
|
78
|
+
height: 80%;
|
79
|
+
overflow-y: scroll;
|
80
|
+
border: 1px solid #999;
|
81
|
+
border-collapse: collapse;
|
82
|
+
box-shadow: -7px 5px 25px #aaa;
|
83
|
+
border-radius: 2px;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
@media (min-width: 920px) {
|
88
|
+
body {
|
89
|
+
height: 100%;
|
90
|
+
overflow: hidden;
|
91
|
+
}
|
92
|
+
#main {
|
93
|
+
height: 100%;
|
94
|
+
overflow: auto;
|
95
|
+
}
|
96
|
+
#search {
|
97
|
+
display: none;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
#main img {
|
102
|
+
max-width: 100%;
|
103
|
+
}
|
104
|
+
h1 {
|
105
|
+
font-size: 25px;
|
106
|
+
margin: 1em 0 0.5em;
|
107
|
+
padding-top: 4px;
|
108
|
+
border-top: 1px dotted #d5d5d5;
|
109
|
+
}
|
110
|
+
h1.noborder {
|
111
|
+
border-top: 0px;
|
112
|
+
margin-top: 0;
|
113
|
+
padding-top: 4px;
|
114
|
+
}
|
115
|
+
h1.title {
|
116
|
+
margin-bottom: 10px;
|
117
|
+
}
|
118
|
+
h1.alphaindex {
|
119
|
+
margin-top: 0;
|
120
|
+
font-size: 22px;
|
121
|
+
}
|
122
|
+
h2 {
|
123
|
+
padding: 0;
|
124
|
+
padding-bottom: 3px;
|
125
|
+
border-bottom: 1px #aaa solid;
|
126
|
+
font-size: 1.4em;
|
127
|
+
margin: 1.8em 0 0.5em;
|
128
|
+
position: relative;
|
129
|
+
}
|
130
|
+
h2 small {
|
131
|
+
font-weight: normal;
|
132
|
+
font-size: 0.7em;
|
133
|
+
display: inline;
|
134
|
+
position: absolute;
|
135
|
+
right: 0;
|
136
|
+
}
|
137
|
+
h2 small a {
|
138
|
+
display: block;
|
139
|
+
height: 20px;
|
140
|
+
border: 1px solid #aaa;
|
141
|
+
border-bottom: 0;
|
142
|
+
border-top-left-radius: 5px;
|
143
|
+
background: #f8f8f8;
|
144
|
+
position: relative;
|
145
|
+
padding: 2px 7px;
|
146
|
+
}
|
147
|
+
.clear {
|
148
|
+
clear: both;
|
149
|
+
}
|
150
|
+
.inline {
|
151
|
+
display: inline;
|
152
|
+
}
|
153
|
+
.inline p:first-child {
|
154
|
+
display: inline;
|
155
|
+
}
|
156
|
+
.docstring,
|
157
|
+
.tags,
|
158
|
+
#filecontents {
|
159
|
+
font-size: 15px;
|
160
|
+
line-height: 1.5145em;
|
161
|
+
}
|
162
|
+
.docstring p > code,
|
163
|
+
.docstring p > tt,
|
164
|
+
.tags p > code,
|
165
|
+
.tags p > tt,
|
166
|
+
code.highlighter-rouge {
|
167
|
+
/*color: #c7254e; background: #f9f2f4;*/
|
168
|
+
padding: 2px 4px;
|
169
|
+
font-size: 1em;
|
170
|
+
border-radius: 4px;
|
171
|
+
}
|
172
|
+
.docstring h1,
|
173
|
+
.docstring h2,
|
174
|
+
.docstring h3,
|
175
|
+
.docstring h4 {
|
176
|
+
padding: 0;
|
177
|
+
border: 0;
|
178
|
+
border-bottom: 1px dotted #bbb;
|
179
|
+
}
|
180
|
+
.docstring h1 {
|
181
|
+
font-size: 1.2em;
|
182
|
+
}
|
183
|
+
.docstring h2 {
|
184
|
+
font-size: 1.1em;
|
185
|
+
}
|
186
|
+
.docstring h3,
|
187
|
+
.docstring h4 {
|
188
|
+
font-size: 1em;
|
189
|
+
border-bottom: 0;
|
190
|
+
padding-top: 10px;
|
191
|
+
}
|
192
|
+
.summary_desc .object_link a,
|
193
|
+
.docstring .object_link a {
|
194
|
+
font-family: monospace;
|
195
|
+
font-size: 1.05em;
|
196
|
+
color: #05a;
|
197
|
+
background: #edf4fa;
|
198
|
+
padding: 2px 4px;
|
199
|
+
font-size: 1em;
|
200
|
+
border-radius: 4px;
|
201
|
+
}
|
202
|
+
.rdoc-term {
|
203
|
+
padding-right: 25px;
|
204
|
+
font-weight: bold;
|
205
|
+
}
|
206
|
+
.rdoc-list p {
|
207
|
+
margin: 0;
|
208
|
+
padding: 0;
|
209
|
+
margin-bottom: 4px;
|
210
|
+
}
|
211
|
+
.summary_desc pre.code .object_link a,
|
212
|
+
.docstring pre.code .object_link a {
|
213
|
+
padding: 0px;
|
214
|
+
background: inherit;
|
215
|
+
color: inherit;
|
216
|
+
border-radius: inherit;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* style for <table> */
|
220
|
+
#filecontents table,
|
221
|
+
.docstring table {
|
222
|
+
border-collapse: collapse;
|
223
|
+
}
|
224
|
+
#filecontents table th,
|
225
|
+
#filecontents table td,
|
226
|
+
.docstring table th,
|
227
|
+
.docstring table td {
|
228
|
+
border: 1px solid #ccc;
|
229
|
+
padding: 8px;
|
230
|
+
padding-right: 17px;
|
231
|
+
}
|
232
|
+
#filecontents table tr:nth-child(odd),
|
233
|
+
.docstring table tr:nth-child(odd) {
|
234
|
+
background: #eee;
|
235
|
+
}
|
236
|
+
#filecontents table tr:nth-child(even),
|
237
|
+
.docstring table tr:nth-child(even) {
|
238
|
+
background: #fff;
|
239
|
+
}
|
240
|
+
#filecontents table th,
|
241
|
+
.docstring table th {
|
242
|
+
background: #fff;
|
243
|
+
}
|
244
|
+
|
245
|
+
/* style for <ul> */
|
246
|
+
#filecontents li > p,
|
247
|
+
.docstring li > p {
|
248
|
+
margin: 0px;
|
249
|
+
}
|
250
|
+
#filecontents ul,
|
251
|
+
.docstring ul {
|
252
|
+
padding-left: 20px;
|
253
|
+
}
|
254
|
+
/* style for <dl> */
|
255
|
+
#filecontents dl,
|
256
|
+
.docstring dl {
|
257
|
+
border: 1px solid #ccc;
|
258
|
+
}
|
259
|
+
#filecontents dt,
|
260
|
+
.docstring dt {
|
261
|
+
background: #ddd;
|
262
|
+
font-weight: bold;
|
263
|
+
padding: 3px 5px;
|
264
|
+
}
|
265
|
+
#filecontents dd,
|
266
|
+
.docstring dd {
|
267
|
+
padding: 5px 0px;
|
268
|
+
margin-left: 18px;
|
269
|
+
}
|
270
|
+
#filecontents dd > p,
|
271
|
+
.docstring dd > p {
|
272
|
+
margin: 0px;
|
273
|
+
}
|
274
|
+
|
275
|
+
.note {
|
276
|
+
color: #222;
|
277
|
+
margin: 20px 0;
|
278
|
+
padding: 10px;
|
279
|
+
border: 1px solid #eee;
|
280
|
+
border-radius: 3px;
|
281
|
+
display: block;
|
282
|
+
}
|
283
|
+
.docstring .note {
|
284
|
+
contain: layout;
|
285
|
+
padding-left: 15px;
|
286
|
+
}
|
287
|
+
.docstring .note::before {
|
288
|
+
content: '';
|
289
|
+
position: absolute;
|
290
|
+
left: -1px;
|
291
|
+
top: -1px;
|
292
|
+
bottom: -1px;
|
293
|
+
background: red;
|
294
|
+
border-top-left-radius: 3px;
|
295
|
+
border-bottom-left-radius: 3px;
|
296
|
+
width: 5px;
|
297
|
+
background: #ccc;
|
298
|
+
}
|
299
|
+
|
300
|
+
|
301
|
+
.note.todo {
|
302
|
+
background: #ffffc5;
|
303
|
+
border-color: #ececaa;
|
304
|
+
}
|
305
|
+
.note.returns_void {
|
306
|
+
background: #efefef;
|
307
|
+
}
|
308
|
+
.note.deprecated {
|
309
|
+
background: #ffe5e5;
|
310
|
+
border-color: #e9dada;
|
311
|
+
}
|
312
|
+
.note.deprecated::before {
|
313
|
+
background: #e9dada;
|
314
|
+
}
|
315
|
+
.note.title.deprecated {
|
316
|
+
background: #ffe5e5;
|
317
|
+
border-color: #e9dada;
|
318
|
+
}
|
319
|
+
.note.private {
|
320
|
+
background: #ffffc5;
|
321
|
+
border-color: #ececaa;
|
322
|
+
}
|
323
|
+
.note.title {
|
324
|
+
padding: 3px 6px;
|
325
|
+
font-size: 0.9em;
|
326
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
327
|
+
display: inline;
|
328
|
+
}
|
329
|
+
.summary_signature + .note.title {
|
330
|
+
margin-left: 7px;
|
331
|
+
}
|
332
|
+
h1 .note.title {
|
333
|
+
font-size: 0.5em;
|
334
|
+
font-weight: normal;
|
335
|
+
padding: 3px 5px;
|
336
|
+
position: relative;
|
337
|
+
top: -3px;
|
338
|
+
text-transform: capitalize;
|
339
|
+
}
|
340
|
+
.note.title {
|
341
|
+
background: #efefef;
|
342
|
+
}
|
343
|
+
.note.title.constructor {
|
344
|
+
color: #fff;
|
345
|
+
background: #6a98d6;
|
346
|
+
border-color: #6689d6;
|
347
|
+
}
|
348
|
+
.note.title.writeonly {
|
349
|
+
color: #fff;
|
350
|
+
background: #45a638;
|
351
|
+
border-color: #2da31d;
|
352
|
+
}
|
353
|
+
.note.title.readonly {
|
354
|
+
color: #fff;
|
355
|
+
background: #6a98d6;
|
356
|
+
border-color: #6689d6;
|
357
|
+
}
|
358
|
+
.note.title.private {
|
359
|
+
background: #d5d5d5;
|
360
|
+
border-color: #c5c5c5;
|
361
|
+
}
|
362
|
+
.note.title.not_defined_here {
|
363
|
+
background: transparent;
|
364
|
+
border: none;
|
365
|
+
font-style: italic;
|
366
|
+
}
|
367
|
+
.discussion .note {
|
368
|
+
margin-top: 6px;
|
369
|
+
padding-left: 15px !important;
|
370
|
+
}
|
371
|
+
.discussion .note:first-child {
|
372
|
+
margin-top: 0;
|
373
|
+
}
|
374
|
+
|
375
|
+
h3.inherited {
|
376
|
+
font-style: italic;
|
377
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
378
|
+
font-weight: normal;
|
379
|
+
padding: 0;
|
380
|
+
margin: 0;
|
381
|
+
margin-top: 12px;
|
382
|
+
margin-bottom: 3px;
|
383
|
+
font-size: 13px;
|
384
|
+
}
|
385
|
+
p.inherited {
|
386
|
+
padding: 0;
|
387
|
+
margin: 0;
|
388
|
+
margin-left: 25px;
|
389
|
+
}
|
390
|
+
|
391
|
+
.box_info dl {
|
392
|
+
margin: 0;
|
393
|
+
border: 0;
|
394
|
+
width: 100%;
|
395
|
+
font-size: 1em;
|
396
|
+
display: flex;
|
397
|
+
display: -webkit-flex;
|
398
|
+
display: -ms-flexbox;
|
399
|
+
}
|
400
|
+
.box_info dl dt {
|
401
|
+
flex-shrink: 0;
|
402
|
+
-webkit-flex-shrink: 1;
|
403
|
+
-ms-flex-shrink: 1;
|
404
|
+
width: 100px;
|
405
|
+
text-align: right;
|
406
|
+
font-weight: bold;
|
407
|
+
border: 1px solid #aaa;
|
408
|
+
border-width: 1px 0px 0px 1px;
|
409
|
+
padding: 6px 0;
|
410
|
+
padding-right: 10px;
|
411
|
+
}
|
412
|
+
.box_info dl dd {
|
413
|
+
flex-grow: 1;
|
414
|
+
-webkit-flex-grow: 1;
|
415
|
+
-ms-flex: 1;
|
416
|
+
max-width: 420px;
|
417
|
+
padding: 6px 0;
|
418
|
+
padding-right: 20px;
|
419
|
+
border: 1px solid #aaa;
|
420
|
+
border-width: 1px 1px 0 0;
|
421
|
+
overflow: hidden;
|
422
|
+
position: relative;
|
423
|
+
}
|
424
|
+
.box_info dl:last-child > * {
|
425
|
+
border-bottom: 1px solid #aaa;
|
426
|
+
}
|
427
|
+
.box_info dl:nth-child(odd) > * {
|
428
|
+
background: #eee;
|
429
|
+
}
|
430
|
+
.box_info dl:nth-child(even) > * {
|
431
|
+
background: #fff;
|
432
|
+
}
|
433
|
+
.box_info dl > * {
|
434
|
+
margin: 0;
|
435
|
+
}
|
436
|
+
|
437
|
+
ul.toplevel {
|
438
|
+
list-style: none;
|
439
|
+
padding-left: 0;
|
440
|
+
font-size: 1.1em;
|
441
|
+
}
|
442
|
+
.index_inline_list {
|
443
|
+
padding-left: 0;
|
444
|
+
font-size: 1.1em;
|
445
|
+
}
|
446
|
+
|
447
|
+
.index_inline_list li {
|
448
|
+
list-style: none;
|
449
|
+
display: inline-block;
|
450
|
+
padding: 0 12px;
|
451
|
+
line-height: 30px;
|
452
|
+
margin-bottom: 5px;
|
453
|
+
}
|
454
|
+
|
455
|
+
dl.constants {
|
456
|
+
margin-left: 10px;
|
457
|
+
}
|
458
|
+
dl.constants dt {
|
459
|
+
font-weight: bold;
|
460
|
+
font-size: 1.1em;
|
461
|
+
margin-bottom: 5px;
|
462
|
+
}
|
463
|
+
dl.constants.compact dt {
|
464
|
+
display: inline-block;
|
465
|
+
font-weight: normal;
|
466
|
+
}
|
467
|
+
dl.constants dd {
|
468
|
+
width: 75%;
|
469
|
+
white-space: pre;
|
470
|
+
font-family: monospace;
|
471
|
+
margin-bottom: 18px;
|
472
|
+
}
|
473
|
+
dl.constants .docstring .note:first-child {
|
474
|
+
margin-top: 5px;
|
475
|
+
}
|
476
|
+
|
477
|
+
.summary_desc {
|
478
|
+
margin-left: 32px;
|
479
|
+
display: block;
|
480
|
+
font-family: sans-serif;
|
481
|
+
font-size: 1.1em;
|
482
|
+
margin-top: 8px;
|
483
|
+
line-height: 1.5145em;
|
484
|
+
margin-bottom: 0.8em;
|
485
|
+
}
|
486
|
+
.summary_desc tt {
|
487
|
+
font-size: 0.9em;
|
488
|
+
}
|
489
|
+
dl.constants .note {
|
490
|
+
padding: 2px 6px;
|
491
|
+
padding-right: 12px;
|
492
|
+
margin-top: 6px;
|
493
|
+
}
|
494
|
+
dl.constants .docstring {
|
495
|
+
margin-left: 32px;
|
496
|
+
font-size: 0.9em;
|
497
|
+
font-weight: normal;
|
498
|
+
}
|
499
|
+
dl.constants .tags {
|
500
|
+
padding-left: 32px;
|
501
|
+
font-size: 0.9em;
|
502
|
+
line-height: 0.8em;
|
503
|
+
}
|
504
|
+
dl.constants .discussion *:first-child {
|
505
|
+
margin-top: 0;
|
506
|
+
}
|
507
|
+
dl.constants .discussion *:last-child {
|
508
|
+
margin-bottom: 0;
|
509
|
+
}
|
510
|
+
|
511
|
+
.method_details {
|
512
|
+
border-top: 1px dotted #ccc;
|
513
|
+
margin-top: 25px;
|
514
|
+
padding-top: 0;
|
515
|
+
}
|
516
|
+
.method_details.first {
|
517
|
+
border: 0;
|
518
|
+
margin-top: 5px;
|
519
|
+
}
|
520
|
+
.method_details.first h3.signature {
|
521
|
+
margin-top: 1em;
|
522
|
+
}
|
523
|
+
p.signature,
|
524
|
+
h3.signature {
|
525
|
+
font-size: 1.1em;
|
526
|
+
font-weight: normal;
|
527
|
+
font-family: Monaco, Consolas, Courier, monospace;
|
528
|
+
padding: 6px 10px;
|
529
|
+
margin-top: 1em;
|
530
|
+
background: #e8f4ff;
|
531
|
+
border: 1px solid #d8d8e5;
|
532
|
+
border-radius: 5px;
|
533
|
+
}
|
534
|
+
p.signature tt,
|
535
|
+
h3.signature tt {
|
536
|
+
font-family: Monaco, Consolas, Courier, monospace;
|
537
|
+
}
|
538
|
+
p.signature .overload,
|
539
|
+
h3.signature .overload {
|
540
|
+
display: block;
|
541
|
+
}
|
542
|
+
p.signature .extras,
|
543
|
+
h3.signature .extras {
|
544
|
+
font-weight: normal;
|
545
|
+
font-family: sans-serif;
|
546
|
+
color: #444;
|
547
|
+
font-size: 1em;
|
548
|
+
}
|
549
|
+
p.signature .not_defined_here,
|
550
|
+
h3.signature .not_defined_here,
|
551
|
+
p.signature .aliases,
|
552
|
+
h3.signature .aliases {
|
553
|
+
display: block;
|
554
|
+
font-weight: normal;
|
555
|
+
font-size: 0.9em;
|
556
|
+
font-family: sans-serif;
|
557
|
+
margin-top: 0.4em;
|
558
|
+
color: #555;
|
559
|
+
}
|
560
|
+
p.signature .aliases .names,
|
561
|
+
h3.signature .aliases .names {
|
562
|
+
font-family: Monaco, Consolas, Courier, monospace;
|
563
|
+
font-weight: bold;
|
564
|
+
color: #000;
|
565
|
+
font-size: 1.2em;
|
566
|
+
}
|
567
|
+
|
568
|
+
.tags .tag_title {
|
569
|
+
font-size: 1.05em;
|
570
|
+
margin-bottom: 0;
|
571
|
+
font-weight: bold;
|
572
|
+
}
|
573
|
+
.tags .tag_title tt {
|
574
|
+
color: initial;
|
575
|
+
padding: initial;
|
576
|
+
background: initial;
|
577
|
+
}
|
578
|
+
.tags ul {
|
579
|
+
margin-top: 5px;
|
580
|
+
padding-left: 30px;
|
581
|
+
list-style: square;
|
582
|
+
}
|
583
|
+
.tags ul li {
|
584
|
+
margin-bottom: 3px;
|
585
|
+
}
|
586
|
+
.tags ul .name {
|
587
|
+
font-family: monospace;
|
588
|
+
font-weight: bold;
|
589
|
+
}
|
590
|
+
.tags ul .note {
|
591
|
+
padding: 3px 6px;
|
592
|
+
}
|
593
|
+
.tags {
|
594
|
+
margin-bottom: 12px;
|
595
|
+
}
|
596
|
+
|
597
|
+
.tags .examples .tag_title {
|
598
|
+
margin-bottom: 10px;
|
599
|
+
font-weight: bold;
|
600
|
+
}
|
601
|
+
.tags .examples .inline p {
|
602
|
+
padding: 0;
|
603
|
+
margin: 0;
|
604
|
+
font-weight: bold;
|
605
|
+
font-size: 1em;
|
606
|
+
}
|
607
|
+
.tags .examples .inline p:before {
|
608
|
+
content: "▸";
|
609
|
+
font-size: 1em;
|
610
|
+
margin-right: 5px;
|
611
|
+
}
|
612
|
+
|
613
|
+
.tags .overload .overload_item {
|
614
|
+
list-style: none;
|
615
|
+
margin-bottom: 25px;
|
616
|
+
}
|
617
|
+
.tags .overload .overload_item .signature {
|
618
|
+
padding: 2px 8px;
|
619
|
+
background: #f1f8ff;
|
620
|
+
border: 1px solid #d8d8e5;
|
621
|
+
border-radius: 3px;
|
622
|
+
}
|
623
|
+
.tags .overload .signature {
|
624
|
+
margin-left: -15px;
|
625
|
+
font-family: monospace;
|
626
|
+
display: block;
|
627
|
+
font-size: 1.1em;
|
628
|
+
}
|
629
|
+
.tags .overload .docstring {
|
630
|
+
margin-top: 15px;
|
631
|
+
}
|
632
|
+
|
633
|
+
.defines {
|
634
|
+
display: none;
|
635
|
+
}
|
636
|
+
|
637
|
+
#method_missing_details .notice.this {
|
638
|
+
position: relative;
|
639
|
+
top: -8px;
|
640
|
+
color: #888;
|
641
|
+
padding: 0;
|
642
|
+
margin: 0;
|
643
|
+
}
|
644
|
+
|
645
|
+
.showSource {
|
646
|
+
font-size: 0.9em;
|
647
|
+
}
|
648
|
+
.showSource a,
|
649
|
+
.showSource a:visited {
|
650
|
+
text-decoration: none;
|
651
|
+
color: #666;
|
652
|
+
}
|
653
|
+
|
654
|
+
#content a,
|
655
|
+
#content a:visited {
|
656
|
+
text-decoration: none;
|
657
|
+
color: #05a;
|
658
|
+
}
|
659
|
+
#content a:hover {
|
660
|
+
background: #ffffa5;
|
661
|
+
}
|
662
|
+
|
663
|
+
ul.summary {
|
664
|
+
list-style: none;
|
665
|
+
font-family: monospace;
|
666
|
+
font-size: 1em;
|
667
|
+
line-height: 1.5em;
|
668
|
+
padding-left: 0px;
|
669
|
+
}
|
670
|
+
ul.summary a,
|
671
|
+
ul.summary a:visited {
|
672
|
+
text-decoration: none;
|
673
|
+
font-size: 1.1em;
|
674
|
+
}
|
675
|
+
ul.summary li {
|
676
|
+
margin-bottom: 5px;
|
677
|
+
}
|
678
|
+
.summary_signature {
|
679
|
+
padding: 4px 8px;
|
680
|
+
background: #f8f8f8;
|
681
|
+
border: 1px solid #f0f0f0;
|
682
|
+
border-radius: 5px;
|
683
|
+
}
|
684
|
+
.summary_signature:hover {
|
685
|
+
background: #cfebff;
|
686
|
+
border-color: #a4ccda;
|
687
|
+
cursor: pointer;
|
688
|
+
}
|
689
|
+
|
690
|
+
.summary_signature .overload::after {
|
691
|
+
content: '; ';
|
692
|
+
}
|
693
|
+
.summary_signature .overload:last-of-type::after {
|
694
|
+
content: none;
|
695
|
+
}
|
696
|
+
.summary_signature.deprecated {
|
697
|
+
background: #ffe5e5;
|
698
|
+
border-color: #e9dada;
|
699
|
+
}
|
700
|
+
ul.summary.compact li {
|
701
|
+
display: inline-block;
|
702
|
+
margin: 0px 5px 0px 0px;
|
703
|
+
line-height: 2.6em;
|
704
|
+
}
|
705
|
+
ul.summary.compact .summary_signature {
|
706
|
+
padding: 5px 7px;
|
707
|
+
padding-right: 4px;
|
708
|
+
}
|
709
|
+
#content .summary_signature:hover a,
|
710
|
+
#content .summary_signature:hover a:visited {
|
711
|
+
background: transparent;
|
712
|
+
color: #049;
|
713
|
+
}
|
714
|
+
|
715
|
+
p.inherited a {
|
716
|
+
font-family: monospace;
|
717
|
+
font-size: 0.9em;
|
718
|
+
}
|
719
|
+
p.inherited {
|
720
|
+
word-spacing: 5px;
|
721
|
+
font-size: 1.2em;
|
722
|
+
}
|
723
|
+
|
724
|
+
p.children {
|
725
|
+
font-size: 1.2em;
|
726
|
+
}
|
727
|
+
p.children a {
|
728
|
+
font-size: 0.9em;
|
729
|
+
}
|
730
|
+
p.children strong {
|
731
|
+
font-size: 0.8em;
|
732
|
+
}
|
733
|
+
p.children strong.modules {
|
734
|
+
padding-left: 5px;
|
735
|
+
}
|
736
|
+
|
737
|
+
ul.fullTree {
|
738
|
+
display: none;
|
739
|
+
padding-left: 0;
|
740
|
+
list-style: none;
|
741
|
+
margin-left: 0;
|
742
|
+
margin-bottom: 10px;
|
743
|
+
}
|
744
|
+
ul.fullTree ul {
|
745
|
+
margin-left: 0;
|
746
|
+
padding-left: 0;
|
747
|
+
list-style: none;
|
748
|
+
}
|
749
|
+
ul.fullTree li {
|
750
|
+
text-align: center;
|
751
|
+
padding-top: 18px;
|
752
|
+
padding-bottom: 12px;
|
753
|
+
background: url(data:image/gif;base64,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)
|
754
|
+
no-repeat top center;
|
755
|
+
}
|
756
|
+
ul.fullTree li:first-child {
|
757
|
+
padding-top: 0;
|
758
|
+
background: transparent;
|
759
|
+
}
|
760
|
+
ul.fullTree li:last-child {
|
761
|
+
padding-bottom: 0;
|
762
|
+
}
|
763
|
+
.showAll ul.fullTree {
|
764
|
+
display: block;
|
765
|
+
}
|
766
|
+
.showAll .inheritName {
|
767
|
+
display: none;
|
768
|
+
}
|
769
|
+
|
770
|
+
#search {
|
771
|
+
position: absolute;
|
772
|
+
right: 12px;
|
773
|
+
top: 0px;
|
774
|
+
z-index: 9000;
|
775
|
+
}
|
776
|
+
#search a {
|
777
|
+
display: block;
|
778
|
+
float: left;
|
779
|
+
padding: 4px 8px;
|
780
|
+
text-decoration: none;
|
781
|
+
color: #05a;
|
782
|
+
fill: #05a;
|
783
|
+
border: 1px solid #d8d8e5;
|
784
|
+
border-bottom-left-radius: 3px;
|
785
|
+
border-bottom-right-radius: 3px;
|
786
|
+
background: #f1f8ff;
|
787
|
+
box-shadow: -1px 1px 3px #ddd;
|
788
|
+
}
|
789
|
+
#search a:hover {
|
790
|
+
background: #f5faff;
|
791
|
+
color: #06b;
|
792
|
+
fill: #06b;
|
793
|
+
}
|
794
|
+
#search a.active {
|
795
|
+
background: #568;
|
796
|
+
padding-bottom: 20px;
|
797
|
+
color: #fff;
|
798
|
+
fill: #fff;
|
799
|
+
border: 1px solid #457;
|
800
|
+
border-top-left-radius: 5px;
|
801
|
+
border-top-right-radius: 5px;
|
802
|
+
}
|
803
|
+
#search a.inactive {
|
804
|
+
color: #999;
|
805
|
+
fill: #999;
|
806
|
+
}
|
807
|
+
.inheritanceTree,
|
808
|
+
.toggleDefines {
|
809
|
+
float: right;
|
810
|
+
border-left: 1px solid #aaa;
|
811
|
+
position: absolute;
|
812
|
+
top: 0;
|
813
|
+
right: 0;
|
814
|
+
height: 100%;
|
815
|
+
background: #f6f6f6;
|
816
|
+
padding: 5px;
|
817
|
+
min-width: 55px;
|
818
|
+
text-align: center;
|
819
|
+
}
|
820
|
+
|
821
|
+
#menu {
|
822
|
+
font-size: 1.3em;
|
823
|
+
color: #bbb;
|
824
|
+
}
|
825
|
+
#menu .title,
|
826
|
+
#menu a {
|
827
|
+
font-size: 0.7em;
|
828
|
+
}
|
829
|
+
#menu .title a {
|
830
|
+
font-size: 1em;
|
831
|
+
}
|
832
|
+
#menu .title {
|
833
|
+
color: #555;
|
834
|
+
}
|
835
|
+
#menu a,
|
836
|
+
#menu a:visited {
|
837
|
+
color: #333;
|
838
|
+
text-decoration: none;
|
839
|
+
border-bottom: 1px dotted #bbd;
|
840
|
+
}
|
841
|
+
#menu a:hover {
|
842
|
+
color: #05a;
|
843
|
+
}
|
844
|
+
|
845
|
+
#footer {
|
846
|
+
margin-top: 15px;
|
847
|
+
border-top: 1px solid #ccc;
|
848
|
+
text-align: center;
|
849
|
+
padding: 7px 0;
|
850
|
+
color: #999;
|
851
|
+
}
|
852
|
+
#footer a,
|
853
|
+
#footer a:visited {
|
854
|
+
color: #444;
|
855
|
+
text-decoration: none;
|
856
|
+
border-bottom: 1px dotted #bbd;
|
857
|
+
}
|
858
|
+
#footer a:hover {
|
859
|
+
color: #05a;
|
860
|
+
}
|
861
|
+
|
862
|
+
#listing ul.alpha {
|
863
|
+
font-size: 1.1em;
|
864
|
+
}
|
865
|
+
#listing ul.alpha {
|
866
|
+
margin: 0;
|
867
|
+
padding: 0;
|
868
|
+
padding-bottom: 10px;
|
869
|
+
list-style: none;
|
870
|
+
}
|
871
|
+
#listing ul.alpha li.letter {
|
872
|
+
font-size: 1.4em;
|
873
|
+
padding-bottom: 10px;
|
874
|
+
}
|
875
|
+
#listing ul.alpha ul {
|
876
|
+
margin: 0;
|
877
|
+
padding-left: 15px;
|
878
|
+
}
|
879
|
+
#listing ul small {
|
880
|
+
color: #666;
|
881
|
+
font-size: 0.7em;
|
882
|
+
}
|
883
|
+
|
884
|
+
li.r1 {
|
885
|
+
background: #f0f0f0;
|
886
|
+
}
|
887
|
+
li.r2 {
|
888
|
+
background: #fafafa;
|
889
|
+
}
|
890
|
+
|
891
|
+
#content ul.summary li.deprecated .summary_signature a,
|
892
|
+
#content ul.summary li.deprecated .summary_signature a:visited {
|
893
|
+
text-decoration: line-through;
|
894
|
+
font-style: italic;
|
895
|
+
}
|
896
|
+
|
897
|
+
#toc {
|
898
|
+
position: relative;
|
899
|
+
float: right;
|
900
|
+
overflow-x: auto;
|
901
|
+
right: -3px;
|
902
|
+
margin-left: 20px;
|
903
|
+
margin-bottom: 20px;
|
904
|
+
padding: 20px;
|
905
|
+
padding-right: 30px;
|
906
|
+
max-width: 300px;
|
907
|
+
z-index: 5000;
|
908
|
+
background: #fefefe;
|
909
|
+
border: 1px solid #ddd;
|
910
|
+
box-shadow: -2px 2px 6px #bbb;
|
911
|
+
}
|
912
|
+
#toc .title {
|
913
|
+
margin: 0;
|
914
|
+
}
|
915
|
+
#toc ol {
|
916
|
+
padding-left: 1.8em;
|
917
|
+
}
|
918
|
+
#toc li {
|
919
|
+
font-size: 1.1em;
|
920
|
+
line-height: 1.7em;
|
921
|
+
}
|
922
|
+
#toc > ol > li {
|
923
|
+
font-size: 1.1em;
|
924
|
+
font-weight: bold;
|
925
|
+
}
|
926
|
+
#toc ol > li > ol {
|
927
|
+
font-size: 0.9em;
|
928
|
+
}
|
929
|
+
#toc ol ol > li > ol {
|
930
|
+
padding-left: 2.3em;
|
931
|
+
}
|
932
|
+
#toc ol + li {
|
933
|
+
margin-top: 0.3em;
|
934
|
+
}
|
935
|
+
#toc.hidden {
|
936
|
+
padding: 10px;
|
937
|
+
background: #fefefe;
|
938
|
+
box-shadow: none;
|
939
|
+
}
|
940
|
+
#toc.hidden:hover {
|
941
|
+
background: #fafafa;
|
942
|
+
}
|
943
|
+
#filecontents h1 + #toc.nofloat {
|
944
|
+
margin-top: 0;
|
945
|
+
}
|
946
|
+
@media (max-width: 560px) {
|
947
|
+
#toc {
|
948
|
+
margin-left: 0;
|
949
|
+
margin-top: 16px;
|
950
|
+
float: none;
|
951
|
+
max-width: none;
|
952
|
+
}
|
953
|
+
}
|
954
|
+
|
955
|
+
/* syntax highlighting */
|
956
|
+
.highlighter-rouge {
|
957
|
+
padding: 9px 14px;
|
958
|
+
margin-top: 4px;
|
959
|
+
border: 1px solid #e1e1e8;
|
960
|
+
border-radius: 4px;
|
961
|
+
overflow-x: auto;
|
962
|
+
line-height: 1.2em;
|
963
|
+
}
|
964
|
+
|
965
|
+
.highlighter-rouge pre {
|
966
|
+
margin: 0;
|
967
|
+
}
|
968
|
+
|
969
|
+
table.highlighter-rouge {
|
970
|
+
width: 100%;
|
971
|
+
}
|
972
|
+
table.highlighter-rouge pre {
|
973
|
+
padding: 0;
|
974
|
+
max-width: fit-content;
|
975
|
+
}
|
976
|
+
table.highlighter-rouge .rouge-gutter {
|
977
|
+
text-align: right;
|
978
|
+
width: 1px;
|
979
|
+
}
|
980
|
+
table.highlighter-rouge .rouge-gutter pre {
|
981
|
+
padding-right: 1em;
|
982
|
+
}
|
983
|
+
.source_code {
|
984
|
+
display: none;
|
985
|
+
padding: 3px 8px;
|
986
|
+
margin-top: 5px;
|
987
|
+
}
|
988
|
+
|
989
|
+
.source-code {
|
990
|
+
margin-top: 4px;
|
991
|
+
border-radius: 4px;
|
992
|
+
line-height: 1.2em;
|
993
|
+
border: 1px solid transparent;
|
994
|
+
background: transparent;
|
995
|
+
}
|
996
|
+
.source-code[open] {
|
997
|
+
border-color: #e1e1e8;
|
998
|
+
}
|
999
|
+
.source-code summary {
|
1000
|
+
padding: 3px 8px;
|
1001
|
+
cursor: pointer;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
.source-code .info {
|
1005
|
+
margin: 0.5em 1.25em;
|
1006
|
+
}
|
1007
|
+
.source-code table.highlighter-rouge {
|
1008
|
+
border: 0 none;
|
1009
|
+
border-top-left-radius: 0;
|
1010
|
+
border-top-right-radius: 0;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
/* Color fix for links */
|
1014
|
+
#content .summary_desc pre.code .id > .object_link a, /* identifier */
|
1015
|
+
#content .docstring pre.code .id > .object_link a {
|
1016
|
+
color: #0085ff;
|
1017
|
+
}
|
1018
|
+
#content .summary_desc pre.code .const > .object_link a, /* constant */
|
1019
|
+
#content .docstring pre.code .const > .object_link a {
|
1020
|
+
color: #585cf6;
|
1021
|
+
}
|