Skip to content

Commit 9bc1c91

Browse files
committed
Regenerated files. Added path to missing models
1 parent a898425 commit 9bc1c91

20 files changed

+502
-99
lines changed

IBPSA/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-sphinx.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,25 @@
5757

5858

5959

60+
body {
61+
62+
padding-top: 60px;
63+
64+
}
65+
.page-top {
66+
67+
top: 60px;
68+
69+
}
70+
71+
72+
73+
.navbar-inner {
74+
padding-left: 12px !important;
75+
padding-right: 12px !important;
76+
}
77+
78+
6079
table {
6180
border: 0;
6281
}

IBPSA/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/bootstrap-sphinx.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,36 @@
9090
$(".bs-sidenav > ul > li > a").addClass("nav-header");
9191

9292

93+
// back to top
94+
setTimeout(function () {
95+
var $sideBar = $(".bs-sidenav");
96+
var $content = $(".content");
97+
98+
// Enlarge content if sidebar is larger.
99+
if ($sideBar.outerHeight(true) > $content.outerHeight(true)) {
100+
$content.css("min-height", $sideBar.outerHeight(true));
101+
}
102+
103+
$sideBar
104+
// Add affix.
105+
.affix({
106+
offset: {
107+
top: function () {
108+
var offsetTop = $sideBar.offset().top;
109+
var sideBarMargin = parseInt($sideBar.css("margin-top"), 10);
110+
var navOuterHeight = $("#navbar").outerHeight(true);
111+
112+
return (this.top = offsetTop - navOuterHeight);
113+
},
114+
bottom: function () {
115+
return (this.bottom = $(".footer").outerHeight(true));
116+
}
117+
}
118+
})
119+
// Trigger to reset if page content is scrolled to bottom.
120+
.trigger("scroll.bs.affix.data-api");
121+
}, 0);
122+
93123

94124
// Local TOC.
95125
patchToc($("ul.localtoc"), 2);

IBPSA/Resources/src/fluid/heatpumps/calibration/doc/build/html/_static/custom.css

Lines changed: 197 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ body{
99
color: #022e4d;
1010
border-radius: 4px;
1111
box-shadow: 2px -2px 5px 0px rgba(0,0,0,0.4);
12+
padding-top: 100px;
1213
}
1314

1415
.starter-template {
@@ -21,18 +22,63 @@ body{
2122
top: 5px;
2223
}
2324
.navbar {
24-
height: 82px;
25-
max-height: 82px;
25+
width: 100%;
26+
left: 0;
27+
right: 0;
28+
height: 80px;
29+
max-height: 80px;
30+
box-sizing: border-box;
31+
margin: 0;
32+
padding: 0;
2633
/* border: none;*/
2734
-webkit-user-select:none;
2835
-moz-user-select:none;
2936
-ms-user-select:none;user-select:none;
3037
}
3138

39+
.navbar > .container-fluid {
40+
display: flex;
41+
align-items: center;
42+
width: 100%;
43+
box-sizing: border-box;
44+
padding: 0 15px;
45+
}
46+
47+
.navbar > .container-fluid .navbar-brand,
48+
.navbar-brand {
49+
display: flex;
50+
align-items: center;
51+
padding: 10px 15px;
52+
height: auto;
53+
min-height: 60px;
54+
margin: 0;
55+
}
56+
57+
.navbar-logo {
58+
max-height: 60px;
59+
height: 60px;
60+
width: auto;
61+
margin-right: 20px;
62+
display: inline-block;
63+
vertical-align: middle;
64+
}
65+
66+
/* Scale down logo on narrow screens */
67+
@media (max-width: 768px) {
68+
.navbar-logo {
69+
max-height: 45px;
70+
height: 45px;
71+
margin-right: 15px;
72+
}
73+
}
74+
3275
.navbar .navbar-nav{
3376
background: #f8f8f8;
3477
margin-bottom: 0px;
35-
margin-left: -20px;
78+
/* margin-left: -15px; */
79+
/* margin-right: -15px; */
80+
/* padding-left: 20px; */
81+
width: 100%;
3682
}
3783

3884

@@ -71,8 +117,61 @@ body{
71117
.navbar-collapse{
72118
border-style: none;
73119
position: absolute;
74-
top: 50px;
120+
top: 80px;
75121
z-index: 100;
122+
overflow: visible;
123+
width: calc(100% - 30px);
124+
left: 15px;
125+
}
126+
127+
/* Dropdown menu styling */
128+
.navbar .navbar-nav > .dropdown {
129+
position: relative;
130+
}
131+
132+
.dropdown-toggle {
133+
position: relative;
134+
}
135+
136+
.dropdown-menu {
137+
display: none !important;
138+
position: absolute;
139+
top: 100%;
140+
left: 0;
141+
z-index: 1000;
142+
float: left;
143+
min-width: 160px;
144+
padding: 5px 0;
145+
margin: 0;
146+
font-size: 14px;
147+
text-align: left;
148+
list-style: none;
149+
background-color: #fff;
150+
border: 1px solid #ccc;
151+
border-radius: 4px;
152+
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
153+
}
154+
155+
.dropdown-menu.show {
156+
display: block !important;
157+
}
158+
159+
.open > .dropdown-menu,
160+
.navbar .navbar-nav > .open > .dropdown-menu {
161+
display: block !important;
162+
}
163+
164+
.dropdown-toggle::after {
165+
display: inline-block;
166+
width: 0;
167+
height: 0;
168+
margin-left: 0.385em;
169+
vertical-align: 0.255em;
170+
content: "";
171+
border-top: 0.3em solid;
172+
border-right: 0.3em solid transparent;
173+
border-bottom: 0;
174+
border-left: 0.3em solid transparent;
76175
}
77176
/* ---------------------------------- */
78177

@@ -81,12 +180,6 @@ img{
81180
max-width: 100%;
82181
}
83182

84-
.navbar > .container-fluid .navbar-brand > img{
85-
position: absolute;
86-
left: 10px;
87-
height: 30px;
88-
}
89-
90183
.footer{
91184
/* background-color: white;
92185
border-color: white; */
@@ -124,8 +217,9 @@ th, td{
124217
padding-right: 1em;
125218
}
126219
th {
127-
background-color: grey;
128-
color: white;
220+
background-color: #f5f5f5;
221+
color: #022e4d;
222+
border: none;
129223
}
130224
.table_with_header tr:nth-child(even) {
131225
background-color: #f2f2f2;
@@ -138,7 +232,7 @@ th {
138232
code, pre{
139233
border: 0;
140234
color: #750000;
141-
#background-color: #f5f5f5;
235+
background-color: #f5f5f5;
142236
}
143237

144238

@@ -152,14 +246,20 @@ div.figure{
152246
border: none;
153247
}
154248

155-
156249
tr.border_top td {
157250
border-top:1pt solid #022e4d;
158251
}
159252
tr.border_bottom td {
160253
border-bottom:1pt solid #022e4d;
161254
}
162255

256+
td.label{
257+
color: #022e4d;
258+
}
259+
table.citation > thead > tr > th, .table.citation > tbody > tr > th, .table.citation > tfoot > tr > th, .table.citation > thead > tr > td, .table.citation > tbody > tr > td, .table.citation > tfoot > tr > td{
260+
border-top: none;
261+
}
262+
163263
h1{
164264
font-size: 2em;
165265
}
@@ -192,5 +292,88 @@ table.citation{
192292
.page-content{
193293
margin: 10px;
194294
}
295+
296+
/* Adjust main content for fixed sidebar */
297+
.body.col-md-9 {
298+
margin-left: 26%;
299+
margin-top: 10px;
300+
}
301+
302+
/* Position sidebar column to not interfere */
303+
.col-md-3 {
304+
width: 0;
305+
padding: 0;
306+
margin: 0;
307+
}
308+
309+
/* Sidebar list styling fix */
310+
.bs-sidenav {
311+
position: fixed;
312+
top: 100px;
313+
left: 15px;
314+
width: 25%;
315+
max-height: calc(100vh - 100px);
316+
overflow-y: auto;
317+
overflow-x: hidden;
318+
}
319+
320+
.bs-sidenav ul {
321+
list-style: none;
322+
padding-left: 0;
323+
margin-left: 0;
324+
}
325+
326+
.bs-sidenav li {
327+
list-style: none;
328+
padding-left: 0;
329+
margin-left: 0;
330+
}
331+
332+
.bs-sidenav > ul > li {
333+
list-style: none;
334+
padding-left: 0;
335+
margin-left: 0;
336+
line-height: 1.5;
337+
}
338+
339+
.bs-sidenav > ul > li > a {
340+
display: block;
341+
padding-left: 0;
342+
margin-left: 0;
343+
}
344+
345+
.bs-sidenav ul ul {
346+
list-style: none;
347+
padding-left: 20px;
348+
margin-left: 0;
349+
}
350+
351+
.bs-sidenav ul ul li {
352+
list-style: none;
353+
padding-left: 0;
354+
margin-left: 0;
355+
}
356+
357+
/* Fix for navigation list items (Previous/Next Chapter) outside ul */
358+
.bs-sidenav > li {
359+
list-style: none;
360+
padding-left: 0;
361+
margin-left: 0;
362+
display: block;
363+
}
364+
365+
.bs-sidenav > li > a {
366+
display: block;
367+
color: #716b7a;
368+
padding: 5px 20px;
369+
text-decoration: none;
370+
}
371+
372+
.bs-sidenav > li > a:hover,
373+
.bs-sidenav > li > a:focus {
374+
text-decoration: none;
375+
background-color: #e5e3e9;
376+
border-right: 1px solid #dbd8e0;
377+
}
195378
/* End stylesheet from main web site -------------------- */
196379
/* ------------------------------------------------------ */

IBPSA/Resources/src/fluid/heatpumps/calibration/doc/build/html/_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: '1.0.0',
2+
VERSION: '1.0.1',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

0 commit comments

Comments
 (0)