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