Skip to content

Commit 5cafbea

Browse files
committed
Deploying to gh-pages from @ 7b73fde 🚀
1 parent 14fca8d commit 5cafbea

190 files changed

Lines changed: 21116 additions & 1858 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.buildinfo

Lines changed: 0 additions & 4 deletions
This file was deleted.

_static/basic.css

Lines changed: 116 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -15,6 +15,12 @@ div.clearer {
1515
clear: both;
1616
}
1717

18+
div.section::after {
19+
display: block;
20+
content: '';
21+
clear: left;
22+
}
23+
1824
/* -- relbar ---------------------------------------------------------------- */
1925

2026
div.related {
@@ -316,21 +322,27 @@ img.align-default, .figure.align-default {
316322
div.sidebar {
317323
margin: 0 0 0.5em 1em;
318324
border: 1px solid #ddb;
319-
padding: 7px 7px 0 7px;
325+
padding: 7px;
320326
background-color: #ffe;
321327
width: 40%;
322328
float: right;
329+
clear: right;
330+
overflow-x: auto;
323331
}
324332

325333
p.sidebar-title {
326334
font-weight: bold;
327335
}
328336

337+
div.admonition, div.topic, blockquote {
338+
clear: left;
339+
}
340+
329341
/* -- topics ---------------------------------------------------------------- */
330342

331343
div.topic {
332344
border: 1px solid #ccc;
333-
padding: 7px 7px 0 7px;
345+
padding: 7px;
334346
margin: 10px 0 10px 0;
335347
}
336348

@@ -352,10 +364,6 @@ div.admonition dt {
352364
font-weight: bold;
353365
}
354366

355-
div.admonition dl {
356-
margin-bottom: 0;
357-
}
358-
359367
p.admonition-title {
360368
margin: 0px 10px 5px 0px;
361369
font-weight: bold;
@@ -366,9 +374,28 @@ div.body p.centered {
366374
margin-top: 25px;
367375
}
368376

377+
/* -- content of sidebars/topics/admonitions -------------------------------- */
378+
379+
div.sidebar > :last-child,
380+
div.topic > :last-child,
381+
div.admonition > :last-child {
382+
margin-bottom: 0;
383+
}
384+
385+
div.sidebar::after,
386+
div.topic::after,
387+
div.admonition::after,
388+
blockquote::after {
389+
display: block;
390+
content: '';
391+
clear: both;
392+
}
393+
369394
/* -- tables ---------------------------------------------------------------- */
370395

371396
table.docutils {
397+
margin-top: 10px;
398+
margin-bottom: 10px;
372399
border: 0;
373400
border-collapse: collapse;
374401
}
@@ -416,13 +443,13 @@ table.citation td {
416443
border-bottom: none;
417444
}
418445

419-
th > p:first-child,
420-
td > p:first-child {
446+
th > :first-child,
447+
td > :first-child {
421448
margin-top: 0px;
422449
}
423450

424-
th > p:last-child,
425-
td > p:last-child {
451+
th > :last-child,
452+
td > :last-child {
426453
margin-bottom: 0px;
427454
}
428455

@@ -468,6 +495,10 @@ table.field-list td, table.field-list th {
468495

469496
/* -- hlist styles ---------------------------------------------------------- */
470497

498+
table.hlist {
499+
margin: 1em 0;
500+
}
501+
471502
table.hlist td {
472503
vertical-align: top;
473504
}
@@ -495,17 +526,37 @@ ol.upperroman {
495526
list-style: upper-roman;
496527
}
497528

498-
li > p:first-child {
529+
:not(li) > ol > li:first-child > :first-child,
530+
:not(li) > ul > li:first-child > :first-child {
499531
margin-top: 0px;
500532
}
501533

502-
li > p:last-child {
534+
:not(li) > ol > li:last-child > :last-child,
535+
:not(li) > ul > li:last-child > :last-child {
503536
margin-bottom: 0px;
504537
}
505538

539+
ol.simple ol p,
540+
ol.simple ul p,
541+
ul.simple ol p,
542+
ul.simple ul p {
543+
margin-top: 0;
544+
}
545+
546+
ol.simple > li:not(:first-child) > p,
547+
ul.simple > li:not(:first-child) > p {
548+
margin-top: 0;
549+
}
550+
551+
ol.simple p,
552+
ul.simple p {
553+
margin-bottom: 0;
554+
}
555+
506556
dl.footnote > dt,
507557
dl.citation > dt {
508558
float: left;
559+
margin-right: 0.5em;
509560
}
510561

511562
dl.footnote > dd,
@@ -546,7 +597,7 @@ dl {
546597
margin-bottom: 15px;
547598
}
548599

549-
dd > p:first-child {
600+
dd > :first-child {
550601
margin-top: 0px;
551602
}
552603

@@ -560,6 +611,11 @@ dd {
560611
margin-left: 30px;
561612
}
562613

614+
dl > dd:last-child,
615+
dl > dd:last-child > :last-child {
616+
margin-bottom: 0;
617+
}
618+
563619
dt:target, span.highlighted {
564620
background-color: #fbe54e;
565621
}
@@ -637,29 +693,68 @@ pre {
637693
overflow-y: hidden; /* fixes display issues on Chrome browsers */
638694
}
639695

696+
pre, div[class*="highlight-"] {
697+
clear: both;
698+
}
699+
640700
span.pre {
641701
-moz-hyphens: none;
642702
-ms-hyphens: none;
643703
-webkit-hyphens: none;
644704
hyphens: none;
645705
}
646706

707+
div[class*="highlight-"] {
708+
margin: 1em 0;
709+
}
710+
647711
td.linenos pre {
648-
padding: 5px 0px;
649712
border: 0;
650713
background-color: transparent;
651714
color: #aaa;
652715
}
653716

654717
table.highlighttable {
655-
margin-left: 0.5em;
718+
display: block;
719+
}
720+
721+
table.highlighttable tbody {
722+
display: block;
723+
}
724+
725+
table.highlighttable tr {
726+
display: flex;
656727
}
657728

658729
table.highlighttable td {
659-
padding: 0 0.5em 0 0.5em;
730+
margin: 0;
731+
padding: 0;
732+
}
733+
734+
table.highlighttable td.linenos {
735+
padding-right: 0.5em;
736+
}
737+
738+
table.highlighttable td.code {
739+
flex: 1;
740+
overflow: hidden;
741+
}
742+
743+
.highlight .hll {
744+
display: block;
745+
}
746+
747+
div.highlight pre,
748+
table.highlighttable pre {
749+
margin: 0;
750+
}
751+
752+
div.code-block-caption + div {
753+
margin-top: 0;
660754
}
661755

662756
div.code-block-caption {
757+
margin-top: 1em;
663758
padding: 2px 5px;
664759
font-size: small;
665760
}
@@ -668,10 +763,8 @@ div.code-block-caption code {
668763
background-color: transparent;
669764
}
670765

671-
div.code-block-caption + div > div.highlight > pre {
672-
margin-top: 0;
673-
}
674-
766+
table.highlighttable td.linenos,
767+
span.linenos,
675768
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
676769
user-select: none;
677770
}
@@ -685,11 +778,7 @@ div.code-block-caption span.caption-text {
685778
}
686779

687780
div.literal-block-wrapper {
688-
padding: 1em 1em 0;
689-
}
690-
691-
div.literal-block-wrapper div.highlight {
692-
margin: 0;
781+
margin: 1em 0;
693782
}
694783

695784
code.descname {
@@ -740,8 +829,7 @@ span.eqno {
740829
}
741830

742831
span.eqno a.headerlink {
743-
position: relative;
744-
left: 0px;
832+
position: absolute;
745833
z-index: 1;
746834
}
747835

_static/doctools.js

Lines changed: 10 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-2020 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -29,9 +29,14 @@ if (!window.console || !console.firebug) {
2929

3030
/**
3131
* small helper function to urldecode strings
32+
*
33+
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
3234
*/
3335
jQuery.urldecode = function(x) {
34-
return decodeURIComponent(x).replace(/\+/g, ' ');
36+
if (!x) {
37+
return x
38+
}
39+
return decodeURIComponent(x.replace(/\+/g, ' '));
3540
};
3641

3742
/**
@@ -285,9 +290,10 @@ var Documentation = {
285290
initOnKeyListeners: function() {
286291
$(document).keydown(function(event) {
287292
var activeElementType = document.activeElement.tagName;
288-
// don't navigate when in search box or textarea
293+
// don't navigate when in search box, textarea, dropdown or button
289294
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
290-
&& !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
295+
&& activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey
296+
&& !event.shiftKey) {
291297
switch (event.keyCode) {
292298
case 37: // left
293299
var prevHref = $('link[rel="prev"]').prop('href');

0 commit comments

Comments
 (0)