Skip to content

Commit 9fb52d4

Browse files
committed
deploy: ffb08dc
1 parent c19d7d5 commit 9fb52d4

Some content is hidden

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

75 files changed

+6536
-7838
lines changed

.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: 7a6ccd79812a71494dbe03d99ba907fe
3+
config: 1404c8d31a9ebb6aacf02dbe9ad2bef2
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_modules/index.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/builtins.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/dashboard_handler.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/flowchart.html

Lines changed: 187 additions & 207 deletions
Large diffs are not rendered by default.

_modules/seamm/graph.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/join_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/node.html

Lines changed: 238 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/parameters.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/plugin_manager.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/seammrc.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/split_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/standard_parameters.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/start_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_edge.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_flowchart.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_job_handler.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_join_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_open.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_publish.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_split_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/tk_start_node.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_modules/seamm/variables.html

Lines changed: 157 additions & 202 deletions
Large diffs are not rendered by default.

_sphinx_design_static/design-tabs.js

Lines changed: 89 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,101 @@
1-
var sd_labels_by_text = {};
1+
// @ts-check
22

3+
// Extra JS capability for selected tabs to be synced
4+
// The selection is stored in local storage so that it persists across page loads.
5+
6+
/**
7+
* @type {Record<string, HTMLElement[]>}
8+
*/
9+
let sd_id_to_elements = {};
10+
const storageKeyPrefix = "sphinx-design-tab-id-";
11+
12+
/**
13+
* Create a key for a tab element.
14+
* @param {HTMLElement} el - The tab element.
15+
* @returns {[string, string, string] | null} - The key.
16+
*
17+
*/
18+
function create_key(el) {
19+
let syncId = el.getAttribute("data-sync-id");
20+
let syncGroup = el.getAttribute("data-sync-group");
21+
if (!syncId || !syncGroup) return null;
22+
return [syncGroup, syncId, syncGroup + "--" + syncId];
23+
}
24+
25+
/**
26+
* Initialize the tab selection.
27+
*
28+
*/
329
function ready() {
4-
const li = document.getElementsByClassName("sd-tab-label");
5-
for (const label of li) {
6-
syncId = label.getAttribute("data-sync-id");
7-
if (syncId) {
8-
label.onclick = onLabelClick;
9-
if (!sd_labels_by_text[syncId]) {
10-
sd_labels_by_text[syncId] = [];
30+
// Find all tabs with sync data
31+
32+
/** @type {string[]} */
33+
let groups = [];
34+
35+
document.querySelectorAll(".sd-tab-label").forEach((label) => {
36+
if (label instanceof HTMLElement) {
37+
let data = create_key(label);
38+
if (data) {
39+
let [group, id, key] = data;
40+
41+
// add click event listener
42+
// @ts-ignore
43+
label.onclick = onSDLabelClick;
44+
45+
// store map of key to elements
46+
if (!sd_id_to_elements[key]) {
47+
sd_id_to_elements[key] = [];
48+
}
49+
sd_id_to_elements[key].push(label);
50+
51+
if (groups.indexOf(group) === -1) {
52+
groups.push(group);
53+
// Check if a specific tab has been selected via URL parameter
54+
const tabParam = new URLSearchParams(window.location.search).get(
55+
group
56+
);
57+
if (tabParam) {
58+
console.log(
59+
"sphinx-design: Selecting tab id for group '" +
60+
group +
61+
"' from URL parameter: " +
62+
tabParam
63+
);
64+
window.sessionStorage.setItem(storageKeyPrefix + group, tabParam);
65+
}
66+
}
67+
68+
// Check is a specific tab has been selected previously
69+
let previousId = window.sessionStorage.getItem(
70+
storageKeyPrefix + group
71+
);
72+
if (previousId === id) {
73+
// console.log(
74+
// "sphinx-design: Selecting tab from session storage: " + id
75+
// );
76+
// @ts-ignore
77+
label.previousElementSibling.checked = true;
78+
}
1179
}
12-
sd_labels_by_text[syncId].push(label);
1380
}
14-
}
81+
});
1582
}
1683

17-
function onLabelClick() {
18-
// Activate other inputs with the same sync id.
19-
syncId = this.getAttribute("data-sync-id");
20-
for (label of sd_labels_by_text[syncId]) {
84+
/**
85+
* Activate other tabs with the same sync id.
86+
*
87+
* @this {HTMLElement} - The element that was clicked.
88+
*/
89+
function onSDLabelClick() {
90+
let data = create_key(this);
91+
if (!data) return;
92+
let [group, id, key] = data;
93+
for (const label of sd_id_to_elements[key]) {
2194
if (label === this) continue;
95+
// @ts-ignore
2296
label.previousElementSibling.checked = true;
2397
}
24-
window.localStorage.setItem("sphinx-design-last-tab", syncId);
98+
window.sessionStorage.setItem(storageKeyPrefix + group, id);
2599
}
26100

27101
document.addEventListener("DOMContentLoaded", ready, false);
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_static/design-tabs.js

Lines changed: 89 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,101 @@
1-
var sd_labels_by_text = {};
1+
// @ts-check
22

3+
// Extra JS capability for selected tabs to be synced
4+
// The selection is stored in local storage so that it persists across page loads.
5+
6+
/**
7+
* @type {Record<string, HTMLElement[]>}
8+
*/
9+
let sd_id_to_elements = {};
10+
const storageKeyPrefix = "sphinx-design-tab-id-";
11+
12+
/**
13+
* Create a key for a tab element.
14+
* @param {HTMLElement} el - The tab element.
15+
* @returns {[string, string, string] | null} - The key.
16+
*
17+
*/
18+
function create_key(el) {
19+
let syncId = el.getAttribute("data-sync-id");
20+
let syncGroup = el.getAttribute("data-sync-group");
21+
if (!syncId || !syncGroup) return null;
22+
return [syncGroup, syncId, syncGroup + "--" + syncId];
23+
}
24+
25+
/**
26+
* Initialize the tab selection.
27+
*
28+
*/
329
function ready() {
4-
const li = document.getElementsByClassName("sd-tab-label");
5-
for (const label of li) {
6-
syncId = label.getAttribute("data-sync-id");
7-
if (syncId) {
8-
label.onclick = onLabelClick;
9-
if (!sd_labels_by_text[syncId]) {
10-
sd_labels_by_text[syncId] = [];
30+
// Find all tabs with sync data
31+
32+
/** @type {string[]} */
33+
let groups = [];
34+
35+
document.querySelectorAll(".sd-tab-label").forEach((label) => {
36+
if (label instanceof HTMLElement) {
37+
let data = create_key(label);
38+
if (data) {
39+
let [group, id, key] = data;
40+
41+
// add click event listener
42+
// @ts-ignore
43+
label.onclick = onSDLabelClick;
44+
45+
// store map of key to elements
46+
if (!sd_id_to_elements[key]) {
47+
sd_id_to_elements[key] = [];
48+
}
49+
sd_id_to_elements[key].push(label);
50+
51+
if (groups.indexOf(group) === -1) {
52+
groups.push(group);
53+
// Check if a specific tab has been selected via URL parameter
54+
const tabParam = new URLSearchParams(window.location.search).get(
55+
group
56+
);
57+
if (tabParam) {
58+
console.log(
59+
"sphinx-design: Selecting tab id for group '" +
60+
group +
61+
"' from URL parameter: " +
62+
tabParam
63+
);
64+
window.sessionStorage.setItem(storageKeyPrefix + group, tabParam);
65+
}
66+
}
67+
68+
// Check is a specific tab has been selected previously
69+
let previousId = window.sessionStorage.getItem(
70+
storageKeyPrefix + group
71+
);
72+
if (previousId === id) {
73+
// console.log(
74+
// "sphinx-design: Selecting tab from session storage: " + id
75+
// );
76+
// @ts-ignore
77+
label.previousElementSibling.checked = true;
78+
}
1179
}
12-
sd_labels_by_text[syncId].push(label);
1380
}
14-
}
81+
});
1582
}
1683

17-
function onLabelClick() {
18-
// Activate other inputs with the same sync id.
19-
syncId = this.getAttribute("data-sync-id");
20-
for (label of sd_labels_by_text[syncId]) {
84+
/**
85+
* Activate other tabs with the same sync id.
86+
*
87+
* @this {HTMLElement} - The element that was clicked.
88+
*/
89+
function onSDLabelClick() {
90+
let data = create_key(this);
91+
if (!data) return;
92+
let [group, id, key] = data;
93+
for (const label of sd_id_to_elements[key]) {
2194
if (label === this) continue;
95+
// @ts-ignore
2296
label.previousElementSibling.checked = true;
2397
}
24-
window.localStorage.setItem("sphinx-design-last-tab", syncId);
98+
window.sessionStorage.setItem(storageKeyPrefix + group, id);
2599
}
26100

27101
document.addEventListener("DOMContentLoaded", ready, false);

_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '2024.5.27',
2+
VERSION: '2024.6.27',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

_static/pygments.css

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -3,77 +3,77 @@ html[data-theme="light"] .highlight td.linenos .normal { color: inherit; backgro
33
html[data-theme="light"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
44
html[data-theme="light"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
55
html[data-theme="light"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
6-
html[data-theme="light"] .highlight .hll { background-color: #7971292e }
7-
html[data-theme="light"] .highlight { background: #fefefe; color: #545454 }
8-
html[data-theme="light"] .highlight .c { color: #797129 } /* Comment */
9-
html[data-theme="light"] .highlight .err { color: #d91e18 } /* Error */
10-
html[data-theme="light"] .highlight .k { color: #7928a1 } /* Keyword */
11-
html[data-theme="light"] .highlight .l { color: #797129 } /* Literal */
12-
html[data-theme="light"] .highlight .n { color: #545454 } /* Name */
13-
html[data-theme="light"] .highlight .o { color: #008000 } /* Operator */
14-
html[data-theme="light"] .highlight .p { color: #545454 } /* Punctuation */
15-
html[data-theme="light"] .highlight .ch { color: #797129 } /* Comment.Hashbang */
16-
html[data-theme="light"] .highlight .cm { color: #797129 } /* Comment.Multiline */
17-
html[data-theme="light"] .highlight .cp { color: #797129 } /* Comment.Preproc */
18-
html[data-theme="light"] .highlight .cpf { color: #797129 } /* Comment.PreprocFile */
19-
html[data-theme="light"] .highlight .c1 { color: #797129 } /* Comment.Single */
20-
html[data-theme="light"] .highlight .cs { color: #797129 } /* Comment.Special */
21-
html[data-theme="light"] .highlight .gd { color: #007faa } /* Generic.Deleted */
6+
html[data-theme="light"] .highlight .hll { background-color: #fae4c2 }
7+
html[data-theme="light"] .highlight { background: #fefefe; color: #080808 }
8+
html[data-theme="light"] .highlight .c { color: #515151 } /* Comment */
9+
html[data-theme="light"] .highlight .err { color: #a12236 } /* Error */
10+
html[data-theme="light"] .highlight .k { color: #6730c5 } /* Keyword */
11+
html[data-theme="light"] .highlight .l { color: #7f4707 } /* Literal */
12+
html[data-theme="light"] .highlight .n { color: #080808 } /* Name */
13+
html[data-theme="light"] .highlight .o { color: #00622f } /* Operator */
14+
html[data-theme="light"] .highlight .p { color: #080808 } /* Punctuation */
15+
html[data-theme="light"] .highlight .ch { color: #515151 } /* Comment.Hashbang */
16+
html[data-theme="light"] .highlight .cm { color: #515151 } /* Comment.Multiline */
17+
html[data-theme="light"] .highlight .cp { color: #515151 } /* Comment.Preproc */
18+
html[data-theme="light"] .highlight .cpf { color: #515151 } /* Comment.PreprocFile */
19+
html[data-theme="light"] .highlight .c1 { color: #515151 } /* Comment.Single */
20+
html[data-theme="light"] .highlight .cs { color: #515151 } /* Comment.Special */
21+
html[data-theme="light"] .highlight .gd { color: #005b82 } /* Generic.Deleted */
2222
html[data-theme="light"] .highlight .ge { font-style: italic } /* Generic.Emph */
23-
html[data-theme="light"] .highlight .gh { color: #007faa } /* Generic.Heading */
23+
html[data-theme="light"] .highlight .gh { color: #005b82 } /* Generic.Heading */
2424
html[data-theme="light"] .highlight .gs { font-weight: bold } /* Generic.Strong */
25-
html[data-theme="light"] .highlight .gu { color: #007faa } /* Generic.Subheading */
26-
html[data-theme="light"] .highlight .kc { color: #7928a1 } /* Keyword.Constant */
27-
html[data-theme="light"] .highlight .kd { color: #7928a1 } /* Keyword.Declaration */
28-
html[data-theme="light"] .highlight .kn { color: #7928a1 } /* Keyword.Namespace */
29-
html[data-theme="light"] .highlight .kp { color: #7928a1 } /* Keyword.Pseudo */
30-
html[data-theme="light"] .highlight .kr { color: #7928a1 } /* Keyword.Reserved */
31-
html[data-theme="light"] .highlight .kt { color: #797129 } /* Keyword.Type */
32-
html[data-theme="light"] .highlight .ld { color: #797129 } /* Literal.Date */
33-
html[data-theme="light"] .highlight .m { color: #797129 } /* Literal.Number */
34-
html[data-theme="light"] .highlight .s { color: #008000 } /* Literal.String */
35-
html[data-theme="light"] .highlight .na { color: #797129 } /* Name.Attribute */
36-
html[data-theme="light"] .highlight .nb { color: #797129 } /* Name.Builtin */
37-
html[data-theme="light"] .highlight .nc { color: #007faa } /* Name.Class */
38-
html[data-theme="light"] .highlight .no { color: #007faa } /* Name.Constant */
39-
html[data-theme="light"] .highlight .nd { color: #797129 } /* Name.Decorator */
40-
html[data-theme="light"] .highlight .ni { color: #008000 } /* Name.Entity */
41-
html[data-theme="light"] .highlight .ne { color: #7928a1 } /* Name.Exception */
42-
html[data-theme="light"] .highlight .nf { color: #007faa } /* Name.Function */
43-
html[data-theme="light"] .highlight .nl { color: #797129 } /* Name.Label */
44-
html[data-theme="light"] .highlight .nn { color: #545454 } /* Name.Namespace */
45-
html[data-theme="light"] .highlight .nx { color: #545454 } /* Name.Other */
46-
html[data-theme="light"] .highlight .py { color: #007faa } /* Name.Property */
47-
html[data-theme="light"] .highlight .nt { color: #007faa } /* Name.Tag */
48-
html[data-theme="light"] .highlight .nv { color: #d91e18 } /* Name.Variable */
49-
html[data-theme="light"] .highlight .ow { color: #7928a1 } /* Operator.Word */
50-
html[data-theme="light"] .highlight .pm { color: #545454 } /* Punctuation.Marker */
51-
html[data-theme="light"] .highlight .w { color: #545454 } /* Text.Whitespace */
52-
html[data-theme="light"] .highlight .mb { color: #797129 } /* Literal.Number.Bin */
53-
html[data-theme="light"] .highlight .mf { color: #797129 } /* Literal.Number.Float */
54-
html[data-theme="light"] .highlight .mh { color: #797129 } /* Literal.Number.Hex */
55-
html[data-theme="light"] .highlight .mi { color: #797129 } /* Literal.Number.Integer */
56-
html[data-theme="light"] .highlight .mo { color: #797129 } /* Literal.Number.Oct */
57-
html[data-theme="light"] .highlight .sa { color: #008000 } /* Literal.String.Affix */
58-
html[data-theme="light"] .highlight .sb { color: #008000 } /* Literal.String.Backtick */
59-
html[data-theme="light"] .highlight .sc { color: #008000 } /* Literal.String.Char */
60-
html[data-theme="light"] .highlight .dl { color: #008000 } /* Literal.String.Delimiter */
61-
html[data-theme="light"] .highlight .sd { color: #008000 } /* Literal.String.Doc */
62-
html[data-theme="light"] .highlight .s2 { color: #008000 } /* Literal.String.Double */
63-
html[data-theme="light"] .highlight .se { color: #008000 } /* Literal.String.Escape */
64-
html[data-theme="light"] .highlight .sh { color: #008000 } /* Literal.String.Heredoc */
65-
html[data-theme="light"] .highlight .si { color: #008000 } /* Literal.String.Interpol */
66-
html[data-theme="light"] .highlight .sx { color: #008000 } /* Literal.String.Other */
67-
html[data-theme="light"] .highlight .sr { color: #d91e18 } /* Literal.String.Regex */
68-
html[data-theme="light"] .highlight .s1 { color: #008000 } /* Literal.String.Single */
69-
html[data-theme="light"] .highlight .ss { color: #007faa } /* Literal.String.Symbol */
70-
html[data-theme="light"] .highlight .bp { color: #797129 } /* Name.Builtin.Pseudo */
71-
html[data-theme="light"] .highlight .fm { color: #007faa } /* Name.Function.Magic */
72-
html[data-theme="light"] .highlight .vc { color: #d91e18 } /* Name.Variable.Class */
73-
html[data-theme="light"] .highlight .vg { color: #d91e18 } /* Name.Variable.Global */
74-
html[data-theme="light"] .highlight .vi { color: #d91e18 } /* Name.Variable.Instance */
75-
html[data-theme="light"] .highlight .vm { color: #797129 } /* Name.Variable.Magic */
76-
html[data-theme="light"] .highlight .il { color: #797129 } /* Literal.Number.Integer.Long */
25+
html[data-theme="light"] .highlight .gu { color: #005b82 } /* Generic.Subheading */
26+
html[data-theme="light"] .highlight .kc { color: #6730c5 } /* Keyword.Constant */
27+
html[data-theme="light"] .highlight .kd { color: #6730c5 } /* Keyword.Declaration */
28+
html[data-theme="light"] .highlight .kn { color: #6730c5 } /* Keyword.Namespace */
29+
html[data-theme="light"] .highlight .kp { color: #6730c5 } /* Keyword.Pseudo */
30+
html[data-theme="light"] .highlight .kr { color: #6730c5 } /* Keyword.Reserved */
31+
html[data-theme="light"] .highlight .kt { color: #7f4707 } /* Keyword.Type */
32+
html[data-theme="light"] .highlight .ld { color: #7f4707 } /* Literal.Date */
33+
html[data-theme="light"] .highlight .m { color: #7f4707 } /* Literal.Number */
34+
html[data-theme="light"] .highlight .s { color: #00622f } /* Literal.String */
35+
html[data-theme="light"] .highlight .na { color: #912583 } /* Name.Attribute */
36+
html[data-theme="light"] .highlight .nb { color: #7f4707 } /* Name.Builtin */
37+
html[data-theme="light"] .highlight .nc { color: #005b82 } /* Name.Class */
38+
html[data-theme="light"] .highlight .no { color: #005b82 } /* Name.Constant */
39+
html[data-theme="light"] .highlight .nd { color: #7f4707 } /* Name.Decorator */
40+
html[data-theme="light"] .highlight .ni { color: #00622f } /* Name.Entity */
41+
html[data-theme="light"] .highlight .ne { color: #6730c5 } /* Name.Exception */
42+
html[data-theme="light"] .highlight .nf { color: #005b82 } /* Name.Function */
43+
html[data-theme="light"] .highlight .nl { color: #7f4707 } /* Name.Label */
44+
html[data-theme="light"] .highlight .nn { color: #080808 } /* Name.Namespace */
45+
html[data-theme="light"] .highlight .nx { color: #080808 } /* Name.Other */
46+
html[data-theme="light"] .highlight .py { color: #005b82 } /* Name.Property */
47+
html[data-theme="light"] .highlight .nt { color: #005b82 } /* Name.Tag */
48+
html[data-theme="light"] .highlight .nv { color: #a12236 } /* Name.Variable */
49+
html[data-theme="light"] .highlight .ow { color: #6730c5 } /* Operator.Word */
50+
html[data-theme="light"] .highlight .pm { color: #080808 } /* Punctuation.Marker */
51+
html[data-theme="light"] .highlight .w { color: #080808 } /* Text.Whitespace */
52+
html[data-theme="light"] .highlight .mb { color: #7f4707 } /* Literal.Number.Bin */
53+
html[data-theme="light"] .highlight .mf { color: #7f4707 } /* Literal.Number.Float */
54+
html[data-theme="light"] .highlight .mh { color: #7f4707 } /* Literal.Number.Hex */
55+
html[data-theme="light"] .highlight .mi { color: #7f4707 } /* Literal.Number.Integer */
56+
html[data-theme="light"] .highlight .mo { color: #7f4707 } /* Literal.Number.Oct */
57+
html[data-theme="light"] .highlight .sa { color: #00622f } /* Literal.String.Affix */
58+
html[data-theme="light"] .highlight .sb { color: #00622f } /* Literal.String.Backtick */
59+
html[data-theme="light"] .highlight .sc { color: #00622f } /* Literal.String.Char */
60+
html[data-theme="light"] .highlight .dl { color: #00622f } /* Literal.String.Delimiter */
61+
html[data-theme="light"] .highlight .sd { color: #00622f } /* Literal.String.Doc */
62+
html[data-theme="light"] .highlight .s2 { color: #00622f } /* Literal.String.Double */
63+
html[data-theme="light"] .highlight .se { color: #00622f } /* Literal.String.Escape */
64+
html[data-theme="light"] .highlight .sh { color: #00622f } /* Literal.String.Heredoc */
65+
html[data-theme="light"] .highlight .si { color: #00622f } /* Literal.String.Interpol */
66+
html[data-theme="light"] .highlight .sx { color: #00622f } /* Literal.String.Other */
67+
html[data-theme="light"] .highlight .sr { color: #a12236 } /* Literal.String.Regex */
68+
html[data-theme="light"] .highlight .s1 { color: #00622f } /* Literal.String.Single */
69+
html[data-theme="light"] .highlight .ss { color: #005b82 } /* Literal.String.Symbol */
70+
html[data-theme="light"] .highlight .bp { color: #7f4707 } /* Name.Builtin.Pseudo */
71+
html[data-theme="light"] .highlight .fm { color: #005b82 } /* Name.Function.Magic */
72+
html[data-theme="light"] .highlight .vc { color: #a12236 } /* Name.Variable.Class */
73+
html[data-theme="light"] .highlight .vg { color: #a12236 } /* Name.Variable.Global */
74+
html[data-theme="light"] .highlight .vi { color: #a12236 } /* Name.Variable.Instance */
75+
html[data-theme="light"] .highlight .vm { color: #7f4707 } /* Name.Variable.Magic */
76+
html[data-theme="light"] .highlight .il { color: #7f4707 } /* Literal.Number.Integer.Long */
7777
html[data-theme="dark"] .highlight pre { line-height: 125%; }
7878
html[data-theme="dark"] .highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
7979
html[data-theme="dark"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }

_static/scripts/bootstrap.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)