@mgks/docmd 0.2.7 → 0.2.9
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/.github/CONTRIBUTING.md +129 -0
- package/.github/workflows/publish.yml +3 -1
- package/README.md +119 -82
- package/config.js +13 -1
- package/docs/configuration.md +29 -1
- package/docs/content/containers/changelogs.md +128 -0
- package/docs/content/containers/collapsible.md +89 -0
- package/docs/content/markdown-syntax.md +32 -0
- package/docs/contributing.md +8 -0
- package/package.json +3 -2
- package/src/assets/css/docmd-main.css +507 -299
- package/src/assets/css/docmd-theme-retro.css +860 -1
- package/src/assets/css/docmd-theme-ruby.css +621 -1
- package/src/assets/css/docmd-theme-sky.css +606 -1
- package/src/assets/js/docmd-image-lightbox.js +13 -13
- package/src/assets/js/docmd-main.js +23 -23
- package/src/assets/js/docmd-mermaid.js +28 -29
- package/src/commands/build.js +79 -40
- package/src/commands/init.js +10 -0
- package/src/core/file-processor.js +49 -777
- package/src/core/html-generator.js +23 -0
- package/src/core/markdown/containers.js +94 -0
- package/src/core/markdown/renderers.js +90 -0
- package/src/core/markdown/rules.js +355 -0
- package/src/core/markdown/setup.js +124 -0
- package/src/templates/layout.ejs +15 -0
|
@@ -3,15 +3,25 @@
|
|
|
3
3
|
/*
|
|
4
4
|
* Main CSS file for docmd
|
|
5
5
|
*/
|
|
6
|
-
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list
|
|
6
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list>li.step-item::before,
|
|
7
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item::before,
|
|
8
|
+
.docmd-container.steps-reset ol.steps-list[start]>li.step-item::before {
|
|
7
9
|
content: counter(list-counter) ".";
|
|
8
10
|
font-weight: 700;
|
|
9
11
|
margin-right: .5em;
|
|
10
|
-
color:var(--accent-color, #007acc)
|
|
12
|
+
color: var(--accent-color, #007acc)
|
|
11
13
|
}
|
|
12
14
|
|
|
13
|
-
.docmd-tab-pane.active,
|
|
14
|
-
|
|
15
|
+
.docmd-tab-pane.active,
|
|
16
|
+
.logo-link img,
|
|
17
|
+
.logo-link img.logo-light,
|
|
18
|
+
.tab-panel.active,
|
|
19
|
+
.theme-toggle-button .icon-sun,
|
|
20
|
+
body.sidebar-collapsible .sidebar-toggle-button,
|
|
21
|
+
html[data-theme=dark] .logo-link img.logo-dark,
|
|
22
|
+
html[data-theme=dark] .theme-toggle-button .icon-moon,
|
|
23
|
+
img {
|
|
24
|
+
display: block
|
|
15
25
|
}
|
|
16
26
|
|
|
17
27
|
:root {
|
|
@@ -34,7 +44,7 @@
|
|
|
34
44
|
--image-caption-bg: #f8f8f8;
|
|
35
45
|
--image-caption-text: #666;
|
|
36
46
|
--lightbox-bg: rgba(0, 0, 0, 0.9);
|
|
37
|
-
--lightbox-text
|
|
47
|
+
--lightbox-text: #fff
|
|
38
48
|
}
|
|
39
49
|
|
|
40
50
|
[data-theme=dark] {
|
|
@@ -55,7 +65,7 @@
|
|
|
55
65
|
--image-caption-bg: #2c2c2c;
|
|
56
66
|
--image-caption-text: #bdc3c7;
|
|
57
67
|
--lightbox-bg: rgba(0, 0, 0, 0.95);
|
|
58
|
-
--lightbox-text
|
|
68
|
+
--lightbox-text: #fff
|
|
59
69
|
}
|
|
60
70
|
|
|
61
71
|
body {
|
|
@@ -65,12 +75,13 @@ body {
|
|
|
65
75
|
margin: 0;
|
|
66
76
|
display: flex;
|
|
67
77
|
min-height: 100vh;
|
|
68
|
-
line-height:1.6
|
|
78
|
+
line-height: 1.6
|
|
69
79
|
}
|
|
70
80
|
|
|
71
|
-
code,
|
|
81
|
+
code,
|
|
82
|
+
pre {
|
|
72
83
|
font-family: var(--font-family-mono);
|
|
73
|
-
background-color:var(--code-bg)
|
|
84
|
+
background-color: var(--code-bg)
|
|
74
85
|
}
|
|
75
86
|
|
|
76
87
|
.sidebar {
|
|
@@ -85,7 +96,7 @@ code, pre {
|
|
|
85
96
|
left: 0;
|
|
86
97
|
overflow-y: auto;
|
|
87
98
|
box-sizing: border-box;
|
|
88
|
-
flex-shrink:0
|
|
99
|
+
flex-shrink: 0
|
|
89
100
|
}
|
|
90
101
|
|
|
91
102
|
.sidebar h1 {
|
|
@@ -93,13 +104,13 @@ code, pre {
|
|
|
93
104
|
margin-top: 0;
|
|
94
105
|
margin-bottom: 20px;
|
|
95
106
|
padding-bottom: 10px;
|
|
96
|
-
border-bottom:1px solid var(--border-color)
|
|
107
|
+
border-bottom: 1px solid var(--border-color)
|
|
97
108
|
}
|
|
98
109
|
|
|
99
110
|
.sidebar nav ul {
|
|
100
111
|
list-style: none;
|
|
101
112
|
padding: 0;
|
|
102
|
-
margin:0
|
|
113
|
+
margin: 0
|
|
103
114
|
}
|
|
104
115
|
|
|
105
116
|
.sidebar nav li a {
|
|
@@ -108,25 +119,29 @@ code, pre {
|
|
|
108
119
|
text-decoration: none;
|
|
109
120
|
color: var(--sidebar-text);
|
|
110
121
|
border-radius: 4px;
|
|
111
|
-
transition:background-color .2s
|
|
122
|
+
transition: background-color .2s
|
|
112
123
|
}
|
|
113
124
|
|
|
114
|
-
.copy-code-button:hover,
|
|
115
|
-
|
|
125
|
+
.copy-code-button:hover,
|
|
126
|
+
.docmd-tabs-nav-item:hover,
|
|
127
|
+
.sidebar nav li a.active,
|
|
128
|
+
.sidebar nav li a:hover,
|
|
129
|
+
.theme-toggle-button:hover {
|
|
130
|
+
background-color: var(--sidebar-link-active-bg)
|
|
116
131
|
}
|
|
117
132
|
|
|
118
133
|
.sidebar nav li a.active {
|
|
119
134
|
font-weight: 600;
|
|
120
|
-
color:var(--link-color)
|
|
135
|
+
color: var(--link-color)
|
|
121
136
|
}
|
|
122
137
|
|
|
123
|
-
.sidebar nav li.active-parent
|
|
138
|
+
.sidebar nav li.active-parent>a {
|
|
124
139
|
background-color: var(--sidebar-link-active-parent-bg);
|
|
125
140
|
font-weight: 500;
|
|
126
|
-
position:relative
|
|
141
|
+
position: relative
|
|
127
142
|
}
|
|
128
143
|
|
|
129
|
-
.sidebar nav li.active-parent
|
|
144
|
+
.sidebar nav li.active-parent>a::before {
|
|
130
145
|
content: "";
|
|
131
146
|
position: absolute;
|
|
132
147
|
left: 0;
|
|
@@ -134,16 +149,18 @@ code, pre {
|
|
|
134
149
|
bottom: 0;
|
|
135
150
|
width: 3px;
|
|
136
151
|
background-color: var(--link-color);
|
|
137
|
-
opacity
|
|
152
|
+
opacity: .5
|
|
138
153
|
}
|
|
139
154
|
|
|
140
|
-
.copy-code-button:hover,
|
|
141
|
-
|
|
155
|
+
.copy-code-button:hover,
|
|
156
|
+
.sidebar nav li.active-parent>a.active::before,
|
|
157
|
+
div:hover>.copy-code-button {
|
|
158
|
+
opacity: 1
|
|
142
159
|
}
|
|
143
160
|
|
|
144
161
|
.sidebar nav ul ul {
|
|
145
162
|
padding-left: 20px;
|
|
146
|
-
margin-top:5px
|
|
163
|
+
margin-top: 5px
|
|
147
164
|
}
|
|
148
165
|
|
|
149
166
|
.sidebar-toggle-button {
|
|
@@ -154,30 +171,32 @@ code, pre {
|
|
|
154
171
|
padding: 0;
|
|
155
172
|
margin: .5em 0 0;
|
|
156
173
|
display: none;
|
|
157
|
-
border-radius:4px
|
|
174
|
+
border-radius: 4px
|
|
158
175
|
}
|
|
159
176
|
|
|
160
177
|
.sidebar-toggle-button:hover {
|
|
161
178
|
background-color: var(--sidebar-bg);
|
|
162
|
-
border-color:var(--border-color)
|
|
179
|
+
border-color: var(--border-color)
|
|
163
180
|
}
|
|
164
181
|
|
|
165
182
|
.sidebar-toggle-button .lucide-icon {
|
|
166
183
|
width: 2em;
|
|
167
|
-
height:2em
|
|
184
|
+
height: 2em
|
|
168
185
|
}
|
|
169
186
|
|
|
170
187
|
body.sidebar-collapsed .sidebar {
|
|
171
188
|
transform: translateX(-100%);
|
|
172
|
-
visibility:hidden
|
|
189
|
+
visibility: hidden
|
|
173
190
|
}
|
|
174
191
|
|
|
175
|
-
.toc-level-2,
|
|
176
|
-
|
|
192
|
+
.toc-level-2,
|
|
193
|
+
body.sidebar-collapsed .main-content-wrapper {
|
|
194
|
+
margin-left: 0
|
|
177
195
|
}
|
|
178
196
|
|
|
179
|
-
.main-content-wrapper,
|
|
180
|
-
|
|
197
|
+
.main-content-wrapper,
|
|
198
|
+
.sidebar {
|
|
199
|
+
transition: transform .3s, margin-left .3s, visibility .3s
|
|
181
200
|
}
|
|
182
201
|
|
|
183
202
|
.main-content-wrapper {
|
|
@@ -185,12 +204,13 @@ body.sidebar-collapsed .sidebar {
|
|
|
185
204
|
flex-grow: 1;
|
|
186
205
|
display: flex;
|
|
187
206
|
flex-direction: column;
|
|
188
|
-
overflow:hidden
|
|
207
|
+
overflow: hidden
|
|
189
208
|
}
|
|
190
209
|
|
|
191
|
-
.header-left,
|
|
210
|
+
.header-left,
|
|
211
|
+
.page-header {
|
|
192
212
|
align-items: center;
|
|
193
|
-
display:flex
|
|
213
|
+
display: flex
|
|
194
214
|
}
|
|
195
215
|
|
|
196
216
|
.page-header {
|
|
@@ -198,21 +218,21 @@ body.sidebar-collapsed .sidebar {
|
|
|
198
218
|
border-bottom: 1px solid var(--header-border);
|
|
199
219
|
background-color: var(--header-bg);
|
|
200
220
|
justify-content: space-between;
|
|
201
|
-
min-height:2.5em
|
|
221
|
+
min-height: 2.5em
|
|
202
222
|
}
|
|
203
223
|
|
|
204
224
|
.header-left {
|
|
205
|
-
gap:15px
|
|
225
|
+
gap: 15px
|
|
206
226
|
}
|
|
207
227
|
|
|
208
228
|
.header-right {
|
|
209
229
|
display: flex;
|
|
210
|
-
align-items:center
|
|
230
|
+
align-items: center
|
|
211
231
|
}
|
|
212
232
|
|
|
213
233
|
.page-header h1 {
|
|
214
234
|
margin: 0;
|
|
215
|
-
font-size:1.8em
|
|
235
|
+
font-size: 1.8em
|
|
216
236
|
}
|
|
217
237
|
|
|
218
238
|
.theme-toggle-header {
|
|
@@ -221,16 +241,17 @@ body.sidebar-collapsed .sidebar {
|
|
|
221
241
|
border: 1px solid var(--border-color);
|
|
222
242
|
border-radius: 6px;
|
|
223
243
|
cursor: pointer;
|
|
224
|
-
transition
|
|
244
|
+
transition: .2s
|
|
225
245
|
}
|
|
226
246
|
|
|
227
247
|
.theme-toggle-header:hover {
|
|
228
248
|
background: var(--sidebar-bg);
|
|
229
|
-
border-color:var(--accent-color)
|
|
249
|
+
border-color: var(--accent-color)
|
|
230
250
|
}
|
|
231
251
|
|
|
232
|
-
.card .card-title,
|
|
233
|
-
|
|
252
|
+
.card .card-title,
|
|
253
|
+
.sidebar-header {
|
|
254
|
+
border-bottom: 1px solid var(--border-color)
|
|
234
255
|
}
|
|
235
256
|
|
|
236
257
|
.content-area {
|
|
@@ -238,7 +259,7 @@ body.sidebar-collapsed .sidebar {
|
|
|
238
259
|
max-width: 1200px;
|
|
239
260
|
margin: 0 auto;
|
|
240
261
|
width: 100%;
|
|
241
|
-
box-sizing:border-box
|
|
262
|
+
box-sizing: border-box
|
|
242
263
|
}
|
|
243
264
|
|
|
244
265
|
pre {
|
|
@@ -246,7 +267,7 @@ pre {
|
|
|
246
267
|
padding: 1em;
|
|
247
268
|
border-radius: 4px;
|
|
248
269
|
overflow-x: auto;
|
|
249
|
-
position:relative
|
|
270
|
+
position: relative
|
|
250
271
|
}
|
|
251
272
|
|
|
252
273
|
pre {
|
|
@@ -263,13 +284,13 @@ pre {
|
|
|
263
284
|
code {
|
|
264
285
|
padding: .2em .4em;
|
|
265
286
|
border-radius: 3px;
|
|
266
|
-
font-size
|
|
287
|
+
font-size: .9em
|
|
267
288
|
}
|
|
268
289
|
|
|
269
290
|
pre code {
|
|
270
291
|
background-color: transparent;
|
|
271
292
|
padding: 0;
|
|
272
|
-
font-size:inherit
|
|
293
|
+
font-size: inherit
|
|
273
294
|
}
|
|
274
295
|
|
|
275
296
|
.table-wrapper {
|
|
@@ -311,23 +332,29 @@ tr:last-child td {
|
|
|
311
332
|
padding-bottom: 10px;
|
|
312
333
|
margin-bottom: 10px;
|
|
313
334
|
text-align: center;
|
|
314
|
-
height:2.5em
|
|
335
|
+
height: 2.5em
|
|
315
336
|
}
|
|
316
337
|
|
|
317
338
|
.sidebar-header h1 {
|
|
318
339
|
font-size: 1.5em;
|
|
319
340
|
margin-top: 0;
|
|
320
|
-
margin-bottom:0
|
|
341
|
+
margin-bottom: 0
|
|
321
342
|
}
|
|
322
343
|
|
|
323
344
|
.logo-link img {
|
|
324
345
|
max-height: 40px;
|
|
325
346
|
width: auto;
|
|
326
|
-
margin:0 auto
|
|
347
|
+
margin: 0 auto
|
|
327
348
|
}
|
|
328
349
|
|
|
329
|
-
.docmd-tab-pane,
|
|
330
|
-
|
|
350
|
+
.docmd-tab-pane,
|
|
351
|
+
.logo-link img.logo-dark,
|
|
352
|
+
.tab-panel,
|
|
353
|
+
.theme-toggle-button .icon-moon,
|
|
354
|
+
html[data-theme=dark] .logo-link img.logo-light,
|
|
355
|
+
html[data-theme=dark] .theme-toggle-button .icon-sun,
|
|
356
|
+
.sidebar nav li.collapsible:not([aria-expanded=true])>.submenu {
|
|
357
|
+
display: none
|
|
331
358
|
}
|
|
332
359
|
|
|
333
360
|
.sidebar-nav .lucide-icon {
|
|
@@ -335,7 +362,7 @@ tr:last-child td {
|
|
|
335
362
|
height: 1em;
|
|
336
363
|
margin-right: .5em;
|
|
337
364
|
vertical-align: -.15em;
|
|
338
|
-
stroke-width:2
|
|
365
|
+
stroke-width: 2
|
|
339
366
|
}
|
|
340
367
|
|
|
341
368
|
.sidebar-nav .nav-external-icon {
|
|
@@ -343,7 +370,7 @@ tr:last-child td {
|
|
|
343
370
|
height: 1.5em;
|
|
344
371
|
float: right;
|
|
345
372
|
margin-left: .3em;
|
|
346
|
-
opacity
|
|
373
|
+
opacity: .7
|
|
347
374
|
}
|
|
348
375
|
|
|
349
376
|
.theme-toggle-button {
|
|
@@ -357,21 +384,27 @@ tr:last-child td {
|
|
|
357
384
|
display: flex;
|
|
358
385
|
align-items: center;
|
|
359
386
|
justify-content: center;
|
|
360
|
-
width:100%
|
|
387
|
+
width: 100%
|
|
361
388
|
}
|
|
362
389
|
|
|
363
|
-
.next-page,
|
|
390
|
+
.next-page,
|
|
391
|
+
.prev-page,
|
|
392
|
+
.step::before {
|
|
364
393
|
color: var(--link-color);
|
|
365
|
-
display:flex
|
|
394
|
+
display: flex
|
|
366
395
|
}
|
|
367
396
|
|
|
368
|
-
.callout .callout-content
|
|
369
|
-
|
|
397
|
+
.callout .callout-content> :first-child,
|
|
398
|
+
.card .card-content> :first-child,
|
|
399
|
+
.docmd-container> :first-child,
|
|
400
|
+
.step-content> :first-child,
|
|
401
|
+
.step-title {
|
|
402
|
+
margin-top: 0
|
|
370
403
|
}
|
|
371
404
|
|
|
372
405
|
.theme-toggle-button .lucide-icon {
|
|
373
406
|
width: 1.2em;
|
|
374
|
-
height:1.2em
|
|
407
|
+
height: 1.2em
|
|
375
408
|
}
|
|
376
409
|
|
|
377
410
|
.docmd-container {
|
|
@@ -379,48 +412,52 @@ tr:last-child td {
|
|
|
379
412
|
margin-bottom: 1.5rem;
|
|
380
413
|
border-radius: 6px;
|
|
381
414
|
border: 1px solid var(--border-color);
|
|
382
|
-
background-color:var(--code-bg)
|
|
415
|
+
background-color: var(--code-bg)
|
|
383
416
|
}
|
|
384
417
|
|
|
385
|
-
.callout .callout-content
|
|
386
|
-
|
|
418
|
+
.callout .callout-content> :last-child,
|
|
419
|
+
.card .card-content> :last-child,
|
|
420
|
+
.docmd-container> :last-child,
|
|
421
|
+
.step-content> :last-child {
|
|
422
|
+
margin-bottom: 0
|
|
387
423
|
}
|
|
388
424
|
|
|
389
425
|
.callout {
|
|
390
426
|
border-left-width: 5px;
|
|
391
|
-
background-color:transparent
|
|
427
|
+
background-color: transparent
|
|
392
428
|
}
|
|
393
429
|
|
|
394
430
|
.callout-title {
|
|
395
431
|
font-weight: 700;
|
|
396
|
-
margin-bottom
|
|
432
|
+
margin-bottom: .5em
|
|
397
433
|
}
|
|
398
434
|
|
|
399
435
|
.callout-info {
|
|
400
436
|
border-left-color: #3498db;
|
|
401
|
-
background-color:rgba(52, 152, 219, .07)
|
|
437
|
+
background-color: rgba(52, 152, 219, .07)
|
|
402
438
|
}
|
|
403
439
|
|
|
404
440
|
.callout-warning {
|
|
405
441
|
border-left-color: #f39c12;
|
|
406
|
-
background-color:rgba(243, 156, 18, .07)
|
|
442
|
+
background-color: rgba(243, 156, 18, .07)
|
|
407
443
|
}
|
|
408
444
|
|
|
409
|
-
.callout-success,
|
|
445
|
+
.callout-success,
|
|
446
|
+
.callout-tip {
|
|
410
447
|
border-left-color: #2ecc71;
|
|
411
|
-
background-color:rgba(46, 204, 113, .07)
|
|
448
|
+
background-color: rgba(46, 204, 113, .07)
|
|
412
449
|
}
|
|
413
450
|
|
|
414
451
|
.callout-danger {
|
|
415
452
|
border-left-color: #e74c3c;
|
|
416
|
-
background-color:rgba(231, 76, 60, .07)
|
|
453
|
+
background-color: rgba(231, 76, 60, .07)
|
|
417
454
|
}
|
|
418
455
|
|
|
419
456
|
.card .card-title {
|
|
420
457
|
font-weight: 700;
|
|
421
458
|
font-size: 1.1em;
|
|
422
459
|
margin: -1rem -1.5rem 1rem;
|
|
423
|
-
padding
|
|
460
|
+
padding: .75rem 1.5rem
|
|
424
461
|
}
|
|
425
462
|
|
|
426
463
|
.docmd-container.steps {
|
|
@@ -428,7 +465,7 @@ tr:last-child td {
|
|
|
428
465
|
padding-left: 3rem;
|
|
429
466
|
border: none;
|
|
430
467
|
background: 0 0;
|
|
431
|
-
box-shadow:none
|
|
468
|
+
box-shadow: none
|
|
432
469
|
}
|
|
433
470
|
|
|
434
471
|
.docmd-container.steps::before {
|
|
@@ -438,16 +475,16 @@ tr:last-child td {
|
|
|
438
475
|
bottom: 1rem;
|
|
439
476
|
left: 2.5rem;
|
|
440
477
|
width: 2px;
|
|
441
|
-
background-color:var(--border-color)
|
|
478
|
+
background-color: var(--border-color)
|
|
442
479
|
}
|
|
443
480
|
|
|
444
481
|
.step {
|
|
445
482
|
position: relative;
|
|
446
|
-
padding-bottom:1.5rem
|
|
483
|
+
padding-bottom: 1.5rem
|
|
447
484
|
}
|
|
448
485
|
|
|
449
486
|
.step:last-child {
|
|
450
|
-
padding-bottom:0
|
|
487
|
+
padding-bottom: 0
|
|
451
488
|
}
|
|
452
489
|
|
|
453
490
|
.step::before {
|
|
@@ -464,44 +501,49 @@ tr:last-child td {
|
|
|
464
501
|
justify-content: center;
|
|
465
502
|
font-size: 1rem;
|
|
466
503
|
font-weight: 600;
|
|
467
|
-
z-index:1
|
|
504
|
+
z-index: 1
|
|
468
505
|
}
|
|
469
506
|
|
|
470
507
|
.step-title {
|
|
471
508
|
font-size: 1.25rem;
|
|
472
509
|
font-weight: 600;
|
|
473
|
-
margin-bottom
|
|
510
|
+
margin-bottom: .5rem
|
|
474
511
|
}
|
|
475
512
|
|
|
476
513
|
.docmd-container.steps-reset {
|
|
477
|
-
counter-reset:step-counter 0
|
|
514
|
+
counter-reset: step-counter 0
|
|
478
515
|
}
|
|
479
516
|
|
|
480
517
|
.docmd-container.steps-reset ol.steps-list {
|
|
481
518
|
counter-reset: list-counter 0;
|
|
482
|
-
list-style:none
|
|
519
|
+
list-style: none
|
|
483
520
|
}
|
|
484
521
|
|
|
485
|
-
.docmd-container.steps-reset ol.steps-list
|
|
522
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item {
|
|
486
523
|
counter-increment: list-counter 1;
|
|
487
524
|
position: relative;
|
|
488
525
|
padding-left: 0;
|
|
489
|
-
margin-bottom:2.5rem
|
|
526
|
+
margin-bottom: 2.5rem
|
|
490
527
|
}
|
|
491
528
|
|
|
492
|
-
.docmd-container.steps-reset ol.steps-list
|
|
493
|
-
font-size:2rem
|
|
529
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item::before {
|
|
530
|
+
font-size: 2rem
|
|
494
531
|
}
|
|
495
532
|
|
|
496
|
-
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list,
|
|
497
|
-
|
|
533
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list,
|
|
534
|
+
.docmd-container.steps-reset ol.steps-list[start] {
|
|
535
|
+
counter-reset: list-counter 0
|
|
498
536
|
}
|
|
499
537
|
|
|
500
|
-
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list
|
|
501
|
-
|
|
538
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list>li.step-item,
|
|
539
|
+
.docmd-container.steps-reset ol.steps-list[start]>li.step-item {
|
|
540
|
+
counter-increment: list-counter 1
|
|
502
541
|
}
|
|
503
542
|
|
|
504
|
-
.docmd-container.steps-reset ol:not(.steps-list)::before,
|
|
543
|
+
.docmd-container.steps-reset ol:not(.steps-list)::before,
|
|
544
|
+
.docmd-container.steps-reset ol:not(.steps-list)>li::before,
|
|
545
|
+
.docmd-container.steps-reset ul::before,
|
|
546
|
+
.docmd-container.steps-reset ul>li::before {
|
|
505
547
|
width: .75rem;
|
|
506
548
|
height: .75rem;
|
|
507
549
|
left: -1.5rem;
|
|
@@ -509,95 +551,232 @@ tr:last-child td {
|
|
|
509
551
|
content: "" !important
|
|
510
552
|
}
|
|
511
553
|
|
|
554
|
+
.mermaid-container {
|
|
555
|
+
margin: 1.5rem 0;
|
|
556
|
+
overflow-x: auto;
|
|
557
|
+
text-align: center
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.mermaid-container svg {
|
|
561
|
+
max-width: 100%;
|
|
562
|
+
height: auto;
|
|
563
|
+
display: inline-block
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.mermaid-error {
|
|
567
|
+
color: #e74c3c;
|
|
568
|
+
padding: 1rem;
|
|
569
|
+
margin: 0;
|
|
570
|
+
background-color: rgba(231, 76, 60, .07);
|
|
571
|
+
border-left: 4px solid #e74c3c;
|
|
572
|
+
border-radius: 4px;
|
|
573
|
+
font-size: .9rem
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
pre.mermaid {
|
|
577
|
+
background-color: transparent;
|
|
578
|
+
padding: 0;
|
|
579
|
+
margin: 0;
|
|
580
|
+
border: none;
|
|
581
|
+
display: none
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/* --- Collapsible (Accordion) Container --- */
|
|
585
|
+
.docmd-container.collapsible {
|
|
586
|
+
padding: 0;
|
|
587
|
+
background-color: var(--card-bg, var(--bg-color));
|
|
588
|
+
border: 1px solid var(--border-color);
|
|
589
|
+
border-radius: 8px;
|
|
590
|
+
overflow: hidden;
|
|
591
|
+
margin-bottom: 1.5rem;
|
|
592
|
+
transition: border-color 0.2s;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.docmd-container.collapsible[open] {
|
|
596
|
+
border-color: var(--link-color);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.collapsible-summary {
|
|
600
|
+
list-style: none;
|
|
601
|
+
padding: 0.75rem 1.25rem;
|
|
602
|
+
cursor: pointer;
|
|
603
|
+
display: flex;
|
|
604
|
+
align-items: center;
|
|
605
|
+
justify-content: space-between;
|
|
606
|
+
font-weight: 600;
|
|
607
|
+
background-color: var(--sidebar-bg);
|
|
608
|
+
user-select: none;
|
|
609
|
+
transition: background-color 0.2s;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.collapsible-summary:hover {
|
|
613
|
+
background-color: var(--sidebar-link-active-bg);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.collapsible-summary::-webkit-details-marker {
|
|
617
|
+
display: none;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.collapsible-arrow svg {
|
|
621
|
+
width: 1.2em;
|
|
622
|
+
height: 1.2em;
|
|
623
|
+
transition: transform 0.2s ease;
|
|
624
|
+
opacity: 0.7;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
details[open]>.collapsible-summary .collapsible-arrow svg {
|
|
628
|
+
transform: rotate(180deg);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.collapsible-content {
|
|
632
|
+
padding: 1rem 1.25rem;
|
|
633
|
+
border-top: 1px solid var(--border-color);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/* --- Changelog Timeline (Mintlify Style) --- */
|
|
637
|
+
.docmd-container.changelog-timeline {
|
|
638
|
+
border: none;
|
|
639
|
+
background: transparent;
|
|
640
|
+
padding: 0;
|
|
641
|
+
margin-top: 2rem;
|
|
642
|
+
box-shadow: none;
|
|
643
|
+
/* Remove default container shadow */
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.changelog-entry {
|
|
647
|
+
display: grid;
|
|
648
|
+
grid-template-columns: 180px 1fr;
|
|
649
|
+
/* Date width | Content width */
|
|
650
|
+
gap: 2rem;
|
|
651
|
+
margin-bottom: 3rem;
|
|
652
|
+
position: relative;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.changelog-meta {
|
|
656
|
+
text-align: right;
|
|
657
|
+
padding-top: 0.5rem;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.changelog-date {
|
|
661
|
+
display: inline-block;
|
|
662
|
+
background-color: var(--sidebar-bg);
|
|
663
|
+
color: var(--accent-color, var(--link-color));
|
|
664
|
+
border: 1px solid var(--border-color);
|
|
665
|
+
padding: 4px 12px;
|
|
666
|
+
border-radius: 20px;
|
|
667
|
+
font-size: 0.85rem;
|
|
668
|
+
font-weight: 600;
|
|
669
|
+
font-family: var(--font-family-mono);
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.changelog-body {
|
|
673
|
+
border-left: 2px solid var(--border-color);
|
|
674
|
+
padding-left: 2rem;
|
|
675
|
+
padding-bottom: 1rem;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
/* Reset top margin for the first element in the body */
|
|
679
|
+
.changelog-body> :first-child {
|
|
680
|
+
margin-top: 0;
|
|
681
|
+
}
|
|
682
|
+
|
|
512
683
|
:focus-visible {
|
|
513
684
|
outline: 2px solid var(--link-color);
|
|
514
|
-
outline-offset:2px
|
|
685
|
+
outline-offset: 2px
|
|
515
686
|
}
|
|
516
687
|
|
|
517
688
|
:focus:not(:focus-visible) {
|
|
518
|
-
outline:currentcolor
|
|
689
|
+
outline: currentcolor
|
|
519
690
|
}
|
|
520
691
|
|
|
521
692
|
.sidebar nav li a:focus-visible {
|
|
522
693
|
background-color: var(--sidebar-link-active-bg);
|
|
523
694
|
outline: 2px solid var(--link-color);
|
|
524
|
-
outline-offset
|
|
695
|
+
outline-offset: -2px
|
|
525
696
|
}
|
|
526
697
|
|
|
527
698
|
.theme-toggle-button:focus-visible {
|
|
528
699
|
border-color: var(--link-color);
|
|
529
|
-
box-shadow:0 0 0 2px var(--link-color)
|
|
700
|
+
box-shadow: 0 0 0 2px var(--link-color)
|
|
530
701
|
}
|
|
531
702
|
|
|
532
|
-
.page-footer,
|
|
533
|
-
|
|
703
|
+
.page-footer,
|
|
704
|
+
.page-navigation {
|
|
705
|
+
border-top: 1px solid var(--border-color)
|
|
534
706
|
}
|
|
535
707
|
|
|
536
708
|
.page-navigation {
|
|
537
709
|
display: flex;
|
|
538
710
|
justify-content: space-between;
|
|
539
711
|
margin-top: 3rem;
|
|
540
|
-
padding-top:1.5rem
|
|
712
|
+
padding-top: 1.5rem
|
|
541
713
|
}
|
|
542
714
|
|
|
543
|
-
.next-page,
|
|
715
|
+
.next-page,
|
|
716
|
+
.prev-page {
|
|
544
717
|
align-items: center;
|
|
545
718
|
text-decoration: none;
|
|
546
719
|
padding: .75rem;
|
|
547
720
|
border-radius: 6px;
|
|
548
721
|
transition: background-color .2s;
|
|
549
722
|
width: 48%;
|
|
550
|
-
max-width:48%
|
|
723
|
+
max-width: 48%
|
|
551
724
|
}
|
|
552
725
|
|
|
553
|
-
.next-page:hover,
|
|
726
|
+
.next-page:hover,
|
|
727
|
+
.prev-page:hover {
|
|
554
728
|
background-color: rgba(0, 0, 0, .05);
|
|
555
|
-
text-decoration:none
|
|
729
|
+
text-decoration: none
|
|
556
730
|
}
|
|
557
731
|
|
|
558
|
-
[data-theme=dark] .next-page:hover,
|
|
559
|
-
|
|
732
|
+
[data-theme=dark] .next-page:hover,
|
|
733
|
+
[data-theme=dark] .prev-page:hover {
|
|
734
|
+
background-color: rgba(255, 255, 255, .05)
|
|
560
735
|
}
|
|
561
736
|
|
|
562
737
|
.prev-page {
|
|
563
|
-
justify-content:flex-start
|
|
738
|
+
justify-content: flex-start
|
|
564
739
|
}
|
|
565
740
|
|
|
566
741
|
.next-page {
|
|
567
742
|
justify-content: flex-end;
|
|
568
|
-
text-align:right
|
|
743
|
+
text-align: right
|
|
569
744
|
}
|
|
570
745
|
|
|
571
|
-
.next-page-placeholder,
|
|
572
|
-
|
|
746
|
+
.next-page-placeholder,
|
|
747
|
+
.prev-page-placeholder {
|
|
748
|
+
width: 48%
|
|
573
749
|
}
|
|
574
750
|
|
|
575
|
-
.next-page span,
|
|
751
|
+
.next-page span,
|
|
752
|
+
.prev-page span {
|
|
576
753
|
display: flex;
|
|
577
|
-
flex-direction:column
|
|
754
|
+
flex-direction: column
|
|
578
755
|
}
|
|
579
756
|
|
|
580
|
-
.next-page small,
|
|
757
|
+
.next-page small,
|
|
758
|
+
.prev-page small {
|
|
581
759
|
font-size: .8rem;
|
|
582
760
|
opacity: .8;
|
|
583
|
-
margin-bottom
|
|
761
|
+
margin-bottom: .25rem
|
|
584
762
|
}
|
|
585
763
|
|
|
586
|
-
.next-page strong,
|
|
587
|
-
|
|
764
|
+
.next-page strong,
|
|
765
|
+
.prev-page strong {
|
|
766
|
+
font-weight: 500
|
|
588
767
|
}
|
|
589
768
|
|
|
590
769
|
.page-nav-icon {
|
|
591
770
|
width: 1.2rem;
|
|
592
|
-
height:1.2rem
|
|
771
|
+
height: 1.2rem
|
|
593
772
|
}
|
|
594
773
|
|
|
595
774
|
.prev-page .page-nav-icon {
|
|
596
|
-
margin-right
|
|
775
|
+
margin-right: .75rem
|
|
597
776
|
}
|
|
598
777
|
|
|
599
778
|
.next-page .page-nav-icon {
|
|
600
|
-
margin-left
|
|
779
|
+
margin-left: .75rem
|
|
601
780
|
}
|
|
602
781
|
|
|
603
782
|
.page-footer {
|
|
@@ -606,7 +785,7 @@ tr:last-child td {
|
|
|
606
785
|
margin-top: auto;
|
|
607
786
|
font-size: .9em;
|
|
608
787
|
color: var(--text-color);
|
|
609
|
-
background-color:var(--sidebar-bg)
|
|
788
|
+
background-color: var(--sidebar-bg)
|
|
610
789
|
}
|
|
611
790
|
|
|
612
791
|
.footer-content {
|
|
@@ -614,70 +793,72 @@ tr:last-child td {
|
|
|
614
793
|
justify-content: space-between;
|
|
615
794
|
align-items: center;
|
|
616
795
|
margin: 0 auto;
|
|
617
|
-
width:100%
|
|
796
|
+
width: 100%
|
|
618
797
|
}
|
|
619
798
|
|
|
620
799
|
.user-footer {
|
|
621
|
-
text-align:left
|
|
800
|
+
text-align: left
|
|
622
801
|
}
|
|
623
802
|
|
|
624
803
|
.branding-footer {
|
|
625
804
|
text-align: right;
|
|
626
805
|
opacity: .9;
|
|
627
|
-
font-weight:500
|
|
806
|
+
font-weight: 500
|
|
628
807
|
}
|
|
629
808
|
|
|
630
809
|
.branding-footer svg {
|
|
631
|
-
color
|
|
810
|
+
color: #fb3a3a
|
|
632
811
|
}
|
|
633
812
|
|
|
634
813
|
.page-footer a {
|
|
635
814
|
color: var(--link-color);
|
|
636
|
-
text-decoration:none
|
|
815
|
+
text-decoration: none
|
|
637
816
|
}
|
|
638
817
|
|
|
639
|
-
.page-footer a:hover,
|
|
640
|
-
|
|
818
|
+
.page-footer a:hover,
|
|
819
|
+
.toc-link:hover {
|
|
820
|
+
text-decoration: underline
|
|
641
821
|
}
|
|
642
822
|
|
|
643
823
|
.content-layout {
|
|
644
824
|
display: flex;
|
|
645
825
|
gap: 2rem;
|
|
646
|
-
width:100%
|
|
826
|
+
width: 100%
|
|
647
827
|
}
|
|
648
828
|
|
|
649
829
|
.main-content {
|
|
650
830
|
flex: 1 1 0%;
|
|
651
|
-
min-inline-size:0px
|
|
831
|
+
min-inline-size: 0px
|
|
652
832
|
}
|
|
653
833
|
|
|
654
834
|
.toc-container {
|
|
655
835
|
margin: 0;
|
|
656
836
|
padding: 0;
|
|
657
837
|
border: none;
|
|
658
|
-
background-color:transparent
|
|
838
|
+
background-color: transparent
|
|
659
839
|
}
|
|
660
840
|
|
|
661
|
-
.docmd-container figure img,
|
|
662
|
-
|
|
841
|
+
.docmd-container figure img,
|
|
842
|
+
.toc-title {
|
|
843
|
+
margin-bottom: .5rem
|
|
663
844
|
}
|
|
664
845
|
|
|
665
846
|
.toc-title {
|
|
666
847
|
margin-top: 0;
|
|
667
848
|
font-size: 1rem;
|
|
668
849
|
font-weight: 700;
|
|
669
|
-
color:var(--text-muted)
|
|
850
|
+
color: var(--text-muted)
|
|
670
851
|
}
|
|
671
852
|
|
|
672
853
|
.toc-list {
|
|
673
854
|
list-style: none;
|
|
674
855
|
padding-left: 0;
|
|
675
|
-
margin:0
|
|
856
|
+
margin: 0
|
|
676
857
|
}
|
|
677
858
|
|
|
678
859
|
.toc-item {
|
|
679
860
|
margin-bottom: .25rem;
|
|
680
|
-
line-height:1.4
|
|
861
|
+
line-height: 1.4
|
|
681
862
|
}
|
|
682
863
|
|
|
683
864
|
.toc-link {
|
|
@@ -686,17 +867,17 @@ tr:last-child td {
|
|
|
686
867
|
display: inline-block;
|
|
687
868
|
padding: .1rem 0;
|
|
688
869
|
font-size: .9rem;
|
|
689
|
-
font-weight:500
|
|
870
|
+
font-weight: 500
|
|
690
871
|
}
|
|
691
872
|
|
|
692
873
|
.toc-level-3 {
|
|
693
874
|
margin-left: .75rem;
|
|
694
|
-
font-size
|
|
875
|
+
font-size: .85rem
|
|
695
876
|
}
|
|
696
877
|
|
|
697
878
|
.toc-level-4 {
|
|
698
879
|
margin-left: 1.5rem;
|
|
699
|
-
font-size
|
|
880
|
+
font-size: .8rem
|
|
700
881
|
}
|
|
701
882
|
|
|
702
883
|
.toc-sidebar {
|
|
@@ -705,71 +886,59 @@ tr:last-child td {
|
|
|
705
886
|
top: 2rem;
|
|
706
887
|
max-height: calc(-4rem + 100vh);
|
|
707
888
|
overflow-y: auto;
|
|
708
|
-
align-self:flex-start
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
@media (max-width: 1024px) {
|
|
712
|
-
.content-layout {
|
|
713
|
-
display: flex;
|
|
714
|
-
flex-direction:column-reverse
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.toc-sidebar {
|
|
718
|
-
width: 100%;
|
|
719
|
-
position: static;
|
|
720
|
-
margin-bottom:1rem
|
|
721
|
-
}
|
|
889
|
+
align-self: flex-start
|
|
722
890
|
}
|
|
723
891
|
|
|
724
|
-
.docmd-tabs,
|
|
725
|
-
|
|
892
|
+
.docmd-tabs,
|
|
893
|
+
img {
|
|
894
|
+
margin: 1.5rem 0
|
|
726
895
|
}
|
|
727
896
|
|
|
728
897
|
img {
|
|
729
898
|
max-width: 100%;
|
|
730
|
-
height:auto
|
|
899
|
+
height: auto
|
|
731
900
|
}
|
|
732
901
|
|
|
733
902
|
img.align-left {
|
|
734
903
|
float: left;
|
|
735
904
|
margin-right: 1.5rem;
|
|
736
|
-
margin-bottom:1rem
|
|
905
|
+
margin-bottom: 1rem
|
|
737
906
|
}
|
|
738
907
|
|
|
739
908
|
img.align-center {
|
|
740
909
|
margin-left: auto;
|
|
741
|
-
margin-right:auto
|
|
910
|
+
margin-right: auto
|
|
742
911
|
}
|
|
743
912
|
|
|
744
913
|
img.align-right {
|
|
745
914
|
float: right;
|
|
746
915
|
margin-left: 1.5rem;
|
|
747
|
-
margin-bottom:1rem
|
|
916
|
+
margin-bottom: 1rem
|
|
748
917
|
}
|
|
749
918
|
|
|
750
919
|
img.size-small {
|
|
751
|
-
max-width:300px
|
|
920
|
+
max-width: 300px
|
|
752
921
|
}
|
|
753
922
|
|
|
754
923
|
img.size-medium {
|
|
755
|
-
max-width:500px
|
|
924
|
+
max-width: 500px
|
|
756
925
|
}
|
|
757
926
|
|
|
758
927
|
img.size-large {
|
|
759
|
-
max-width:800px
|
|
928
|
+
max-width: 800px
|
|
760
929
|
}
|
|
761
930
|
|
|
762
931
|
img.with-border {
|
|
763
932
|
border: 1px solid var(--image-border-color);
|
|
764
|
-
padding:4px
|
|
933
|
+
padding: 4px
|
|
765
934
|
}
|
|
766
935
|
|
|
767
936
|
img.with-shadow {
|
|
768
|
-
box-shadow:var(--image-shadow)
|
|
937
|
+
box-shadow: var(--image-shadow)
|
|
769
938
|
}
|
|
770
939
|
|
|
771
940
|
.docmd-container figure {
|
|
772
|
-
margin:2rem 0
|
|
941
|
+
margin: 2rem 0
|
|
773
942
|
}
|
|
774
943
|
|
|
775
944
|
.docmd-container figcaption {
|
|
@@ -778,38 +947,38 @@ img.with-shadow {
|
|
|
778
947
|
text-align: center;
|
|
779
948
|
padding: .5rem;
|
|
780
949
|
background-color: var(--image-caption-bg);
|
|
781
|
-
border-radius:0 0 4px 4px
|
|
950
|
+
border-radius: 0 0 4px 4px
|
|
782
951
|
}
|
|
783
952
|
|
|
784
953
|
.docmd-container .image-gallery {
|
|
785
954
|
display: grid;
|
|
786
955
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
787
956
|
gap: 1rem;
|
|
788
|
-
margin:2rem 0
|
|
957
|
+
margin: 2rem 0
|
|
789
958
|
}
|
|
790
959
|
|
|
791
960
|
.docmd-container .image-gallery figure {
|
|
792
|
-
margin:0
|
|
961
|
+
margin: 0
|
|
793
962
|
}
|
|
794
963
|
|
|
795
964
|
.docmd-container .clear-float::after {
|
|
796
965
|
content: "";
|
|
797
966
|
display: table;
|
|
798
|
-
clear:both
|
|
967
|
+
clear: both
|
|
799
968
|
}
|
|
800
969
|
|
|
801
970
|
.docmd-tabs {
|
|
802
971
|
border: 1px solid var(--border-color);
|
|
803
972
|
border-radius: 6px;
|
|
804
973
|
overflow: hidden;
|
|
805
|
-
box-shadow:rgba(0, 0, 0, .05) 0 1px 3px
|
|
974
|
+
box-shadow: rgba(0, 0, 0, .05) 0 1px 3px
|
|
806
975
|
}
|
|
807
976
|
|
|
808
977
|
.docmd-tabs-nav {
|
|
809
978
|
display: flex;
|
|
810
979
|
background-color: var(--sidebar-bg);
|
|
811
980
|
border-bottom: 1px solid var(--border-color);
|
|
812
|
-
overflow:auto hidden
|
|
981
|
+
overflow: auto hidden
|
|
813
982
|
}
|
|
814
983
|
|
|
815
984
|
.docmd-tabs-nav-item {
|
|
@@ -819,30 +988,30 @@ img.with-shadow {
|
|
|
819
988
|
margin-bottom: -1px;
|
|
820
989
|
font-weight: 500;
|
|
821
990
|
color: var(--sidebar-text);
|
|
822
|
-
white-space:nowrap
|
|
991
|
+
white-space: nowrap
|
|
823
992
|
}
|
|
824
993
|
|
|
825
994
|
.docmd-tabs-nav-item.active {
|
|
826
995
|
color: var(--link-color);
|
|
827
996
|
border-bottom-color: var(--link-color);
|
|
828
|
-
background-color:var(--bg-color)
|
|
997
|
+
background-color: var(--bg-color)
|
|
829
998
|
}
|
|
830
999
|
|
|
831
1000
|
.docmd-tabs-content {
|
|
832
|
-
padding:1.5rem
|
|
1001
|
+
padding: 1.5rem
|
|
833
1002
|
}
|
|
834
1003
|
|
|
835
1004
|
.tabs-container {
|
|
836
1005
|
margin: 1rem 0;
|
|
837
1006
|
border: 1px solid #e1e5e9;
|
|
838
|
-
border-radius
|
|
1007
|
+
border-radius: .375rem
|
|
839
1008
|
}
|
|
840
1009
|
|
|
841
1010
|
.tab-navigation {
|
|
842
1011
|
display: flex;
|
|
843
1012
|
background-color: #f8f9fa;
|
|
844
1013
|
border-bottom: 1px solid #e1e5e9;
|
|
845
|
-
border-radius
|
|
1014
|
+
border-radius: .375rem .375rem 0 0
|
|
846
1015
|
}
|
|
847
1016
|
|
|
848
1017
|
.tab-button {
|
|
@@ -853,20 +1022,20 @@ img.with-shadow {
|
|
|
853
1022
|
border-image: none;
|
|
854
1023
|
background: 0 0;
|
|
855
1024
|
cursor: pointer;
|
|
856
|
-
transition
|
|
1025
|
+
transition: .2s
|
|
857
1026
|
}
|
|
858
1027
|
|
|
859
1028
|
.tab-button:hover {
|
|
860
|
-
background-color
|
|
1029
|
+
background-color: #e9ecef
|
|
861
1030
|
}
|
|
862
1031
|
|
|
863
1032
|
.tab-button.active {
|
|
864
1033
|
border-bottom-color: #007bff;
|
|
865
|
-
background-color
|
|
1034
|
+
background-color: #fff
|
|
866
1035
|
}
|
|
867
1036
|
|
|
868
1037
|
.tab-content {
|
|
869
|
-
padding:1rem
|
|
1038
|
+
padding: 1rem
|
|
870
1039
|
}
|
|
871
1040
|
|
|
872
1041
|
.docmd-lightbox {
|
|
@@ -880,19 +1049,20 @@ img.with-shadow {
|
|
|
880
1049
|
z-index: 9999;
|
|
881
1050
|
justify-content: center;
|
|
882
1051
|
align-items: center;
|
|
883
|
-
flex-direction:column
|
|
1052
|
+
flex-direction: column
|
|
884
1053
|
}
|
|
885
1054
|
|
|
886
|
-
.copy-code-button svg,
|
|
1055
|
+
.copy-code-button svg,
|
|
1056
|
+
.sponsor-icon {
|
|
887
1057
|
width: 1rem;
|
|
888
|
-
height:1rem
|
|
1058
|
+
height: 1rem
|
|
889
1059
|
}
|
|
890
1060
|
|
|
891
1061
|
.docmd-lightbox-content {
|
|
892
1062
|
position: relative;
|
|
893
1063
|
max-width: 90%;
|
|
894
1064
|
max-height: 90%;
|
|
895
|
-
text-align:center
|
|
1065
|
+
text-align: center
|
|
896
1066
|
}
|
|
897
1067
|
|
|
898
1068
|
.docmd-lightbox-content img {
|
|
@@ -900,14 +1070,14 @@ img.with-shadow {
|
|
|
900
1070
|
max-height: 80vh;
|
|
901
1071
|
object-fit: contain;
|
|
902
1072
|
margin: 0 auto;
|
|
903
|
-
box-shadow:rgba(0, 0, 0, .3) 0 0 20px
|
|
1073
|
+
box-shadow: rgba(0, 0, 0, .3) 0 0 20px
|
|
904
1074
|
}
|
|
905
1075
|
|
|
906
1076
|
.docmd-lightbox-caption {
|
|
907
1077
|
color: var(--lightbox-text);
|
|
908
1078
|
padding: 1rem;
|
|
909
1079
|
font-size: 1rem;
|
|
910
|
-
max-width:100%
|
|
1080
|
+
max-width: 100%
|
|
911
1081
|
}
|
|
912
1082
|
|
|
913
1083
|
.docmd-lightbox-close {
|
|
@@ -917,20 +1087,23 @@ img.with-shadow {
|
|
|
917
1087
|
color: var(--lightbox-text);
|
|
918
1088
|
font-size: 2.5rem;
|
|
919
1089
|
cursor: pointer;
|
|
920
|
-
z-index:10000
|
|
1090
|
+
z-index: 10000
|
|
921
1091
|
}
|
|
922
1092
|
|
|
923
1093
|
.docmd-lightbox-close:hover {
|
|
924
|
-
color
|
|
1094
|
+
color: #ddd
|
|
925
1095
|
}
|
|
926
1096
|
|
|
927
|
-
.docmd-button,
|
|
1097
|
+
.docmd-button,
|
|
1098
|
+
.sponsor-link,
|
|
1099
|
+
.sponsor-link:hover {
|
|
928
1100
|
color: #fff;
|
|
929
|
-
text-decoration:none
|
|
1101
|
+
text-decoration: none
|
|
930
1102
|
}
|
|
931
1103
|
|
|
932
|
-
.docmd-container .image-gallery img,
|
|
933
|
-
|
|
1104
|
+
.docmd-container .image-gallery img,
|
|
1105
|
+
img.lightbox {
|
|
1106
|
+
cursor: zoom-in
|
|
934
1107
|
}
|
|
935
1108
|
|
|
936
1109
|
.docmd-button {
|
|
@@ -942,13 +1115,13 @@ img.with-shadow {
|
|
|
942
1115
|
font-weight: 500;
|
|
943
1116
|
transition: background-color .2s, transform .2s;
|
|
944
1117
|
border: none;
|
|
945
|
-
cursor:pointer
|
|
1118
|
+
cursor: pointer
|
|
946
1119
|
}
|
|
947
1120
|
|
|
948
1121
|
.docmd-button:hover {
|
|
949
1122
|
text-decoration: none;
|
|
950
1123
|
filter: brightness(90%);
|
|
951
|
-
transform:translateY(-1px)
|
|
1124
|
+
transform: translateY(-1px)
|
|
952
1125
|
}
|
|
953
1126
|
|
|
954
1127
|
.sponsor-ribbon {
|
|
@@ -959,11 +1132,11 @@ img.with-shadow {
|
|
|
959
1132
|
transform: rotate(0);
|
|
960
1133
|
transform-origin: center center;
|
|
961
1134
|
opacity: .75;
|
|
962
|
-
transition
|
|
1135
|
+
transition: .5s
|
|
963
1136
|
}
|
|
964
1137
|
|
|
965
1138
|
.sponsor-ribbon:hover {
|
|
966
|
-
opacity:1
|
|
1139
|
+
opacity: 1
|
|
967
1140
|
}
|
|
968
1141
|
|
|
969
1142
|
.sponsor-link {
|
|
@@ -977,35 +1150,137 @@ img.with-shadow {
|
|
|
977
1150
|
font-weight: 600;
|
|
978
1151
|
font-size: .875rem;
|
|
979
1152
|
transition: .3s;
|
|
980
|
-
white-space:nowrap
|
|
1153
|
+
white-space: nowrap
|
|
981
1154
|
}
|
|
982
1155
|
|
|
983
1156
|
.sponsor-link:hover {
|
|
984
1157
|
transform: scale(1.02);
|
|
985
|
-
box-shadow:rgba(255, 107, 107, .4) 0 6px 20px
|
|
1158
|
+
box-shadow: rgba(255, 107, 107, .4) 0 6px 20px
|
|
986
1159
|
}
|
|
987
1160
|
|
|
988
1161
|
.sponsor-icon {
|
|
989
|
-
animation:2s ease-in-out infinite heartbeat
|
|
1162
|
+
animation: 2s ease-in-out infinite heartbeat
|
|
990
1163
|
}
|
|
991
1164
|
|
|
992
1165
|
.sponsor-text {
|
|
993
|
-
font-family:inherit
|
|
1166
|
+
font-family: inherit
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
html[data-theme=dark] .sponsor-link {
|
|
1170
|
+
background: linear-gradient(135deg, #ff6b6b, #c44569);
|
|
1171
|
+
box-shadow: rgba(255, 107, 107, .2) 0 4px 12px
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
html[data-theme=dark] .sponsor-link:hover {
|
|
1175
|
+
box-shadow: rgba(255, 107, 107, .3) 0 6px 20px
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.copy-code-button {
|
|
1179
|
+
position: absolute;
|
|
1180
|
+
top: .75rem;
|
|
1181
|
+
right: .75rem;
|
|
1182
|
+
padding: .5rem;
|
|
1183
|
+
background-color: var(--code-bg);
|
|
1184
|
+
border: 1px solid var(--border-color);
|
|
1185
|
+
border-radius: 6px;
|
|
1186
|
+
cursor: pointer;
|
|
1187
|
+
opacity: 0;
|
|
1188
|
+
transition: opacity .2s ease-in-out, background-color .2s;
|
|
1189
|
+
color: var(--sidebar-text);
|
|
1190
|
+
display: flex;
|
|
1191
|
+
align-items: center;
|
|
1192
|
+
justify-content: center;
|
|
1193
|
+
z-index: 10;
|
|
1194
|
+
pointer-events: auto
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.copy-code-button.copied {
|
|
1198
|
+
color: #10b981;
|
|
1199
|
+
opacity: 1
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.sidebar nav li.collapsible>a {
|
|
1203
|
+
display: flex;
|
|
1204
|
+
justify-content: space-between;
|
|
1205
|
+
align-items: center
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.sidebar nav li.collapsible>a .nav-item-title {
|
|
1209
|
+
flex-grow: 1
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.sidebar nav .collapse-icon {
|
|
1213
|
+
transition: transform .2s ease-in-out;
|
|
1214
|
+
flex-shrink: 0;
|
|
1215
|
+
margin-left: .5em
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.sidebar nav li.collapsible[aria-expanded=true]>a>.collapse-icon {
|
|
1219
|
+
transform: rotate(90deg)
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
hr {
|
|
1223
|
+
color: rgba(245, 245, 245, .27);
|
|
1224
|
+
border-top-width: 1px
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.page-footer-actions {
|
|
1228
|
+
margin-top: 3rem;
|
|
1229
|
+
padding-top: 1.5rem;
|
|
1230
|
+
border-top: 1px solid var(--border-color);
|
|
1231
|
+
display: flex;
|
|
1232
|
+
justify-content: flex-end;
|
|
1233
|
+
/* Align to right */
|
|
1234
|
+
gap: 1rem;
|
|
1235
|
+
font-size: 0.875rem;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.edit-link {
|
|
1239
|
+
display: inline-flex;
|
|
1240
|
+
align-items: center;
|
|
1241
|
+
gap: 0.5rem;
|
|
1242
|
+
color: var(--text-light);
|
|
1243
|
+
text-decoration: none;
|
|
1244
|
+
transition: color 0.2s;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.edit-link:hover {
|
|
1248
|
+
color: var(--link-color);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.edit-link svg {
|
|
1252
|
+
width: 1em;
|
|
1253
|
+
height: 1em;
|
|
994
1254
|
}
|
|
995
1255
|
|
|
996
1256
|
@keyframes heartbeat {
|
|
997
|
-
|
|
998
|
-
|
|
1257
|
+
|
|
1258
|
+
0%,
|
|
1259
|
+
100% {
|
|
1260
|
+
transform: scale(1)
|
|
999
1261
|
}
|
|
1000
1262
|
|
|
1001
1263
|
50% {
|
|
1002
|
-
transform:scale(1.1)
|
|
1264
|
+
transform: scale(1.1)
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
@media (max-width: 1024px) {
|
|
1269
|
+
.content-layout {
|
|
1270
|
+
display: flex;
|
|
1271
|
+
flex-direction: column-reverse
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.toc-sidebar {
|
|
1275
|
+
width: 100%;
|
|
1276
|
+
position: static;
|
|
1277
|
+
margin-bottom: 1rem
|
|
1003
1278
|
}
|
|
1004
1279
|
}
|
|
1005
1280
|
|
|
1006
1281
|
@media (max-width: 768px) {
|
|
1007
1282
|
body {
|
|
1008
|
-
flex-direction:column
|
|
1283
|
+
flex-direction: column
|
|
1009
1284
|
}
|
|
1010
1285
|
|
|
1011
1286
|
.sidebar {
|
|
@@ -1013,146 +1288,79 @@ img.with-shadow {
|
|
|
1013
1288
|
height: auto;
|
|
1014
1289
|
position: static;
|
|
1015
1290
|
border-right: currentcolor;
|
|
1016
|
-
border-bottom:1px solid var(--border-color)
|
|
1291
|
+
border-bottom: 1px solid var(--border-color)
|
|
1017
1292
|
}
|
|
1018
1293
|
|
|
1019
1294
|
.sidebar-toggle-button {
|
|
1020
|
-
display:block
|
|
1295
|
+
display: block
|
|
1021
1296
|
}
|
|
1022
1297
|
|
|
1023
1298
|
.main-content-wrapper {
|
|
1024
|
-
margin-left:0
|
|
1299
|
+
margin-left: 0
|
|
1025
1300
|
}
|
|
1026
1301
|
|
|
1027
1302
|
.content-area {
|
|
1028
|
-
padding:15px
|
|
1303
|
+
padding: 15px
|
|
1029
1304
|
}
|
|
1030
1305
|
|
|
1031
|
-
.footer-content,
|
|
1306
|
+
.footer-content,
|
|
1307
|
+
.page-navigation {
|
|
1032
1308
|
flex-direction: column;
|
|
1033
|
-
gap:1rem
|
|
1309
|
+
gap: 1rem
|
|
1034
1310
|
}
|
|
1035
1311
|
|
|
1036
|
-
.branding-footer,
|
|
1037
|
-
|
|
1312
|
+
.branding-footer,
|
|
1313
|
+
.user-footer {
|
|
1314
|
+
text-align: center
|
|
1038
1315
|
}
|
|
1039
1316
|
|
|
1040
|
-
.next-page,
|
|
1317
|
+
.next-page,
|
|
1318
|
+
.next-page-placeholder,
|
|
1319
|
+
.prev-page,
|
|
1320
|
+
.prev-page-placeholder {
|
|
1041
1321
|
width: 100%;
|
|
1042
|
-
max-width:100%
|
|
1322
|
+
max-width: 100%
|
|
1043
1323
|
}
|
|
1044
1324
|
|
|
1045
|
-
img.align-left,
|
|
1325
|
+
img.align-left,
|
|
1326
|
+
img.align-right {
|
|
1046
1327
|
float: none;
|
|
1047
1328
|
margin-left: auto;
|
|
1048
|
-
margin-right:auto
|
|
1329
|
+
margin-right: auto
|
|
1049
1330
|
}
|
|
1050
1331
|
|
|
1051
1332
|
.docmd-container .image-gallery {
|
|
1052
|
-
grid-template-columns:1fr
|
|
1333
|
+
grid-template-columns: 1fr
|
|
1053
1334
|
}
|
|
1054
1335
|
|
|
1055
1336
|
.sponsor-ribbon {
|
|
1056
1337
|
bottom: 10px;
|
|
1057
|
-
right:10px
|
|
1338
|
+
right: 10px
|
|
1058
1339
|
}
|
|
1059
1340
|
|
|
1060
1341
|
.sponsor-link {
|
|
1061
1342
|
padding: .5rem 1rem;
|
|
1062
|
-
font-size
|
|
1343
|
+
font-size: .75rem
|
|
1063
1344
|
}
|
|
1064
1345
|
|
|
1065
1346
|
.sponsor-icon {
|
|
1066
1347
|
width: .875rem;
|
|
1067
|
-
height
|
|
1348
|
+
height: .875rem
|
|
1068
1349
|
}
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
html[data-theme=dark] .sponsor-link {
|
|
1072
|
-
background: linear-gradient(135deg, #ff6b6b, #c44569);
|
|
1073
|
-
box-shadow:rgba(255, 107, 107, .2) 0 4px 12px
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
html[data-theme=dark] .sponsor-link:hover {
|
|
1077
|
-
box-shadow:rgba(255, 107, 107, .3) 0 6px 20px
|
|
1078
|
-
}
|
|
1079
1350
|
|
|
1080
|
-
.
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
padding: .5rem;
|
|
1085
|
-
background-color: var(--code-bg);
|
|
1086
|
-
border: 1px solid var(--border-color);
|
|
1087
|
-
border-radius: 6px;
|
|
1088
|
-
cursor: pointer;
|
|
1089
|
-
opacity: 0;
|
|
1090
|
-
transition: opacity .2s ease-in-out, background-color .2s;
|
|
1091
|
-
color: var(--sidebar-text);
|
|
1092
|
-
display: flex;
|
|
1093
|
-
align-items: center;
|
|
1094
|
-
justify-content: center;
|
|
1095
|
-
z-index: 10;
|
|
1096
|
-
pointer-events:auto
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
.copy-code-button.copied {
|
|
1100
|
-
color: #10b981;
|
|
1101
|
-
opacity:1
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
.sidebar nav li.collapsible > a {
|
|
1105
|
-
display: flex;
|
|
1106
|
-
justify-content: space-between;
|
|
1107
|
-
align-items:center
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
.sidebar nav li.collapsible > a .nav-item-title {
|
|
1111
|
-
flex-grow:1
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
.sidebar nav .collapse-icon {
|
|
1115
|
-
transition: transform .2s ease-in-out;
|
|
1116
|
-
flex-shrink: 0;
|
|
1117
|
-
margin-left:.5em
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
.sidebar nav li.collapsible[aria-expanded=true] > a > .collapse-icon {
|
|
1121
|
-
transform:rotate(90deg)
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
hr {
|
|
1125
|
-
color: rgba(245, 245, 245, .27);
|
|
1126
|
-
border-top-width: 1px
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
/* Mermaid diagram styles */
|
|
1130
|
-
.mermaid-container {
|
|
1131
|
-
margin: 1.5rem 0;
|
|
1132
|
-
overflow-x: auto;
|
|
1133
|
-
text-align:center
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
.mermaid-container svg {
|
|
1137
|
-
max-width: 100%;
|
|
1138
|
-
height: auto;
|
|
1139
|
-
display:inline-block
|
|
1140
|
-
}
|
|
1351
|
+
.changelog-entry {
|
|
1352
|
+
grid-template-columns: 1fr;
|
|
1353
|
+
gap: 1rem;
|
|
1354
|
+
}
|
|
1141
1355
|
|
|
1142
|
-
.
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
background-color: rgba(231, 76, 60, .07);
|
|
1147
|
-
border-left: 4px solid #e74c3c;
|
|
1148
|
-
border-radius: 4px;
|
|
1149
|
-
font-size:.9rem
|
|
1150
|
-
}
|
|
1356
|
+
.changelog-meta {
|
|
1357
|
+
text-align: left;
|
|
1358
|
+
padding-top: 0;
|
|
1359
|
+
}
|
|
1151
1360
|
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
display: none
|
|
1361
|
+
.changelog-body {
|
|
1362
|
+
border-left: 2px solid var(--border-color);
|
|
1363
|
+
padding-left: 1.5rem;
|
|
1364
|
+
margin-left: 0.5rem;
|
|
1365
|
+
}
|
|
1158
1366
|
}
|