robindoc 3.3.0 → 3.3.1
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 +1 -0
- package/lib/components/blocks/header-menu/index.d.ts.map +1 -1
- package/lib/components/blocks/header-menu/index.js +1 -1
- package/lib/components/blocks/header-menu/index.js.map +1 -1
- package/lib/components/blocks/no-js/index.d.ts.map +1 -1
- package/lib/components/blocks/no-js/index.js +1 -1
- package/lib/components/blocks/no-js/index.js.map +1 -1
- package/lib/components/blocks/pagination/index.d.ts.map +1 -1
- package/lib/components/blocks/pagination/index.js +1 -1
- package/lib/components/blocks/pagination/index.js.map +1 -1
- package/lib/components/blocks/theme-detector/index.d.ts.map +1 -1
- package/lib/components/blocks/theme-detector/index.js +1 -1
- package/lib/components/blocks/theme-detector/index.js.map +1 -1
- package/lib/components/blocks/theme-switcher/index.d.ts.map +1 -1
- package/lib/components/blocks/theme-switcher/index.js +1 -1
- package/lib/components/blocks/theme-switcher/index.js.map +1 -1
- package/lib/components/contexts/contents/provider.d.ts.map +1 -1
- package/lib/components/contexts/contents/provider.js +1 -1
- package/lib/components/contexts/contents/provider.js.map +1 -1
- package/lib/components/elements/article/document.d.ts.map +1 -1
- package/lib/components/elements/article/document.js +1 -1
- package/lib/components/elements/article/document.js.map +1 -1
- package/lib/components/elements/robin-provider/index.d.ts +2 -0
- package/lib/components/elements/robin-provider/index.d.ts.map +1 -1
- package/lib/components/elements/robin-provider/index.js +1 -1
- package/lib/components/elements/robin-provider/index.js.map +1 -1
- package/lib/components/elements/sidebar/sidebar-menu/index.d.ts.map +1 -1
- package/lib/components/elements/sidebar/sidebar-menu/index.js +1 -1
- package/lib/components/elements/sidebar/sidebar-menu/index.js.map +1 -1
- package/lib/components/ui/code-block/index.d.ts.map +1 -1
- package/lib/components/ui/code-block/index.js.map +1 -1
- package/lib/components/ui/copy-button/index.d.ts.map +1 -1
- package/lib/components/ui/copy-button/index.js +1 -1
- package/lib/components/ui/copy-button/index.js.map +1 -1
- package/lib/components/ui/git-logos/index.d.ts +1 -0
- package/lib/components/ui/git-logos/index.d.ts.map +1 -1
- package/lib/components/ui/git-logos/index.js +1 -1
- package/lib/components/ui/git-logos/index.js.map +1 -1
- package/lib/components/ui/tabs/tabs-header/index.d.ts.map +1 -1
- package/lib/components/ui/tabs/tabs-header/index.js +1 -1
- package/lib/components/ui/tabs/tabs-header/index.js.map +1 -1
- package/lib/components/ui/tabs/tabs-styles/index.js +1 -1
- package/lib/components/ui/tabs/tabs-styles/index.js.map +1 -1
- package/lib/styles.css +283 -225
- package/package.json +2 -2
- package/lib/assets/index.d.ts +0 -2
- package/lib/assets/index.d.ts.map +0 -1
- package/lib/assets/index.js +0 -2
- package/lib/assets/index.js.map +0 -1
package/lib/styles.css
CHANGED
|
@@ -1,4 +1,128 @@
|
|
|
1
|
-
|
|
1
|
+
.r-header {
|
|
2
|
+
position: sticky;
|
|
3
|
+
background-color: var(--r-body);
|
|
4
|
+
top: 0;
|
|
5
|
+
border-bottom: 1px solid var(--r-neutral-300);
|
|
6
|
+
height: 60px;
|
|
7
|
+
z-index: 1000;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.r-header-body {
|
|
12
|
+
height: 100%;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
align-items: center;
|
|
16
|
+
gap: 24px;
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.r-header-logo {
|
|
21
|
+
display: block;
|
|
22
|
+
margin-right: 24px;
|
|
23
|
+
color: var(--r-neutral-700);
|
|
24
|
+
transition: color 0.2s;
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
}
|
|
27
|
+
.r-header-logo:hover, .r-header-logo:focus {
|
|
28
|
+
color: var(--r-neutral-950);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.r-header-nav {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
gap: 12px 16px;
|
|
35
|
+
}
|
|
36
|
+
@media screen and (width >= 1024px) {
|
|
37
|
+
.r-header-nav {
|
|
38
|
+
flex-direction: row;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.r-header-link {
|
|
43
|
+
color: var(--r-neutral-600);
|
|
44
|
+
text-decoration: none;
|
|
45
|
+
padding: 4px 0;
|
|
46
|
+
transition: color 0.2s;
|
|
47
|
+
box-sizing: border-box;
|
|
48
|
+
}
|
|
49
|
+
.r-header-link:hover, .r-header-link:focus-visible {
|
|
50
|
+
color: var(--r-neutral-950);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.r-header-link._target {
|
|
54
|
+
color: var(--r-primary-800);
|
|
55
|
+
}
|
|
56
|
+
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
57
|
+
color: var(--r-primary-700);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.r-header-actions {
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column-reverse;
|
|
63
|
+
gap: 16px;
|
|
64
|
+
align-items: stretch;
|
|
65
|
+
}
|
|
66
|
+
@media screen and (width >= 1024px) {
|
|
67
|
+
.r-header-actions {
|
|
68
|
+
flex-direction: row;
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: 28px;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.r-header-sections {
|
|
75
|
+
display: flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
gap: 12px;
|
|
78
|
+
}
|
|
79
|
+
@media screen and (width < 768px) {
|
|
80
|
+
.r-header-sections .r-dropdown {
|
|
81
|
+
flex: 1;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
@media screen and (width < 768px) {
|
|
85
|
+
.r-header-sections .r-dropdown-drop {
|
|
86
|
+
max-width: none;
|
|
87
|
+
width: 100%;
|
|
88
|
+
left: 0;
|
|
89
|
+
}
|
|
90
|
+
}.r-footer {
|
|
91
|
+
border-top: 1px solid var(--r-neutral-300);
|
|
92
|
+
padding-top: 24px;
|
|
93
|
+
padding-bottom: 24px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.r-footer-row {
|
|
97
|
+
display: flex;
|
|
98
|
+
justify-content: space-between;
|
|
99
|
+
align-items: center;
|
|
100
|
+
gap: 32px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.r-footer-additional {
|
|
104
|
+
margin-top: 32px;
|
|
105
|
+
justify-content: flex-end;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.r-copyright {
|
|
109
|
+
color: var(--r-neutral-800);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.r-powered {
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
display: block;
|
|
115
|
+
color: var(--r-neutral-600);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.r-powered-link {
|
|
119
|
+
font-weight: 600;
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
color: var(--r-neutral-950);
|
|
122
|
+
}
|
|
123
|
+
.r-powered-link:hover {
|
|
124
|
+
color: var(--r-primary-900);
|
|
125
|
+
}.r-root {
|
|
2
126
|
overflow: hidden;
|
|
3
127
|
--rb-neutral-50: #f8fafc;
|
|
4
128
|
--rb-neutral-100: #f1f5f9;
|
|
@@ -37,8 +161,8 @@
|
|
|
37
161
|
--rb-body-950: #00020a;
|
|
38
162
|
}
|
|
39
163
|
|
|
40
|
-
|
|
41
|
-
--header-height: 60px;
|
|
164
|
+
.r-root {
|
|
165
|
+
--r-header-height: 60px;
|
|
42
166
|
position: relative;
|
|
43
167
|
padding: 0;
|
|
44
168
|
margin: 0;
|
|
@@ -46,65 +170,42 @@ body {
|
|
|
46
170
|
box-sizing: border-box;
|
|
47
171
|
background-color: var(--r-body);
|
|
48
172
|
color: var(--r-neutral-950);
|
|
49
|
-
height:
|
|
173
|
+
height: 100dvh;
|
|
50
174
|
overflow: hidden auto;
|
|
51
|
-
scroll-padding-top: calc(var(--header-height) + 20px);
|
|
175
|
+
scroll-padding-top: calc(var(--r-header-height) + 20px);
|
|
52
176
|
scrollbar-color: var(--r-neutral-400) var(--r-neutral-200);
|
|
53
177
|
white-space: pre-wrap;
|
|
178
|
+
box-sizing: border-box;
|
|
54
179
|
}
|
|
55
180
|
@media screen and (width < 768px) {
|
|
56
|
-
|
|
57
|
-
scroll-padding-top: calc(var(--header-height) + 60px);
|
|
181
|
+
.r-root {
|
|
182
|
+
scroll-padding-top: calc(var(--r-header-height) + 60px);
|
|
58
183
|
}
|
|
59
184
|
}
|
|
60
185
|
@media screen and (width > 1180px) {
|
|
61
|
-
|
|
186
|
+
.r-root {
|
|
62
187
|
scroll-behavior: smooth;
|
|
63
188
|
scrollbar-gutter: stable;
|
|
64
189
|
}
|
|
65
190
|
}
|
|
66
191
|
|
|
67
|
-
*,
|
|
68
|
-
*:before,
|
|
69
|
-
*:after {
|
|
70
|
-
box-sizing: inherit;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@media (prefers-reduced-motion: reduce) {
|
|
74
|
-
*,
|
|
75
|
-
::before,
|
|
76
|
-
::after {
|
|
77
|
-
animation-delay: -1ms !important;
|
|
78
|
-
animation-duration: 1ms !important;
|
|
79
|
-
animation-iteration-count: 1 !important;
|
|
80
|
-
background-attachment: initial !important;
|
|
81
|
-
scroll-behavior: auto !important;
|
|
82
|
-
transition-duration: 1ms !important;
|
|
83
|
-
transition-delay: -1ms !important;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
svg {
|
|
87
|
-
display: block;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
192
|
@media screen and (width < 768px) {
|
|
91
|
-
.
|
|
193
|
+
.r-root_mobile-lock {
|
|
92
194
|
overflow: hidden;
|
|
93
195
|
}
|
|
94
196
|
}
|
|
95
197
|
|
|
96
198
|
@media screen and (width < 1024px) {
|
|
97
|
-
.
|
|
199
|
+
.r-root_tablet-lock {
|
|
98
200
|
overflow: hidden;
|
|
99
201
|
}
|
|
100
202
|
}
|
|
101
203
|
|
|
102
|
-
.
|
|
204
|
+
.r-root_lock {
|
|
103
205
|
overflow: hidden;
|
|
104
206
|
}
|
|
105
207
|
|
|
106
|
-
|
|
107
|
-
.theme-light {
|
|
208
|
+
.r-root.r-theme-light {
|
|
108
209
|
color-scheme: light;
|
|
109
210
|
--r-body: var(--rb-body-50);
|
|
110
211
|
--r-neutral-50: var(--rb-neutral-50, #f8fafc);
|
|
@@ -214,7 +315,7 @@ html,
|
|
|
214
315
|
--r-cl-62: #ffebda;
|
|
215
316
|
}
|
|
216
317
|
|
|
217
|
-
.theme-dark {
|
|
318
|
+
.r-root.r-theme-dark {
|
|
218
319
|
color-scheme: dark;
|
|
219
320
|
--r-body: var(--rb-body-950);
|
|
220
321
|
--r-neutral-50: var(--rb-neutral-950, #020617);
|
|
@@ -321,129 +422,10 @@ html,
|
|
|
321
422
|
--r-cl-60: #86181d;
|
|
322
423
|
--r-cl-61: #144620;
|
|
323
424
|
--r-cl-62: #c24e00;
|
|
324
|
-
}.r-header {
|
|
325
|
-
position: sticky;
|
|
326
|
-
background-color: var(--r-body);
|
|
327
|
-
top: 0;
|
|
328
|
-
border-bottom: 1px solid var(--r-neutral-300);
|
|
329
|
-
height: 60px;
|
|
330
|
-
z-index: 1000;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.r-header-body {
|
|
334
|
-
height: 100%;
|
|
335
|
-
display: flex;
|
|
336
|
-
justify-content: space-between;
|
|
337
|
-
align-items: center;
|
|
338
|
-
gap: 24px;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.r-header-logo {
|
|
342
|
-
display: block;
|
|
343
|
-
margin-right: 24px;
|
|
344
|
-
color: var(--r-neutral-700);
|
|
345
|
-
transition: color 0.2s;
|
|
346
|
-
}
|
|
347
|
-
.r-header-logo:hover, .r-header-logo:focus {
|
|
348
|
-
color: var(--r-neutral-950);
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.r-header-nav {
|
|
352
|
-
display: flex;
|
|
353
|
-
flex-direction: column;
|
|
354
|
-
gap: 12px 16px;
|
|
355
|
-
}
|
|
356
|
-
@media screen and (width >= 1024px) {
|
|
357
|
-
.r-header-nav {
|
|
358
|
-
flex-direction: row;
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.r-header-link {
|
|
363
|
-
color: var(--r-neutral-600);
|
|
364
|
-
text-decoration: none;
|
|
365
|
-
padding: 4px 0;
|
|
366
|
-
transition: color 0.2s;
|
|
367
|
-
}
|
|
368
|
-
.r-header-link:hover, .r-header-link:focus-visible {
|
|
369
|
-
color: var(--r-neutral-950);
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.r-header-link._target {
|
|
373
|
-
color: var(--r-primary-800);
|
|
374
|
-
}
|
|
375
|
-
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
376
|
-
color: var(--r-primary-700);
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.r-header-actions {
|
|
380
|
-
display: flex;
|
|
381
|
-
flex-direction: column-reverse;
|
|
382
|
-
gap: 16px;
|
|
383
|
-
align-items: stretch;
|
|
384
|
-
}
|
|
385
|
-
@media screen and (width >= 1024px) {
|
|
386
|
-
.r-header-actions {
|
|
387
|
-
flex-direction: row;
|
|
388
|
-
align-items: center;
|
|
389
|
-
gap: 28px;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.r-header-sections {
|
|
394
|
-
display: flex;
|
|
395
|
-
align-items: center;
|
|
396
|
-
gap: 12px;
|
|
397
|
-
}
|
|
398
|
-
@media screen and (width < 768px) {
|
|
399
|
-
.r-header-sections .r-dropdown {
|
|
400
|
-
flex: 1;
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
@media screen and (width < 768px) {
|
|
404
|
-
.r-header-sections .r-dropdown-drop {
|
|
405
|
-
max-width: none;
|
|
406
|
-
width: 100%;
|
|
407
|
-
left: 0;
|
|
408
|
-
}
|
|
409
|
-
}.r-footer {
|
|
410
|
-
border-top: 1px solid var(--r-neutral-300);
|
|
411
|
-
padding-top: 24px;
|
|
412
|
-
padding-bottom: 24px;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
.r-footer-row {
|
|
416
|
-
display: flex;
|
|
417
|
-
justify-content: space-between;
|
|
418
|
-
align-items: center;
|
|
419
|
-
gap: 32px;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.r-footer-additional {
|
|
423
|
-
margin-top: 32px;
|
|
424
|
-
justify-content: flex-end;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.r-copyright {
|
|
428
|
-
color: var(--r-neutral-800);
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.r-powered {
|
|
432
|
-
font-size: 14px;
|
|
433
|
-
display: block;
|
|
434
|
-
color: var(--r-neutral-600);
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.r-powered-link {
|
|
438
|
-
font-weight: 600;
|
|
439
|
-
text-decoration: none;
|
|
440
|
-
color: var(--r-neutral-950);
|
|
441
|
-
}
|
|
442
|
-
.r-powered-link:hover {
|
|
443
|
-
color: var(--r-primary-900);
|
|
444
425
|
}.r-docs-container {
|
|
445
|
-
min-height: calc(
|
|
426
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
446
427
|
overflow-wrap: break-word;
|
|
428
|
+
box-sizing: border-box;
|
|
447
429
|
}
|
|
448
430
|
@media screen and (width >= 768px) {
|
|
449
431
|
.r-docs-container {
|
|
@@ -463,8 +445,9 @@ html,
|
|
|
463
445
|
grid-template-rows: auto 1fr auto;
|
|
464
446
|
}
|
|
465
447
|
}.r-blog-container {
|
|
466
|
-
min-height: calc(
|
|
448
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
467
449
|
overflow-wrap: break-word;
|
|
450
|
+
box-sizing: border-box;
|
|
468
451
|
}
|
|
469
452
|
@media screen and (width >= 1180px) {
|
|
470
453
|
.r-blog-container {
|
|
@@ -476,8 +459,9 @@ html,
|
|
|
476
459
|
grid-template-rows: auto 1fr auto;
|
|
477
460
|
}
|
|
478
461
|
}.r-page-container {
|
|
479
|
-
min-height: calc(
|
|
462
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
480
463
|
overflow-wrap: break-word;
|
|
464
|
+
box-sizing: border-box;
|
|
481
465
|
}.keylink-to-content {
|
|
482
466
|
position: absolute !important;
|
|
483
467
|
top: 8px;
|
|
@@ -504,6 +488,7 @@ html,
|
|
|
504
488
|
height: 20px;
|
|
505
489
|
margin: 4px;
|
|
506
490
|
vertical-align: middle;
|
|
491
|
+
box-sizing: border-box;
|
|
507
492
|
}
|
|
508
493
|
|
|
509
494
|
.r-label {
|
|
@@ -520,6 +505,7 @@ html,
|
|
|
520
505
|
width: 100%;
|
|
521
506
|
padding-top: 2px;
|
|
522
507
|
padding-bottom: 2px;
|
|
508
|
+
box-sizing: border-box;
|
|
523
509
|
}
|
|
524
510
|
.r-task-label:hover .r-checkbox {
|
|
525
511
|
filter: brightness(0.8);
|
|
@@ -534,12 +520,13 @@ html,
|
|
|
534
520
|
vertical-align: middle;
|
|
535
521
|
}.r-sidebar {
|
|
536
522
|
grid-area: sidebar;
|
|
523
|
+
box-sizing: border-box;
|
|
537
524
|
}
|
|
538
525
|
@media screen and (width < 768px) {
|
|
539
526
|
.r-sidebar {
|
|
540
527
|
position: sticky;
|
|
541
528
|
width: calc(100% + 24px);
|
|
542
|
-
top: var(--header-height);
|
|
529
|
+
top: var(--r-header-height);
|
|
543
530
|
left: 0;
|
|
544
531
|
margin: 0 -12px;
|
|
545
532
|
background-color: var(--r-body);
|
|
@@ -562,10 +549,13 @@ html,
|
|
|
562
549
|
}
|
|
563
550
|
}
|
|
564
551
|
|
|
552
|
+
.r-sidebar-nav {
|
|
553
|
+
box-sizing: border-box;
|
|
554
|
+
}
|
|
565
555
|
@media screen and (width < 768px) {
|
|
566
556
|
.r-sidebar-nav {
|
|
567
557
|
overflow: auto;
|
|
568
|
-
max-height: calc(
|
|
558
|
+
max-height: calc(100dvh - var(--r-header-height) - 41px);
|
|
569
559
|
}
|
|
570
560
|
}
|
|
571
561
|
|
|
@@ -594,10 +584,12 @@ html,
|
|
|
594
584
|
background-color: var(--r-neutral-200);
|
|
595
585
|
z-index: 1;
|
|
596
586
|
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
587
|
+
box-sizing: border-box;
|
|
597
588
|
}
|
|
598
589
|
|
|
599
590
|
.r-sidebar-nav {
|
|
600
591
|
padding: 32px 4px 32px 2px;
|
|
592
|
+
box-sizing: border-box;
|
|
601
593
|
}
|
|
602
594
|
@media screen and (width < 768px) {
|
|
603
595
|
.r-sidebar-nav {
|
|
@@ -607,15 +599,18 @@ html,
|
|
|
607
599
|
@media screen and (width >= 768px) {
|
|
608
600
|
.r-sidebar-nav {
|
|
609
601
|
position: sticky;
|
|
610
|
-
top: var(--header-height);
|
|
602
|
+
top: var(--r-header-height);
|
|
611
603
|
overflow: auto;
|
|
612
604
|
scrollbar-width: thin;
|
|
613
605
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
614
606
|
scrollbar-gutter: stable;
|
|
615
|
-
max-height: calc(
|
|
607
|
+
max-height: calc(100dvh - var(--r-header-height));
|
|
616
608
|
}
|
|
617
609
|
}
|
|
618
610
|
|
|
611
|
+
.r-sidebar-space {
|
|
612
|
+
box-sizing: border-box;
|
|
613
|
+
}
|
|
619
614
|
@media screen and (width < 768px) {
|
|
620
615
|
.r-sidebar-space {
|
|
621
616
|
display: block;
|
|
@@ -636,6 +631,7 @@ html,
|
|
|
636
631
|
color: var(--r-neutral-800);
|
|
637
632
|
background-color: var(--r-body);
|
|
638
633
|
z-index: 1;
|
|
634
|
+
box-sizing: border-box;
|
|
639
635
|
}
|
|
640
636
|
@media screen and (width >= 768px) {
|
|
641
637
|
.r-sidebar-btn {
|
|
@@ -647,6 +643,7 @@ html,
|
|
|
647
643
|
display: inline;
|
|
648
644
|
margin-right: 6px;
|
|
649
645
|
transition: transform 0.2s;
|
|
646
|
+
box-sizing: border-box;
|
|
650
647
|
}
|
|
651
648
|
|
|
652
649
|
.r-sidebar-input:checked ~ .r-sidebar-btn .r-sidebar-chevron {
|
|
@@ -659,16 +656,19 @@ html,
|
|
|
659
656
|
padding: 0;
|
|
660
657
|
margin: 0;
|
|
661
658
|
font-size: 14px;
|
|
659
|
+
box-sizing: border-box;
|
|
662
660
|
}
|
|
663
661
|
|
|
664
662
|
.r-sidebar-drop[open]::details-content {
|
|
665
663
|
height: var(--drop-height, auto);
|
|
664
|
+
box-sizing: border-box;
|
|
666
665
|
}
|
|
667
666
|
|
|
668
667
|
.r-sidebar-drop::details-content {
|
|
669
668
|
height: 0;
|
|
670
669
|
overflow: hidden;
|
|
671
670
|
transition: height 0.3s, content-visibility 0.3s allow-discrete;
|
|
671
|
+
box-sizing: border-box;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
674
|
.r-sidebar-sublist {
|
|
@@ -679,6 +679,7 @@ html,
|
|
|
679
679
|
position: relative;
|
|
680
680
|
border-top-left-radius: 0;
|
|
681
681
|
border-bottom-left-radius: 0;
|
|
682
|
+
box-sizing: border-box;
|
|
682
683
|
}
|
|
683
684
|
.r-sidebar-sublist .r-sidebar-link::before {
|
|
684
685
|
content: "";
|
|
@@ -689,6 +690,7 @@ html,
|
|
|
689
690
|
height: calc(100% + 4px);
|
|
690
691
|
background-color: var(--r-neutral-200);
|
|
691
692
|
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
693
|
+
box-sizing: border-box;
|
|
692
694
|
}
|
|
693
695
|
|
|
694
696
|
.r-sidebar-li {
|
|
@@ -843,6 +845,7 @@ html,
|
|
|
843
845
|
cursor: pointer;
|
|
844
846
|
background: none;
|
|
845
847
|
border: none;
|
|
848
|
+
box-sizing: border-box;
|
|
846
849
|
}
|
|
847
850
|
@media screen and (width >= 1024px) {
|
|
848
851
|
.r-header-burger {
|
|
@@ -858,6 +861,7 @@ html,
|
|
|
858
861
|
background-color: var(--r-neutral-700);
|
|
859
862
|
margin: auto;
|
|
860
863
|
transition: transform 0.3s;
|
|
864
|
+
box-sizing: border-box;
|
|
861
865
|
}
|
|
862
866
|
|
|
863
867
|
.r-burger-line._top {
|
|
@@ -886,6 +890,7 @@ html,
|
|
|
886
890
|
width: 100%;
|
|
887
891
|
text-align: left;
|
|
888
892
|
cursor: text;
|
|
893
|
+
box-sizing: border-box;
|
|
889
894
|
}
|
|
890
895
|
@media screen and (width >= 768px) {
|
|
891
896
|
.r-search-btn {
|
|
@@ -933,6 +938,7 @@ html,
|
|
|
933
938
|
border-bottom: 2px solid var(--r-neutral-300);
|
|
934
939
|
width: 100%;
|
|
935
940
|
font-size: 16px;
|
|
941
|
+
box-sizing: border-box;
|
|
936
942
|
}
|
|
937
943
|
@media screen and (width >= 768px) {
|
|
938
944
|
.r-search-input {
|
|
@@ -957,12 +963,13 @@ html,
|
|
|
957
963
|
|
|
958
964
|
.r-search-results {
|
|
959
965
|
padding: 12px 8px 8px;
|
|
960
|
-
max-height: min(400px,
|
|
966
|
+
max-height: min(400px, 100dvh - 200px);
|
|
961
967
|
overflow-y: auto;
|
|
962
968
|
list-style: none;
|
|
963
969
|
scrollbar-width: thin;
|
|
964
970
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
965
971
|
margin: 0;
|
|
972
|
+
box-sizing: border-box;
|
|
966
973
|
}
|
|
967
974
|
|
|
968
975
|
.r-search-item {
|
|
@@ -974,6 +981,7 @@ html,
|
|
|
974
981
|
border-radius: 6px;
|
|
975
982
|
width: 100%;
|
|
976
983
|
margin-top: 6px;
|
|
984
|
+
box-sizing: border-box;
|
|
977
985
|
}
|
|
978
986
|
.r-search-item:hover, .r-search-item:focus {
|
|
979
987
|
color: var(--r-neutral-950);
|
|
@@ -1019,11 +1027,14 @@ html,
|
|
|
1019
1027
|
border: 0;
|
|
1020
1028
|
background: none;
|
|
1021
1029
|
z-index: 1;
|
|
1030
|
+
box-sizing: border-box;
|
|
1022
1031
|
}
|
|
1023
1032
|
|
|
1024
1033
|
.r-dropdown-chevron {
|
|
1034
|
+
display: block;
|
|
1025
1035
|
margin-left: 6px;
|
|
1026
1036
|
transition: transform 0.3s 0.1s;
|
|
1037
|
+
box-sizing: border-box;
|
|
1027
1038
|
}
|
|
1028
1039
|
|
|
1029
1040
|
.r-dropdown-drop {
|
|
@@ -1042,6 +1053,7 @@ html,
|
|
|
1042
1053
|
padding: 2px 6px;
|
|
1043
1054
|
min-width: 120px;
|
|
1044
1055
|
max-width: 180px;
|
|
1056
|
+
box-sizing: border-box;
|
|
1045
1057
|
}
|
|
1046
1058
|
|
|
1047
1059
|
.r-dropdown-link {
|
|
@@ -1054,6 +1066,7 @@ html,
|
|
|
1054
1066
|
margin-bottom: 4px;
|
|
1055
1067
|
border-radius: 4px;
|
|
1056
1068
|
transition: background-color 0.2s;
|
|
1069
|
+
box-sizing: border-box;
|
|
1057
1070
|
}
|
|
1058
1071
|
.r-dropdown-link:hover {
|
|
1059
1072
|
color: var(--r-neutral-900);
|
|
@@ -1086,6 +1099,7 @@ html,
|
|
|
1086
1099
|
padding-left: 12px;
|
|
1087
1100
|
margin-right: auto;
|
|
1088
1101
|
margin-left: auto;
|
|
1102
|
+
box-sizing: border-box;
|
|
1089
1103
|
}.r-theme-switcher {
|
|
1090
1104
|
position: relative;
|
|
1091
1105
|
display: flex;
|
|
@@ -1095,6 +1109,7 @@ html,
|
|
|
1095
1109
|
padding: 2px;
|
|
1096
1110
|
background-color: var(--r-neutral-950);
|
|
1097
1111
|
border-radius: 14px;
|
|
1112
|
+
box-sizing: border-box;
|
|
1098
1113
|
}
|
|
1099
1114
|
.r-theme-switcher::before {
|
|
1100
1115
|
content: "";
|
|
@@ -1107,6 +1122,7 @@ html,
|
|
|
1107
1122
|
background-color: var(--r-body);
|
|
1108
1123
|
border-radius: 12px;
|
|
1109
1124
|
transition: left 0.2s;
|
|
1125
|
+
box-sizing: border-box;
|
|
1110
1126
|
}
|
|
1111
1127
|
|
|
1112
1128
|
.r-theme-switcher-btn {
|
|
@@ -1125,32 +1141,36 @@ html,
|
|
|
1125
1141
|
fill: var(--r-neutral-50);
|
|
1126
1142
|
}
|
|
1127
1143
|
|
|
1128
|
-
.theme-dark:not(.theme-system) .r-theme-switcher::before {
|
|
1144
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1129
1145
|
left: 2px;
|
|
1130
1146
|
}
|
|
1131
1147
|
|
|
1132
|
-
.theme-dark:not(.theme-system) .r-theme-switcher-btn__dark {
|
|
1148
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
1133
1149
|
color: var(--r-neutral-950);
|
|
1134
1150
|
pointer-events: none;
|
|
1135
1151
|
}
|
|
1136
1152
|
|
|
1137
1153
|
.r-theme-switcher::before,
|
|
1138
|
-
.theme-system .r-theme-switcher::before {
|
|
1154
|
+
.r-theme-system .r-theme-switcher::before {
|
|
1139
1155
|
left: 38px;
|
|
1140
1156
|
}
|
|
1141
1157
|
|
|
1142
|
-
.theme-system .r-theme-switcher-btn__system {
|
|
1158
|
+
.r-theme-system .r-theme-switcher-btn__system {
|
|
1143
1159
|
color: var(--r-neutral-950);
|
|
1144
1160
|
pointer-events: none;
|
|
1145
1161
|
}
|
|
1146
1162
|
|
|
1147
|
-
.theme-light:not(.theme-system) .r-theme-switcher::before {
|
|
1163
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
1148
1164
|
left: 74px;
|
|
1149
1165
|
}
|
|
1150
1166
|
|
|
1151
|
-
.theme-light:not(.theme-system) .r-theme-switcher-btn__light {
|
|
1167
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
1152
1168
|
color: var(--r-neutral-950);
|
|
1153
1169
|
pointer-events: none;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.r-theme-switcher-svg {
|
|
1173
|
+
display: block;
|
|
1154
1174
|
}.r-keylink {
|
|
1155
1175
|
display: block;
|
|
1156
1176
|
position: relative;
|
|
@@ -1170,19 +1190,21 @@ html,
|
|
|
1170
1190
|
border: 0 !important;
|
|
1171
1191
|
user-select: none;
|
|
1172
1192
|
pointer-events: none;
|
|
1193
|
+
box-sizing: border-box;
|
|
1173
1194
|
}.r-contents {
|
|
1174
1195
|
grid-area: contents;
|
|
1175
1196
|
}
|
|
1176
1197
|
|
|
1177
1198
|
.r-contents-sticky {
|
|
1178
1199
|
position: sticky;
|
|
1179
|
-
top: var(--header-height);
|
|
1200
|
+
top: var(--r-header-height);
|
|
1180
1201
|
width: 100%;
|
|
1202
|
+
box-sizing: border-box;
|
|
1181
1203
|
}
|
|
1182
1204
|
@media screen and (width >= 1180px) {
|
|
1183
1205
|
.r-contents-sticky {
|
|
1184
1206
|
padding: 0 12px;
|
|
1185
|
-
max-height: calc(
|
|
1207
|
+
max-height: calc(100dvh - var(--r-header-height));
|
|
1186
1208
|
overflow: auto;
|
|
1187
1209
|
scrollbar-width: thin;
|
|
1188
1210
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
@@ -1200,6 +1222,9 @@ html,
|
|
|
1200
1222
|
}
|
|
1201
1223
|
}
|
|
1202
1224
|
|
|
1225
|
+
.r-contents-control:checked + .r-contents-details .r-contents-list {
|
|
1226
|
+
box-sizing: border-box;
|
|
1227
|
+
}
|
|
1203
1228
|
@media screen and (width < 1180px) {
|
|
1204
1229
|
.r-contents-control:checked + .r-contents-details .r-contents-list {
|
|
1205
1230
|
visibility: visible;
|
|
@@ -1218,6 +1243,7 @@ html,
|
|
|
1218
1243
|
.r-contents-list {
|
|
1219
1244
|
overflow: hidden;
|
|
1220
1245
|
transition: height 0.3s allow-discrete, visibility 0.3s allow-discrete;
|
|
1246
|
+
box-sizing: border-box;
|
|
1221
1247
|
}
|
|
1222
1248
|
@media screen and (width < 1180px) {
|
|
1223
1249
|
.r-contents-list {
|
|
@@ -1309,6 +1335,7 @@ html,
|
|
|
1309
1335
|
border-style: solid;
|
|
1310
1336
|
border-width: 0 2px 0 0;
|
|
1311
1337
|
border-color: var(--r-primary-800);
|
|
1338
|
+
box-sizing: border-box;
|
|
1312
1339
|
}
|
|
1313
1340
|
.r-contents-link::before {
|
|
1314
1341
|
border-color: var(--r-neutral-200);
|
|
@@ -1322,19 +1349,23 @@ html,
|
|
|
1322
1349
|
|
|
1323
1350
|
.r-contents-link._nested {
|
|
1324
1351
|
margin-left: 16px;
|
|
1352
|
+
box-sizing: border-box;
|
|
1325
1353
|
}
|
|
1326
1354
|
.r-contents-link._nested::before, .r-contents-link._nested::after {
|
|
1327
1355
|
left: -16px;
|
|
1328
1356
|
width: 18px;
|
|
1357
|
+
box-sizing: border-box;
|
|
1329
1358
|
}
|
|
1330
1359
|
|
|
1331
1360
|
.r-contents-link:not(._nested) + .r-contents-link._nested::before, .r-contents-link:not(._nested) + .r-contents-link._nested::after {
|
|
1332
1361
|
border-top-width: 2px;
|
|
1362
|
+
box-sizing: border-box;
|
|
1333
1363
|
}
|
|
1334
1364
|
|
|
1335
1365
|
.r-contents-link._nested + .r-contents-link:not(._nested)::before, .r-contents-link._nested + .r-contents-link:not(._nested)::after {
|
|
1336
1366
|
width: 18px;
|
|
1337
1367
|
border-width: 2px 0 0 2px;
|
|
1368
|
+
box-sizing: border-box;
|
|
1338
1369
|
}
|
|
1339
1370
|
.r-contents-link._nested + .r-contents-link:not(._nested)::after {
|
|
1340
1371
|
mask-image: linear-gradient(45deg, transparent 50%, #000 50%);
|
|
@@ -1389,6 +1420,7 @@ html,
|
|
|
1389
1420
|
padding-bottom: 10px;
|
|
1390
1421
|
font-size: 14px;
|
|
1391
1422
|
font-weight: 600;
|
|
1423
|
+
box-sizing: border-box;
|
|
1392
1424
|
}
|
|
1393
1425
|
.r-contents-git:hover {
|
|
1394
1426
|
color: var(--r-neutral-900);
|
|
@@ -1503,9 +1535,15 @@ html,
|
|
|
1503
1535
|
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1504
1536
|
transform: translate(8px, -50%);
|
|
1505
1537
|
}
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.r-pagination-svg {
|
|
1541
|
+
display: block;
|
|
1506
1542
|
}.r-last-modified {
|
|
1507
1543
|
color: var(--r-neutral-700);
|
|
1508
1544
|
margin-block-start: 16px;
|
|
1545
|
+
}.r-git-logo {
|
|
1546
|
+
display: block;
|
|
1509
1547
|
}.r-external-mark {
|
|
1510
1548
|
position: relative;
|
|
1511
1549
|
vertical-align: text-top;
|
|
@@ -1514,6 +1552,7 @@ html,
|
|
|
1514
1552
|
margin-right: 2px;
|
|
1515
1553
|
width: 6px;
|
|
1516
1554
|
height: 6px;
|
|
1555
|
+
box-sizing: border-box;
|
|
1517
1556
|
}
|
|
1518
1557
|
.r-external-mark::after {
|
|
1519
1558
|
content: "";
|
|
@@ -1524,6 +1563,7 @@ html,
|
|
|
1524
1563
|
height: 100%;
|
|
1525
1564
|
border-top: 1px solid currentColor;
|
|
1526
1565
|
border-right: 1px solid currentColor;
|
|
1566
|
+
box-sizing: border-box;
|
|
1527
1567
|
}
|
|
1528
1568
|
.r-external-mark::before {
|
|
1529
1569
|
content: "";
|
|
@@ -1534,6 +1574,7 @@ html,
|
|
|
1534
1574
|
height: 3px;
|
|
1535
1575
|
background-color: currentColor;
|
|
1536
1576
|
border-radius: 0 0 0 4px;
|
|
1577
|
+
box-sizing: border-box;
|
|
1537
1578
|
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1538
1579
|
visibility: visible;
|
|
1539
1580
|
opacity: 1;
|
|
@@ -1604,6 +1645,7 @@ html,
|
|
|
1604
1645
|
margin-block-end: 12px;
|
|
1605
1646
|
scrollbar-width: thin;
|
|
1606
1647
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
1648
|
+
box-sizing: border-box;
|
|
1607
1649
|
}.r-blockquote {
|
|
1608
1650
|
background-color: var(--r-neutral-100);
|
|
1609
1651
|
padding: 8px 12px 8px 20px;
|
|
@@ -1623,7 +1665,7 @@ html,
|
|
|
1623
1665
|
.r-blockquote-icon {
|
|
1624
1666
|
display: inline-block;
|
|
1625
1667
|
vertical-align: middle;
|
|
1626
|
-
margin-top: -
|
|
1668
|
+
margin-top: -3px;
|
|
1627
1669
|
margin-right: 8px;
|
|
1628
1670
|
}
|
|
1629
1671
|
|
|
@@ -1660,6 +1702,18 @@ html,
|
|
|
1660
1702
|
}
|
|
1661
1703
|
.r-blockquote-caution .r-blockquote-title {
|
|
1662
1704
|
color: var(--r-caution);
|
|
1705
|
+
}.r-code-span {
|
|
1706
|
+
font-family: var(--monospace-font, monospace, monospace);
|
|
1707
|
+
background-color: var(--r-neutral-200);
|
|
1708
|
+
color: var(--r-primary-900);
|
|
1709
|
+
border-radius: 4px;
|
|
1710
|
+
padding: 2px 6px;
|
|
1711
|
+
font-size: 16px;
|
|
1712
|
+
letter-spacing: 0.5px;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.r-code-span + .r-content-link-external {
|
|
1716
|
+
margin-left: -12px;
|
|
1663
1717
|
}.r-code-block {
|
|
1664
1718
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1665
1719
|
font-size: 16px;
|
|
@@ -1674,18 +1728,7 @@ html,
|
|
|
1674
1728
|
overflow-x: auto;
|
|
1675
1729
|
scrollbar-width: thin;
|
|
1676
1730
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
1677
|
-
|
|
1678
|
-
font-family: var(--monospace-font, monospace, monospace);
|
|
1679
|
-
background-color: var(--r-neutral-200);
|
|
1680
|
-
color: var(--r-primary-900);
|
|
1681
|
-
border-radius: 4px;
|
|
1682
|
-
padding: 2px 6px;
|
|
1683
|
-
font-size: 16px;
|
|
1684
|
-
letter-spacing: 0.5px;
|
|
1685
|
-
}
|
|
1686
|
-
|
|
1687
|
-
.r-code-span + .r-content-link-external {
|
|
1688
|
-
margin-left: -12px;
|
|
1731
|
+
box-sizing: border-box;
|
|
1689
1732
|
}.r-h1 {
|
|
1690
1733
|
font-size: 32px;
|
|
1691
1734
|
line-height: 1.4;
|
|
@@ -1728,6 +1771,7 @@ html,
|
|
|
1728
1771
|
margin-block-end: 1.8em;
|
|
1729
1772
|
}.r-img {
|
|
1730
1773
|
max-width: 100%;
|
|
1774
|
+
box-sizing: border-box;
|
|
1731
1775
|
}.r-p {
|
|
1732
1776
|
line-height: 1.8;
|
|
1733
1777
|
margin-block-start: 1em;
|
|
@@ -1787,6 +1831,7 @@ html,
|
|
|
1787
1831
|
pointer-events: none;
|
|
1788
1832
|
transition: opacity 0.2s 0.1s, transform 0.2s 0.1s, visibility 0.01s 0.2s 0.1s;
|
|
1789
1833
|
z-index: 1000;
|
|
1834
|
+
box-sizing: border-box;
|
|
1790
1835
|
}
|
|
1791
1836
|
@media screen and (width >= 768px) {
|
|
1792
1837
|
.r-modal {
|
|
@@ -1824,31 +1869,7 @@ html,
|
|
|
1824
1869
|
padding: 5px 8px;
|
|
1825
1870
|
min-width: 24px;
|
|
1826
1871
|
text-align: center;
|
|
1827
|
-
|
|
1828
|
-
position: relative;
|
|
1829
|
-
cursor: pointer;
|
|
1830
|
-
background: none;
|
|
1831
|
-
border: 0;
|
|
1832
|
-
padding: 0;
|
|
1833
|
-
font: inherit;
|
|
1834
|
-
}
|
|
1835
|
-
.r-copy-text:hover {
|
|
1836
|
-
color: var(--r-neutral-950);
|
|
1837
|
-
}
|
|
1838
|
-
.r-copy-text::before {
|
|
1839
|
-
content: "";
|
|
1840
|
-
position: absolute;
|
|
1841
|
-
bottom: -2px;
|
|
1842
|
-
left: 0;
|
|
1843
|
-
width: 100%;
|
|
1844
|
-
height: 1px;
|
|
1845
|
-
background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
|
|
1846
|
-
transition: background 0.2s;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
.r-copy-text:active,
|
|
1850
|
-
.r-copy-text._active {
|
|
1851
|
-
color: var(--r-success);
|
|
1872
|
+
box-sizing: border-box;
|
|
1852
1873
|
}.r-copy-button {
|
|
1853
1874
|
position: relative;
|
|
1854
1875
|
padding: 8px;
|
|
@@ -1890,6 +1911,36 @@ html,
|
|
|
1890
1911
|
.r-copy-button._active .r-copy-button-base {
|
|
1891
1912
|
opacity: 0;
|
|
1892
1913
|
transform: scale(0.7);
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.r-copy-button-svg {
|
|
1917
|
+
display: block;
|
|
1918
|
+
}.r-copy-text {
|
|
1919
|
+
position: relative;
|
|
1920
|
+
cursor: pointer;
|
|
1921
|
+
background: none;
|
|
1922
|
+
border: 0;
|
|
1923
|
+
padding: 0;
|
|
1924
|
+
font: inherit;
|
|
1925
|
+
}
|
|
1926
|
+
.r-copy-text:hover {
|
|
1927
|
+
color: var(--r-neutral-950);
|
|
1928
|
+
}
|
|
1929
|
+
.r-copy-text::before {
|
|
1930
|
+
content: "";
|
|
1931
|
+
position: absolute;
|
|
1932
|
+
bottom: -2px;
|
|
1933
|
+
left: 0;
|
|
1934
|
+
width: 100%;
|
|
1935
|
+
height: 1px;
|
|
1936
|
+
background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
|
|
1937
|
+
transition: background 0.2s;
|
|
1938
|
+
box-sizing: border-box;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.r-copy-text:active,
|
|
1942
|
+
.r-copy-text._active {
|
|
1943
|
+
color: var(--r-success);
|
|
1893
1944
|
}.r-content-link {
|
|
1894
1945
|
text-decoration: none;
|
|
1895
1946
|
color: var(--r-link);
|
|
@@ -1909,6 +1960,7 @@ html,
|
|
|
1909
1960
|
margin-right: 2px;
|
|
1910
1961
|
width: 6px;
|
|
1911
1962
|
height: 6px;
|
|
1963
|
+
box-sizing: border-box;
|
|
1912
1964
|
}
|
|
1913
1965
|
.r-content-link-external::after {
|
|
1914
1966
|
content: "";
|
|
@@ -1919,6 +1971,7 @@ html,
|
|
|
1919
1971
|
height: 100%;
|
|
1920
1972
|
border-top: 1px solid currentColor;
|
|
1921
1973
|
border-right: 1px solid currentColor;
|
|
1974
|
+
box-sizing: border-box;
|
|
1922
1975
|
}
|
|
1923
1976
|
.r-content-link-external::before {
|
|
1924
1977
|
content: "";
|
|
@@ -1929,6 +1982,17 @@ html,
|
|
|
1929
1982
|
height: 3px;
|
|
1930
1983
|
background-color: currentColor;
|
|
1931
1984
|
border-radius: 0 0 0 4px;
|
|
1985
|
+
box-sizing: border-box;
|
|
1986
|
+
}.r-ol {
|
|
1987
|
+
padding-inline-start: 0;
|
|
1988
|
+
list-style-position: inside;
|
|
1989
|
+
margin-block-start: 1em;
|
|
1990
|
+
margin-block-end: 1em;
|
|
1991
|
+
}.r-ul {
|
|
1992
|
+
padding-inline-start: 0;
|
|
1993
|
+
list-style-position: inside;
|
|
1994
|
+
margin-block-start: 1em;
|
|
1995
|
+
margin-block-end: 1em;
|
|
1932
1996
|
}.r-li {
|
|
1933
1997
|
line-height: 1.8;
|
|
1934
1998
|
margin-block-start: 6px;
|
|
@@ -1940,24 +2004,15 @@ html,
|
|
|
1940
2004
|
padding-inline-start: 20px;
|
|
1941
2005
|
margin-block-start: 6px;
|
|
1942
2006
|
margin-block-end: 6px;
|
|
1943
|
-
}.r-ol {
|
|
1944
|
-
padding-inline-start: 0;
|
|
1945
|
-
list-style-position: inside;
|
|
1946
|
-
margin-block-start: 1em;
|
|
1947
|
-
margin-block-end: 1em;
|
|
1948
|
-
}.r-ul {
|
|
1949
|
-
padding-inline-start: 0;
|
|
1950
|
-
list-style-position: inside;
|
|
1951
|
-
margin-block-start: 1em;
|
|
1952
|
-
margin-block-end: 1em;
|
|
1953
|
-
}.r-td {
|
|
1954
|
-
padding: 6px 12px;
|
|
1955
|
-
border-bottom: 1px solid var(--r-neutral-400);
|
|
1956
|
-
border-collapse: collapse;
|
|
1957
2007
|
}.r-table {
|
|
1958
2008
|
min-width: 100%;
|
|
1959
2009
|
text-align: left;
|
|
1960
2010
|
border-collapse: collapse;
|
|
2011
|
+
box-sizing: border-box;
|
|
2012
|
+
}.r-td {
|
|
2013
|
+
padding: 6px 12px;
|
|
2014
|
+
border-bottom: 1px solid var(--r-neutral-400);
|
|
2015
|
+
border-collapse: collapse;
|
|
1961
2016
|
}.r-th {
|
|
1962
2017
|
padding: 6px 12px;
|
|
1963
2018
|
border-top: 1px solid var(--r-neutral-500);
|
|
@@ -1976,6 +2031,7 @@ html,
|
|
|
1976
2031
|
width: 100%;
|
|
1977
2032
|
padding-top: 2px;
|
|
1978
2033
|
padding-bottom: 2px;
|
|
2034
|
+
box-sizing: border-box;
|
|
1979
2035
|
}
|
|
1980
2036
|
.r-task-label:hover .r-task-checkbox {
|
|
1981
2037
|
filter: brightness(0.8);
|
|
@@ -1988,6 +2044,7 @@ html,
|
|
|
1988
2044
|
inset: -4px;
|
|
1989
2045
|
margin-inline-end: 8px;
|
|
1990
2046
|
vertical-align: middle;
|
|
2047
|
+
box-sizing: border-box;
|
|
1991
2048
|
}
|
|
1992
2049
|
|
|
1993
2050
|
.r-task-label-text {
|
|
@@ -2029,6 +2086,7 @@ html,
|
|
|
2029
2086
|
max-width: 200px;
|
|
2030
2087
|
transform: translateY(80%);
|
|
2031
2088
|
transition: transform 0.2s allow-discrete, opacity 0.2s allow-discrete;
|
|
2089
|
+
box-sizing: border-box;
|
|
2032
2090
|
}
|
|
2033
2091
|
.r-tooltip._bottom-start {
|
|
2034
2092
|
bottom: -8px;
|