hdoc-tools 0.62.5 → 0.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/editor/dist/assets/{index-BtxvGZHW.js → index-Dknn5g5A.js} +5 -4
- package/editor/dist/index.html +13 -13
- package/hdoc-build.js +5 -3
- package/hdoc-content-routes.js +136 -4
- package/hdoc-serve.js +26 -3
- package/package.json +1 -1
- package/ui/css/theme-default/styles/base.css +86 -21
- package/ui/css/theme-default/styles/components/api-doc.css +6 -3
- package/ui/css/theme-default/styles/components/content.css +140 -39
- package/ui/css/theme-default/styles/components/custom-block.css +1 -1
- package/ui/css/theme-default/styles/components/htl-doc.css +243 -64
- package/ui/css/theme-default/styles/components/htl-library.css +152 -0
- package/ui/css/theme-default/styles/components/htl-search.css +267 -0
- package/ui/css/theme-default/styles/components/sidebar.css +59 -16
- package/ui/css/theme-default/styles/fonts.css +17 -3
- package/ui/css/theme-default/styles/htldoc.layouts.css +756 -87
- package/ui/css/theme-default/styles/vars.css +40 -35
- package/ui/favicon.svg +64 -0
- package/ui/images/hornbill-logo-full-reversed.svg +92 -0
- package/ui/images/hornbill-logo-full.svg +92 -0
- package/ui/images/hug_library.jpg +0 -0
- package/ui/images/mcp-catalog.svg +9 -0
- package/ui/images/products/hornbill-square.svg +1 -0
- package/ui/index.html +1106 -342
- package/ui/js/bootstrap.js +89 -0
- package/ui/js/doc.hornbill.js +3156 -751
- package/ui/js/hb.vue.js +121 -0
- package/ui/js/highlightjs/highlight.pack.js +1513 -2
- package/ui/js/highlightjs/styles/vs2015-accessible.css +141 -0
- package/ui/js/highlightjs-badge.js +41 -58
- package/ui/js/mermaid.min.js +1447 -1295
- package/ui/js/webcomponents/hdocApprove.js +115 -0
- package/ui/js/highlightjs/styles/brown-paper.css +0 -64
- package/ui/js/highlightjs/styles/brown-papersq.png +0 -0
- package/ui/js/highlightjs/styles/codepen-embed.css +0 -60
- package/ui/js/highlightjs/styles/color-brewer.css +0 -71
- package/ui/js/highlightjs/styles/darcula.css +0 -77
- package/ui/js/highlightjs/styles/dark.css +0 -63
- package/ui/js/highlightjs/styles/darkula.css +0 -6
- package/ui/js/highlightjs/styles/default.css +0 -99
- package/ui/js/highlightjs/styles/dracula.css +0 -76
- package/ui/js/highlightjs/styles/far.css +0 -71
- package/ui/js/highlightjs/styles/foundation.css +0 -88
- package/ui/js/highlightjs/styles/github-gist.css +0 -71
- package/ui/js/highlightjs/styles/github-mm.css +0 -71
- package/ui/js/highlightjs/styles/github.css +0 -99
- package/ui/js/highlightjs/styles/googlecode.css +0 -89
- package/ui/js/highlightjs/styles/grayscale.css +0 -101
- package/ui/js/highlightjs/styles/idea.css +0 -97
- package/ui/js/highlightjs/styles/ir-black.css +0 -73
- package/ui/js/highlightjs/styles/kavadocs.css +0 -71
- package/ui/js/highlightjs/styles/kavadocsdark.css +0 -120
- package/ui/js/highlightjs/styles/kimbie.dark.css +0 -74
- package/ui/js/highlightjs/styles/kimbie.light.css +0 -74
- package/ui/js/highlightjs/styles/magula.css +0 -70
- package/ui/js/highlightjs/styles/mono-blue.css +0 -59
- package/ui/js/highlightjs/styles/monokai-sublime.css +0 -83
- package/ui/js/highlightjs/styles/monokai.css +0 -70
- package/ui/js/highlightjs/styles/obsidian.css +0 -88
- package/ui/js/highlightjs/styles/paraiso-dark.css +0 -72
- package/ui/js/highlightjs/styles/paraiso-light.css +0 -72
- package/ui/js/highlightjs/styles/railscasts.css +0 -106
- package/ui/js/highlightjs/styles/rainbow.css +0 -85
- package/ui/js/highlightjs/styles/solarized-dark.css +0 -84
- package/ui/js/highlightjs/styles/solarized-light.css +0 -84
- package/ui/js/highlightjs/styles/sunburst.css +0 -102
- package/ui/js/highlightjs/styles/twilight.css +0 -97
- package/ui/js/highlightjs/styles/vs.css +0 -68
- package/ui/js/highlightjs/styles/vs2015.css +0 -117
- package/ui/js/highlightjs/styles/xcode.css +0 -104
- package/ui/js/highlightjs/styles/zenburn.css +0 -80
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* base doc content classes*/
|
|
2
2
|
.DocContent .content-wrapper
|
|
3
3
|
{
|
|
4
|
-
padding:
|
|
4
|
+
padding: 10px 0px;
|
|
5
5
|
margin: 0 0;
|
|
6
6
|
overflow: initial;
|
|
7
7
|
max-width:1500px;
|
|
@@ -13,15 +13,9 @@
|
|
|
13
13
|
position:relative;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
/* The container is a flex row holding the content pane and the TOC. The
|
|
17
|
-
content pane does all the flexing (basis 0, min-width 0 so wide content -
|
|
18
|
-
tables, code blocks - cannot force it wider); the TOC keeps a fixed,
|
|
19
|
-
non-shrinking basis. Giving both children a width made the row
|
|
20
|
-
over-committed, so both shrank pro-rata and the TOC collapsed to ~118px. */
|
|
21
16
|
.DocContent .injected-document-content
|
|
22
17
|
{
|
|
23
|
-
|
|
24
|
-
min-width: 0;
|
|
18
|
+
width: 100%;
|
|
25
19
|
}
|
|
26
20
|
|
|
27
21
|
.DocContent .injected-document-toc
|
|
@@ -29,12 +23,9 @@
|
|
|
29
23
|
height: fit-content;
|
|
30
24
|
display:none;
|
|
31
25
|
margin:0 0 0 50px;
|
|
32
|
-
|
|
26
|
+
width:400px;
|
|
33
27
|
}
|
|
34
28
|
|
|
35
|
-
.DocContent .injected-document-toc .H2{
|
|
36
|
-
|
|
37
|
-
}
|
|
38
29
|
.DocContent .injected-document-toc .H3{
|
|
39
30
|
padding-left:10px;
|
|
40
31
|
|
|
@@ -69,59 +60,169 @@
|
|
|
69
60
|
}
|
|
70
61
|
/* eof nav tabs in doc content */
|
|
71
62
|
|
|
63
|
+
/* No ".tab-content" rules here any more. The local <tabs> transformer in doc.hornbill.js emits
|
|
64
|
+
ul.nav.nav-tabs and toggles d-none on the <tab> elements directly - it never creates the
|
|
65
|
+
Bootstrap .tab-content/.tab-pane wrappers those four rules were scoped to, so they could not
|
|
66
|
+
match under any content. (.code-badge itself is styled in htl-doc.css and is live.) */
|
|
72
67
|
|
|
68
|
+
/* WCAG AAA: Improve contrast for inactive code tab buttons */
|
|
69
|
+
.DocContent .nav-tabs .nav-link {
|
|
70
|
+
color: #0050c7;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.DocContent .nav-tabs .nav-link.active {
|
|
74
|
+
color: #000000;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* CODE BLOCK - make sure doesn't escape parent container width */
|
|
73
78
|
.DocContent .code-badge-pre
|
|
74
79
|
{
|
|
75
80
|
max-width: 100%!important;
|
|
76
81
|
min-width: 100%!important;
|
|
77
82
|
}
|
|
78
83
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/* LAYOUT MODS */
|
|
87
|
+
|
|
88
|
+
/* table-list*/
|
|
89
|
+
.DocContent.article-wide .injected-document-content
|
|
90
|
+
{
|
|
91
|
+
/* take up max width - overrides max-width set in [.DocContent .injected-document-content] */
|
|
92
|
+
max-width:100%;
|
|
85
93
|
}
|
|
86
94
|
|
|
95
|
+
.DocContent.article-wide .injected-document-content table
|
|
96
|
+
{
|
|
97
|
+
/* make all tables 100% */
|
|
98
|
+
width:100%;
|
|
99
|
+
display:table;
|
|
100
|
+
}
|
|
87
101
|
|
|
88
|
-
/* style overrides to apply on screens that are
|
|
102
|
+
/* style overrides to apply on screens that are 1790px and wider */
|
|
89
103
|
@media (min-width: 1500px) {
|
|
90
|
-
|
|
104
|
+
|
|
91
105
|
.DocContent .injected-document-toc
|
|
92
106
|
{
|
|
93
107
|
display:inline-block;
|
|
108
|
+
/* Do NOT let the TOC flex-shrink. .injected-document-container is a flex row
|
|
109
|
+
(.hb-container-horizontal) whose children inherit flex-shrink:1 from
|
|
110
|
+
htldoc.layouts.css. The content pane declares width:100%, so its flex-basis is the
|
|
111
|
+
full container width; add the TOC's 400px basis and the row is over-committed on every
|
|
112
|
+
screen, so BOTH items shrank pro-rata and the TOC collapsed to ~118px - the "squished
|
|
113
|
+
table of contents". The 900px content cap below only fires for .article-toc, i.e. only
|
|
114
|
+
when a page's frontmatter declares layout: article-toc, which most pages do not - so
|
|
115
|
+
the cap cannot be relied on to keep the row within budget. Fixed here instead: the TOC
|
|
116
|
+
takes a non-shrinking basis and the content pane absorbs all of the flexing.
|
|
117
|
+
clamp() rather than a flat 400px so the TOC gives some width back at the low end of
|
|
118
|
+
this breakpoint (400px flat left the content pane at 650px at exactly 1500px). Wide
|
|
119
|
+
content does not need the content pane to grow - code blocks and tables scroll
|
|
120
|
+
themselves (overflow-x:auto in htl-doc.css). */
|
|
121
|
+
flex: 0 0 clamp(260px, 26%, 400px);
|
|
122
|
+
width: auto;
|
|
123
|
+
margin-left: clamp(24px, 3%, 50px);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.DocContent .injected-document-content
|
|
127
|
+
{
|
|
128
|
+
/* basis 0 + grow, not the declared width:100%, so this pane is what yields width;
|
|
129
|
+
min-width:0 defeats the automatic minimum size (max-content), which a long
|
|
130
|
+
unwrapped code line would otherwise use to push the TOC out again */
|
|
131
|
+
flex: 1 1 0;
|
|
132
|
+
min-width: 0;
|
|
133
|
+
width: auto;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.DocContent.article-toc .injected-document-content
|
|
137
|
+
{
|
|
138
|
+
width: 900px;
|
|
94
139
|
}
|
|
95
140
|
|
|
96
|
-
/* Room for the TOC comes from its own flex basis now - a width here would be
|
|
97
|
-
ignored anyway (flex-basis 0 on the content pane wins over width). */
|
|
98
141
|
|
|
99
142
|
}
|
|
100
143
|
|
|
101
|
-
/*
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
144
|
+
/* ---- Narrow-screen TOC (hamburger fallback) ---- */
|
|
145
|
+
/* Hidden by default; at >=1500px the inline .injected-document-toc is shown instead (see media query above) */
|
|
146
|
+
.DocContent .toc-mobile
|
|
147
|
+
{
|
|
148
|
+
display:none;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@media (max-width: 1499.98px) {
|
|
152
|
+
|
|
153
|
+
.DocContent .toc-mobile
|
|
105
154
|
{
|
|
106
|
-
|
|
155
|
+
display:block;
|
|
107
156
|
}
|
|
108
|
-
}
|
|
109
157
|
|
|
158
|
+
.DocContent .toc-mobile-btn
|
|
159
|
+
{
|
|
160
|
+
position:fixed;
|
|
161
|
+
right:20px;
|
|
162
|
+
/* tablet / small-laptop: vertically centred on the book title band. The variable is
|
|
163
|
+
measured and set by positionTocMobileBtn() (doc.hornbill.js); 74px is the fallback
|
|
164
|
+
before the first measure (dock just below the 58px toolbar) */
|
|
165
|
+
top:var(--toc-mobile-btn-top, 74px);
|
|
166
|
+
z-index:1000;
|
|
167
|
+
width:48px;
|
|
168
|
+
height:48px;
|
|
169
|
+
border-radius:50%;
|
|
170
|
+
border:none;
|
|
171
|
+
background:var(--htl-c-brand);
|
|
172
|
+
color:var(--htl-c-text-dark-1);
|
|
173
|
+
box-shadow:var(--htl-shadow-3);
|
|
174
|
+
font-size:1.4rem;
|
|
175
|
+
display:flex;
|
|
176
|
+
align-items:center;
|
|
177
|
+
justify-content:center;
|
|
178
|
+
cursor:pointer;
|
|
179
|
+
}
|
|
110
180
|
|
|
181
|
+
.DocContent .toc-mobile-btn:hover
|
|
182
|
+
{
|
|
183
|
+
filter:brightness(1.05);
|
|
184
|
+
}
|
|
111
185
|
|
|
112
|
-
|
|
186
|
+
.DocContent .toc-mobile-backdrop
|
|
187
|
+
{
|
|
188
|
+
position:fixed;
|
|
189
|
+
inset:0;
|
|
190
|
+
background:rgba(0,0,0,0.4);
|
|
191
|
+
z-index:1000;
|
|
192
|
+
}
|
|
113
193
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
194
|
+
.DocContent .toc-mobile-panel
|
|
195
|
+
{
|
|
196
|
+
position:fixed;
|
|
197
|
+
top:0;
|
|
198
|
+
right:0;
|
|
199
|
+
height:100%;
|
|
200
|
+
width:85%;
|
|
201
|
+
max-width:360px;
|
|
202
|
+
background:var(--htl-c-bg);
|
|
203
|
+
box-shadow:var(--htl-shadow-3);
|
|
204
|
+
z-index:1001;
|
|
205
|
+
overflow-y:auto;
|
|
206
|
+
padding:20px;
|
|
207
|
+
transform:translateX(100%);
|
|
208
|
+
transition:transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.DocContent .toc-mobile-panel.open
|
|
212
|
+
{
|
|
213
|
+
transform:translateX(0);
|
|
214
|
+
}
|
|
119
215
|
}
|
|
120
216
|
|
|
121
|
-
|
|
122
|
-
{
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
217
|
+
/* mobile: move the floating button to the bottom (thumb reach), toolbar search is hidden here */
|
|
218
|
+
@media (max-width: 602px) {
|
|
219
|
+
|
|
220
|
+
.DocContent .toc-mobile-btn
|
|
221
|
+
{
|
|
222
|
+
top:auto;
|
|
223
|
+
bottom:20px;
|
|
224
|
+
}
|
|
126
225
|
}
|
|
127
226
|
|
|
227
|
+
|
|
228
|
+
|