robindoc 3.7.1 → 3.7.3
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/lib/styles.css +181 -167
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -15,8 +15,14 @@
|
|
|
15
15
|
align-items: center;
|
|
16
16
|
gap: 24px;
|
|
17
17
|
box-sizing: border-box;
|
|
18
|
-
padding-left:
|
|
19
|
-
padding-right:
|
|
18
|
+
padding-left: 12px;
|
|
19
|
+
padding-right: 12px;
|
|
20
|
+
}
|
|
21
|
+
@media screen and (width >= 1024px) {
|
|
22
|
+
.r-header-body.r-header-body {
|
|
23
|
+
padding-left: 24px;
|
|
24
|
+
padding-right: 24px;
|
|
25
|
+
}
|
|
20
26
|
}
|
|
21
27
|
|
|
22
28
|
.r-header-logo {
|
|
@@ -97,7 +103,13 @@
|
|
|
97
103
|
}
|
|
98
104
|
|
|
99
105
|
.r-footer-container.r-footer-container {
|
|
100
|
-
padding: 16px
|
|
106
|
+
padding: 16px 12px;
|
|
107
|
+
}
|
|
108
|
+
@media screen and (width >= 1024px) {
|
|
109
|
+
.r-footer-container.r-footer-container {
|
|
110
|
+
padding-left: 24px;
|
|
111
|
+
padding-right: 24px;
|
|
112
|
+
}
|
|
101
113
|
}
|
|
102
114
|
|
|
103
115
|
.r-footer-row {
|
|
@@ -384,6 +396,15 @@
|
|
|
384
396
|
grid-template-columns: 200px 640px 238px;
|
|
385
397
|
grid-template-rows: auto 1fr auto;
|
|
386
398
|
}
|
|
399
|
+
}.r-page-container {
|
|
400
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
401
|
+
overflow-wrap: break-word;
|
|
402
|
+
box-sizing: border-box;
|
|
403
|
+
}.keylink-to-content {
|
|
404
|
+
position: absolute !important;
|
|
405
|
+
top: 8px;
|
|
406
|
+
left: 12px;
|
|
407
|
+
z-index: 1001;
|
|
387
408
|
}.r-blog-container {
|
|
388
409
|
min-height: calc(100dvh - var(--r-header-height));
|
|
389
410
|
overflow-wrap: break-word;
|
|
@@ -398,17 +419,60 @@
|
|
|
398
419
|
grid-template-columns: 760px 220px;
|
|
399
420
|
grid-template-rows: auto 1fr auto;
|
|
400
421
|
}
|
|
401
|
-
}.r-page-container {
|
|
402
|
-
min-height: calc(100dvh - var(--r-header-height));
|
|
403
|
-
overflow-wrap: break-word;
|
|
404
|
-
box-sizing: border-box;
|
|
405
|
-
}.keylink-to-content {
|
|
406
|
-
position: absolute !important;
|
|
407
|
-
top: 8px;
|
|
408
|
-
left: 12px;
|
|
409
|
-
z-index: 1001;
|
|
410
422
|
}.r-keylink.keylink-to-navigation:focus {
|
|
411
423
|
margin-top: -40px;
|
|
424
|
+
}.r-article {
|
|
425
|
+
padding: 20px 0 40px;
|
|
426
|
+
grid-area: content;
|
|
427
|
+
}
|
|
428
|
+
@media screen and (width >= 1180px) {
|
|
429
|
+
.r-article {
|
|
430
|
+
padding: 32px 0 40px;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
.r-article > *:first-child {
|
|
434
|
+
margin-top: 0;
|
|
435
|
+
}
|
|
436
|
+
.r-article > *:last-child {
|
|
437
|
+
margin-bottom: 0;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.r-checkbox {
|
|
441
|
+
cursor: pointer;
|
|
442
|
+
width: 20px;
|
|
443
|
+
height: 20px;
|
|
444
|
+
margin: 4px;
|
|
445
|
+
vertical-align: middle;
|
|
446
|
+
box-sizing: border-box;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.r-label {
|
|
450
|
+
cursor: pointer;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.r-task-ol,
|
|
454
|
+
.r-task-ul {
|
|
455
|
+
list-style: none;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.r-task-label {
|
|
459
|
+
display: block;
|
|
460
|
+
width: 100%;
|
|
461
|
+
padding-top: 2px;
|
|
462
|
+
padding-bottom: 2px;
|
|
463
|
+
box-sizing: border-box;
|
|
464
|
+
}
|
|
465
|
+
.r-task-label:hover .r-checkbox {
|
|
466
|
+
filter: brightness(0.8);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.r-task-li.r-task-li {
|
|
470
|
+
margin-block-start: 2px;
|
|
471
|
+
margin-block-end: 2px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.r-label-text {
|
|
475
|
+
vertical-align: middle;
|
|
412
476
|
}.r-sidebar {
|
|
413
477
|
grid-area: sidebar;
|
|
414
478
|
box-sizing: border-box;
|
|
@@ -700,58 +764,6 @@
|
|
|
700
764
|
|
|
701
765
|
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
702
766
|
transform: rotate(90deg);
|
|
703
|
-
}.r-article {
|
|
704
|
-
padding: 20px 0 40px;
|
|
705
|
-
grid-area: content;
|
|
706
|
-
}
|
|
707
|
-
@media screen and (width >= 1180px) {
|
|
708
|
-
.r-article {
|
|
709
|
-
padding: 32px 0 40px;
|
|
710
|
-
}
|
|
711
|
-
}
|
|
712
|
-
.r-article > *:first-child {
|
|
713
|
-
margin-top: 0;
|
|
714
|
-
}
|
|
715
|
-
.r-article > *:last-child {
|
|
716
|
-
margin-bottom: 0;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
.r-checkbox {
|
|
720
|
-
cursor: pointer;
|
|
721
|
-
width: 20px;
|
|
722
|
-
height: 20px;
|
|
723
|
-
margin: 4px;
|
|
724
|
-
vertical-align: middle;
|
|
725
|
-
box-sizing: border-box;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
.r-label {
|
|
729
|
-
cursor: pointer;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.r-task-ol,
|
|
733
|
-
.r-task-ul {
|
|
734
|
-
list-style: none;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.r-task-label {
|
|
738
|
-
display: block;
|
|
739
|
-
width: 100%;
|
|
740
|
-
padding-top: 2px;
|
|
741
|
-
padding-bottom: 2px;
|
|
742
|
-
box-sizing: border-box;
|
|
743
|
-
}
|
|
744
|
-
.r-task-label:hover .r-checkbox {
|
|
745
|
-
filter: brightness(0.8);
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
.r-task-li.r-task-li {
|
|
749
|
-
margin-block-start: 2px;
|
|
750
|
-
margin-block-end: 2px;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.r-label-text {
|
|
754
|
-
vertical-align: middle;
|
|
755
767
|
}.r-header-menu {
|
|
756
768
|
display: flex;
|
|
757
769
|
justify-content: flex-end;
|
|
@@ -1213,6 +1225,78 @@
|
|
|
1213
1225
|
user-select: none;
|
|
1214
1226
|
pointer-events: none;
|
|
1215
1227
|
box-sizing: border-box;
|
|
1228
|
+
}.r-pagination {
|
|
1229
|
+
grid-area: pagination;
|
|
1230
|
+
display: grid;
|
|
1231
|
+
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1232
|
+
gap: 16px;
|
|
1233
|
+
margin-bottom: 40px;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.r-pagination-item {
|
|
1237
|
+
position: relative;
|
|
1238
|
+
padding-top: 8px;
|
|
1239
|
+
padding-bottom: 8px;
|
|
1240
|
+
text-decoration: none;
|
|
1241
|
+
font-size: 14px;
|
|
1242
|
+
color: var(--r-main-800);
|
|
1243
|
+
}
|
|
1244
|
+
.r-pagination-item:hover {
|
|
1245
|
+
color: var(--r-main-950);
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.r-pagination-item._prev {
|
|
1249
|
+
padding-left: 28px;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.r-pagination-item._next {
|
|
1253
|
+
text-align: right;
|
|
1254
|
+
padding-right: 28px;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.r-pagination-text {
|
|
1258
|
+
display: block;
|
|
1259
|
+
line-height: 2;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.r-pagination-title {
|
|
1263
|
+
font-weight: 600;
|
|
1264
|
+
font-size: 16px;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.r-pagination-icon {
|
|
1268
|
+
position: absolute;
|
|
1269
|
+
top: 50%;
|
|
1270
|
+
transform: translateY(-50%);
|
|
1271
|
+
transition: transform 0.2s;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.r-pagination-icon._prev {
|
|
1275
|
+
left: 0;
|
|
1276
|
+
}
|
|
1277
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1278
|
+
transform: translate(-4px, -50%);
|
|
1279
|
+
}
|
|
1280
|
+
@media screen and (width >= 1180px) {
|
|
1281
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1282
|
+
transform: translate(-8px, -50%);
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.r-pagination-icon._next {
|
|
1287
|
+
right: 0;
|
|
1288
|
+
}
|
|
1289
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1290
|
+
transform: translate(4px, -50%);
|
|
1291
|
+
}
|
|
1292
|
+
@media screen and (width >= 1180px) {
|
|
1293
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1294
|
+
transform: translate(8px, -50%);
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.r-pagination-svg {
|
|
1299
|
+
display: block;
|
|
1216
1300
|
}.r-contents {
|
|
1217
1301
|
grid-area: contents;
|
|
1218
1302
|
}
|
|
@@ -1455,78 +1539,6 @@
|
|
|
1455
1539
|
}.r-last-modified {
|
|
1456
1540
|
color: var(--r-main-700);
|
|
1457
1541
|
margin-block-start: 16px;
|
|
1458
|
-
}.r-pagination {
|
|
1459
|
-
grid-area: pagination;
|
|
1460
|
-
display: grid;
|
|
1461
|
-
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1462
|
-
gap: 16px;
|
|
1463
|
-
margin-bottom: 40px;
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
.r-pagination-item {
|
|
1467
|
-
position: relative;
|
|
1468
|
-
padding-top: 8px;
|
|
1469
|
-
padding-bottom: 8px;
|
|
1470
|
-
text-decoration: none;
|
|
1471
|
-
font-size: 14px;
|
|
1472
|
-
color: var(--r-main-800);
|
|
1473
|
-
}
|
|
1474
|
-
.r-pagination-item:hover {
|
|
1475
|
-
color: var(--r-main-950);
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
.r-pagination-item._prev {
|
|
1479
|
-
padding-left: 28px;
|
|
1480
|
-
}
|
|
1481
|
-
|
|
1482
|
-
.r-pagination-item._next {
|
|
1483
|
-
text-align: right;
|
|
1484
|
-
padding-right: 28px;
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
.r-pagination-text {
|
|
1488
|
-
display: block;
|
|
1489
|
-
line-height: 2;
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
.r-pagination-title {
|
|
1493
|
-
font-weight: 600;
|
|
1494
|
-
font-size: 16px;
|
|
1495
|
-
}
|
|
1496
|
-
|
|
1497
|
-
.r-pagination-icon {
|
|
1498
|
-
position: absolute;
|
|
1499
|
-
top: 50%;
|
|
1500
|
-
transform: translateY(-50%);
|
|
1501
|
-
transition: transform 0.2s;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
.r-pagination-icon._prev {
|
|
1505
|
-
left: 0;
|
|
1506
|
-
}
|
|
1507
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1508
|
-
transform: translate(-4px, -50%);
|
|
1509
|
-
}
|
|
1510
|
-
@media screen and (width >= 1180px) {
|
|
1511
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1512
|
-
transform: translate(-8px, -50%);
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
|
-
.r-pagination-icon._next {
|
|
1517
|
-
right: 0;
|
|
1518
|
-
}
|
|
1519
|
-
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1520
|
-
transform: translate(4px, -50%);
|
|
1521
|
-
}
|
|
1522
|
-
@media screen and (width >= 1180px) {
|
|
1523
|
-
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1524
|
-
transform: translate(8px, -50%);
|
|
1525
|
-
}
|
|
1526
|
-
}
|
|
1527
|
-
|
|
1528
|
-
.r-pagination-svg {
|
|
1529
|
-
display: block;
|
|
1530
1542
|
}.r-breadcrumbs {
|
|
1531
1543
|
grid-area: breadcrumbs;
|
|
1532
1544
|
list-style: none;
|
|
@@ -1617,14 +1629,6 @@
|
|
|
1617
1629
|
background-color: currentColor;
|
|
1618
1630
|
border-radius: 0 0 0 4px;
|
|
1619
1631
|
box-sizing: border-box;
|
|
1620
|
-
}.r-kbd-container {
|
|
1621
|
-
display: flex;
|
|
1622
|
-
gap: 4px;
|
|
1623
|
-
font-size: 14px;
|
|
1624
|
-
cursor: pointer;
|
|
1625
|
-
}
|
|
1626
|
-
.r-kbd-container:hover {
|
|
1627
|
-
color: var(--r-main-950);
|
|
1628
1632
|
}.r-kbd-key {
|
|
1629
1633
|
background-color: var(--r-main-200);
|
|
1630
1634
|
font-size: 12px;
|
|
@@ -1633,6 +1637,14 @@
|
|
|
1633
1637
|
min-width: 24px;
|
|
1634
1638
|
text-align: center;
|
|
1635
1639
|
box-sizing: border-box;
|
|
1640
|
+
}.r-kbd-container {
|
|
1641
|
+
display: flex;
|
|
1642
|
+
gap: 4px;
|
|
1643
|
+
font-size: 14px;
|
|
1644
|
+
cursor: pointer;
|
|
1645
|
+
}
|
|
1646
|
+
.r-kbd-container:hover {
|
|
1647
|
+
color: var(--r-main-950);
|
|
1636
1648
|
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1637
1649
|
visibility: visible;
|
|
1638
1650
|
opacity: 1;
|
|
@@ -1704,6 +1716,7 @@
|
|
|
1704
1716
|
.r-code-section-filename {
|
|
1705
1717
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1706
1718
|
}.r-block {
|
|
1719
|
+
position: relative;
|
|
1707
1720
|
width: 100%;
|
|
1708
1721
|
overflow: auto;
|
|
1709
1722
|
margin-block-start: 12px;
|
|
@@ -1711,6 +1724,7 @@
|
|
|
1711
1724
|
scrollbar-width: thin;
|
|
1712
1725
|
scrollbar-color: var(--r-main-200) transparent;
|
|
1713
1726
|
box-sizing: border-box;
|
|
1727
|
+
z-index: 1;
|
|
1714
1728
|
}.r-blockquote {
|
|
1715
1729
|
padding: 4px 12px 4px 20px;
|
|
1716
1730
|
border: 4px solid var(--r-main-100);
|
|
@@ -1795,6 +1809,9 @@
|
|
|
1795
1809
|
scrollbar-width: thin;
|
|
1796
1810
|
scrollbar-color: var(--r-main-200) transparent;
|
|
1797
1811
|
box-sizing: border-box;
|
|
1812
|
+
}.r-img {
|
|
1813
|
+
max-width: 100%;
|
|
1814
|
+
box-sizing: border-box;
|
|
1798
1815
|
}.r-h1 {
|
|
1799
1816
|
font-size: 32px;
|
|
1800
1817
|
line-height: 1.4;
|
|
@@ -1835,9 +1852,6 @@
|
|
|
1835
1852
|
line-height: 1.4;
|
|
1836
1853
|
margin-block-start: 1.8em;
|
|
1837
1854
|
margin-block-end: 1.8em;
|
|
1838
|
-
}.r-img {
|
|
1839
|
-
max-width: 100%;
|
|
1840
|
-
box-sizing: border-box;
|
|
1841
1855
|
}.r-p {
|
|
1842
1856
|
line-height: 1.8;
|
|
1843
1857
|
margin-block-start: 1em;
|
|
@@ -2014,11 +2028,11 @@
|
|
|
2014
2028
|
padding-inline-start: 20px;
|
|
2015
2029
|
margin-block-start: 6px;
|
|
2016
2030
|
margin-block-end: 6px;
|
|
2017
|
-
}.r-
|
|
2031
|
+
}.r-ul {
|
|
2018
2032
|
padding-inline-start: 2rem;
|
|
2019
2033
|
margin-block-start: 1em;
|
|
2020
2034
|
margin-block-end: 1em;
|
|
2021
|
-
}.r-
|
|
2035
|
+
}.r-ol {
|
|
2022
2036
|
padding-inline-start: 2rem;
|
|
2023
2037
|
margin-block-start: 1em;
|
|
2024
2038
|
margin-block-end: 1em;
|
|
@@ -2040,49 +2054,49 @@
|
|
|
2040
2054
|
z-index: -1;
|
|
2041
2055
|
border-radius: 8px;
|
|
2042
2056
|
border: 1px solid var(--r-main-200);
|
|
2043
|
-
}.r-
|
|
2057
|
+
}.r-td {
|
|
2044
2058
|
padding: 8px 12px;
|
|
2045
2059
|
border-collapse: collapse;
|
|
2046
|
-
background-color: var(--r-main-100);
|
|
2047
|
-
border-bottom: 1px solid var(--r-main-200);
|
|
2048
2060
|
}
|
|
2049
|
-
.r-
|
|
2050
|
-
border-top-left-radius: 6px;
|
|
2051
|
-
}
|
|
2052
|
-
.r-thead .r-th:last-child {
|
|
2053
|
-
border-top-right-radius: 6px;
|
|
2054
|
-
}
|
|
2055
|
-
.r-th:not(:last-child) {
|
|
2061
|
+
.r-td:not(:last-child) {
|
|
2056
2062
|
border-right: 1px solid var(--r-main-200);
|
|
2057
2063
|
}
|
|
2058
2064
|
|
|
2059
|
-
.r-
|
|
2065
|
+
.r-td_left {
|
|
2060
2066
|
text-align: left;
|
|
2061
2067
|
}
|
|
2062
2068
|
|
|
2063
|
-
.r-
|
|
2069
|
+
.r-td_center {
|
|
2064
2070
|
text-align: center;
|
|
2065
2071
|
}
|
|
2066
2072
|
|
|
2067
|
-
.r-
|
|
2073
|
+
.r-td_right {
|
|
2068
2074
|
text-align: right;
|
|
2069
|
-
}.r-
|
|
2075
|
+
}.r-th {
|
|
2070
2076
|
padding: 8px 12px;
|
|
2071
2077
|
border-collapse: collapse;
|
|
2078
|
+
background-color: var(--r-main-100);
|
|
2079
|
+
border-bottom: 1px solid var(--r-main-200);
|
|
2072
2080
|
}
|
|
2073
|
-
.r-
|
|
2081
|
+
.r-thead .r-th:first-child {
|
|
2082
|
+
border-top-left-radius: 6px;
|
|
2083
|
+
}
|
|
2084
|
+
.r-thead .r-th:last-child {
|
|
2085
|
+
border-top-right-radius: 6px;
|
|
2086
|
+
}
|
|
2087
|
+
.r-th:not(:last-child) {
|
|
2074
2088
|
border-right: 1px solid var(--r-main-200);
|
|
2075
2089
|
}
|
|
2076
2090
|
|
|
2077
|
-
.r-
|
|
2091
|
+
.r-th_left {
|
|
2078
2092
|
text-align: left;
|
|
2079
2093
|
}
|
|
2080
2094
|
|
|
2081
|
-
.r-
|
|
2095
|
+
.r-th_center {
|
|
2082
2096
|
text-align: center;
|
|
2083
2097
|
}
|
|
2084
2098
|
|
|
2085
|
-
.r-
|
|
2099
|
+
.r-th_right {
|
|
2086
2100
|
text-align: right;
|
|
2087
2101
|
}.r-tr {
|
|
2088
2102
|
border-collapse: collapse;
|
package/package.json
CHANGED