Skip to content

Commit 4b1e0a6

Browse files
committed
Update docs
1 parent a2507e2 commit 4b1e0a6

27 files changed

+544
-1224
lines changed

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 6c5c03dd9181674954526ec11c70e43c
3+
config: 3219139f1c4fbe982f255626f9c66cef
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_static/ajax-loader.gif

-673 Bytes
Binary file not shown.

docs/_static/basic.css

Lines changed: 74 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -231,6 +231,16 @@ a.headerlink {
231231
visibility: hidden;
232232
}
233233

234+
a.brackets:before,
235+
span.brackets > a:before{
236+
content: "[";
237+
}
238+
239+
a.brackets:after,
240+
span.brackets > a:after {
241+
content: "]";
242+
}
243+
234244
h1:hover > a.headerlink,
235245
h2:hover > a.headerlink,
236246
h3:hover > a.headerlink,
@@ -391,6 +401,16 @@ table.citation td {
391401
border-bottom: none;
392402
}
393403

404+
th > p:first-child,
405+
td > p:first-child {
406+
margin-top: 0px;
407+
}
408+
409+
th > p:last-child,
410+
td > p:last-child {
411+
margin-bottom: 0px;
412+
}
413+
394414
/* -- figures --------------------------------------------------------------- */
395415

396416
div.figure {
@@ -460,11 +480,57 @@ ol.upperroman {
460480
list-style: upper-roman;
461481
}
462482

483+
li > p:first-child {
484+
margin-top: 0px;
485+
}
486+
487+
li > p:last-child {
488+
margin-bottom: 0px;
489+
}
490+
491+
dl.footnote > dt,
492+
dl.citation > dt {
493+
float: left;
494+
}
495+
496+
dl.footnote > dd,
497+
dl.citation > dd {
498+
margin-bottom: 0em;
499+
}
500+
501+
dl.footnote > dd:after,
502+
dl.citation > dd:after {
503+
content: "";
504+
clear: both;
505+
}
506+
507+
dl.field-list {
508+
display: flex;
509+
flex-wrap: wrap;
510+
}
511+
512+
dl.field-list > dt {
513+
flex-basis: 20%;
514+
font-weight: bold;
515+
word-break: break-word;
516+
}
517+
518+
dl.field-list > dt:after {
519+
content: ":";
520+
}
521+
522+
dl.field-list > dd {
523+
flex-basis: 70%;
524+
padding-left: 1em;
525+
margin-left: 0em;
526+
margin-bottom: 0em;
527+
}
528+
463529
dl {
464530
margin-bottom: 15px;
465531
}
466532

467-
dd p {
533+
dd > p:first-child {
468534
margin-top: 0px;
469535
}
470536

@@ -537,6 +603,12 @@ dl.glossary dt {
537603
font-style: oblique;
538604
}
539605

606+
.classifier:before {
607+
font-style: normal;
608+
margin: 0.5em;
609+
content: ":";
610+
}
611+
540612
abbr, acronym {
541613
border-bottom: dotted 1px;
542614
cursor: help;

docs/_static/comment-bright.png

-756 Bytes
Binary file not shown.

docs/_static/comment-close.png

-829 Bytes
Binary file not shown.

docs/_static/comment.png

-641 Bytes
Binary file not shown.

docs/_static/doctools.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -87,14 +87,13 @@ jQuery.fn.highlightText = function(text, className) {
8787
node.nextSibling));
8888
node.nodeValue = val.substr(0, pos);
8989
if (isInSVG) {
90-
var bbox = span.getBBox();
9190
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
92-
rect.x.baseVal.value = bbox.x;
91+
var bbox = node.parentElement.getBBox();
92+
rect.x.baseVal.value = bbox.x;
9393
rect.y.baseVal.value = bbox.y;
9494
rect.width.baseVal.value = bbox.width;
9595
rect.height.baseVal.value = bbox.height;
9696
rect.setAttribute('class', className);
97-
var parentOfText = node.parentNode.parentNode;
9897
addItems.push({
9998
"parent": node.parentNode,
10099
"target": rect});

0 commit comments

Comments
 (0)