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