Skip to content

Commit cdcfa78

Browse files
committed
update changelog
1 parent 8fe23a5 commit cdcfa78

21 files changed

+1322
-663
lines changed

utilities/manual/build/html/CHANGELOG.html

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

utilities/manual/build/html/_static/basic.css

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
/*
2-
* basic.css
3-
* ~~~~~~~~~
4-
*
52
* Sphinx stylesheet -- basic theme.
6-
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8-
* :license: BSD, see LICENSE for details.
9-
*
103
*/
114

125
/* -- main layout ----------------------------------------------------------- */
@@ -115,15 +108,11 @@ img {
115108
/* -- search page ----------------------------------------------------------- */
116109

117110
ul.search {
118-
margin: 10px 0 0 20px;
119-
padding: 0;
111+
margin-top: 10px;
120112
}
121113

122114
ul.search li {
123-
padding: 5px 0 5px 20px;
124-
background-image: url(file.png);
125-
background-repeat: no-repeat;
126-
background-position: 0 7px;
115+
padding: 5px 0;
127116
}
128117

129118
ul.search li a {

utilities/manual/build/html/_static/doctools.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
/*
2-
* doctools.js
3-
* ~~~~~~~~~~~
4-
*
52
* Base JavaScript utilities for all Sphinx HTML documentation.
6-
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8-
* :license: BSD, see LICENSE for details.
9-
*
103
*/
114
"use strict";
125

utilities/manual/build/html/_static/language_data.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
/*
2-
* language_data.js
3-
* ~~~~~~~~~~~~~~~~
4-
*
52
* This script contains the language-specific data used by searchtools.js,
63
* namely the list of stopwords, stemmer, scorer and splitter.
7-
*
8-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
9-
* :license: BSD, see LICENSE for details.
10-
*
114
*/
125

136
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
147

158

16-
/* Non-minified version is copied as a separate JS file, is available */
9+
/* Non-minified version is copied as a separate JS file, if available */
1710

1811
/**
1912
* Porter Stemmer

utilities/manual/build/html/_static/scripts/furo.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ import * as Gumshoe from "./gumshoe-patched.js";
55
////////////////////////////////////////////////////////////////////////////////
66
var tocScroll = null;
77
var header = null;
8-
var lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;
8+
var lastScrollTop = document.documentElement.scrollTop;
99
const GO_TO_TOP_OFFSET = 64;
1010

11-
function scrollHandlerForHeader() {
12-
if (Math.floor(header.getBoundingClientRect().top) == 0) {
11+
function scrollHandlerForHeader(positionY) {
12+
const headerTop = Math.floor(header.getBoundingClientRect().top);
13+
14+
console.log(`headerTop: ${headerTop}`);
15+
if (headerTop == 0 && positionY != headerTop) {
1316
header.classList.add("scrolled");
1417
} else {
1518
header.classList.remove("scrolled");
@@ -62,7 +65,7 @@ function scrollHandlerForTOC(positionY) {
6265
}
6366

6467
function scrollHandler(positionY) {
65-
scrollHandlerForHeader();
68+
scrollHandlerForHeader(positionY);
6669
scrollHandlerForBackToTop(positionY);
6770
scrollHandlerForTOC(positionY);
6871
}
@@ -141,7 +144,7 @@ function setupScrollSpy() {
141144
navClass: "scroll-current",
142145
offset: () => {
143146
let rem = parseFloat(getComputedStyle(document.documentElement).fontSize);
144-
return header.getBoundingClientRect().height + 0.5 * rem + 1;
147+
return header.getBoundingClientRect().height + 2.5 * rem + 1;
145148
},
146149
});
147150
}

0 commit comments

Comments
 (0)