robindoc 3.7.1 → 3.7.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/lib/styles.css +309 -295
- 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 {
|
|
@@ -409,6 +421,58 @@
|
|
|
409
421
|
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;
|
|
@@ -840,85 +852,6 @@
|
|
|
840
852
|
.r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
|
|
841
853
|
transform: translateY(0) rotate(-45deg);
|
|
842
854
|
margin-top: 0;
|
|
843
|
-
}.r-dropdown {
|
|
844
|
-
position: relative;
|
|
845
|
-
color: var(--r-main-600);
|
|
846
|
-
transition: color 0.2s 0.1s;
|
|
847
|
-
}
|
|
848
|
-
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
849
|
-
color: var(--r-main-950);
|
|
850
|
-
}
|
|
851
|
-
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
852
|
-
visibility: visible;
|
|
853
|
-
pointer-events: all;
|
|
854
|
-
transform: translateY(20px);
|
|
855
|
-
opacity: 1;
|
|
856
|
-
}
|
|
857
|
-
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
858
|
-
transform: rotate(180deg);
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.r-dropdown-summary {
|
|
862
|
-
display: flex;
|
|
863
|
-
justify-content: space-between;
|
|
864
|
-
align-items: center;
|
|
865
|
-
width: 100%;
|
|
866
|
-
position: relative;
|
|
867
|
-
color: inherit;
|
|
868
|
-
cursor: pointer;
|
|
869
|
-
padding: 10px 4px;
|
|
870
|
-
font-size: 16px;
|
|
871
|
-
border: 0;
|
|
872
|
-
background: none;
|
|
873
|
-
z-index: 1;
|
|
874
|
-
box-sizing: border-box;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
.r-dropdown-chevron {
|
|
878
|
-
display: block;
|
|
879
|
-
margin-left: 6px;
|
|
880
|
-
transition: transform 0.3s 0.1s;
|
|
881
|
-
box-sizing: border-box;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.r-dropdown-drop {
|
|
885
|
-
list-style: none;
|
|
886
|
-
position: absolute;
|
|
887
|
-
top: 16px;
|
|
888
|
-
left: -12px;
|
|
889
|
-
visibility: hidden;
|
|
890
|
-
pointer-events: none;
|
|
891
|
-
opacity: 0;
|
|
892
|
-
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
893
|
-
background-color: var(--r-main-50);
|
|
894
|
-
border: 1px solid var(--r-main-100);
|
|
895
|
-
border-radius: 8px;
|
|
896
|
-
margin: 0;
|
|
897
|
-
padding: 2px 6px;
|
|
898
|
-
min-width: 120px;
|
|
899
|
-
max-width: 180px;
|
|
900
|
-
box-sizing: border-box;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.r-dropdown-link {
|
|
904
|
-
display: block;
|
|
905
|
-
width: 100%;
|
|
906
|
-
text-decoration: none;
|
|
907
|
-
color: var(--r-main-700);
|
|
908
|
-
padding: 4px 8px;
|
|
909
|
-
margin-top: 4px;
|
|
910
|
-
margin-bottom: 4px;
|
|
911
|
-
border-radius: 4px;
|
|
912
|
-
transition: background-color 0.2s;
|
|
913
|
-
box-sizing: border-box;
|
|
914
|
-
}
|
|
915
|
-
.r-dropdown-link:hover {
|
|
916
|
-
color: var(--r-main-900);
|
|
917
|
-
background-color: var(--r-main-100);
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
.r-dropdown-link._active {
|
|
921
|
-
color: var(--r-primary-700);
|
|
922
855
|
}.r-search-btn {
|
|
923
856
|
position: relative;
|
|
924
857
|
border-radius: 6px;
|
|
@@ -1102,49 +1035,128 @@
|
|
|
1102
1035
|
font-size: 14px;
|
|
1103
1036
|
color: var(--r-main-600);
|
|
1104
1037
|
margin: 12px 0 0;
|
|
1105
|
-
}.r-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1038
|
+
}.r-dropdown {
|
|
1039
|
+
position: relative;
|
|
1040
|
+
color: var(--r-main-600);
|
|
1041
|
+
transition: color 0.2s 0.1s;
|
|
1109
1042
|
}
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
flex: none;
|
|
1113
|
-
justify-content: unset;
|
|
1114
|
-
}
|
|
1043
|
+
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
1044
|
+
color: var(--r-main-950);
|
|
1115
1045
|
}
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1046
|
+
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
1047
|
+
visibility: visible;
|
|
1048
|
+
pointer-events: all;
|
|
1049
|
+
transform: translateY(20px);
|
|
1050
|
+
opacity: 1;
|
|
1120
1051
|
}
|
|
1121
|
-
.r-
|
|
1122
|
-
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
padding-left: 12px;
|
|
1127
|
-
margin-right: auto;
|
|
1128
|
-
margin-left: auto;
|
|
1129
|
-
box-sizing: border-box;
|
|
1130
|
-
}.r-theme-switcher {
|
|
1131
|
-
position: relative;
|
|
1052
|
+
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
1053
|
+
transform: rotate(180deg);
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.r-dropdown-summary {
|
|
1132
1057
|
display: flex;
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1058
|
+
justify-content: space-between;
|
|
1059
|
+
align-items: center;
|
|
1060
|
+
width: 100%;
|
|
1061
|
+
position: relative;
|
|
1062
|
+
color: inherit;
|
|
1063
|
+
cursor: pointer;
|
|
1064
|
+
padding: 10px 4px;
|
|
1065
|
+
font-size: 16px;
|
|
1066
|
+
border: 0;
|
|
1067
|
+
background: none;
|
|
1068
|
+
z-index: 1;
|
|
1140
1069
|
box-sizing: border-box;
|
|
1141
1070
|
}
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
position: absolute;
|
|
1071
|
+
|
|
1072
|
+
.r-dropdown-chevron {
|
|
1145
1073
|
display: block;
|
|
1146
|
-
|
|
1147
|
-
|
|
1074
|
+
margin-left: 6px;
|
|
1075
|
+
transition: transform 0.3s 0.1s;
|
|
1076
|
+
box-sizing: border-box;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.r-dropdown-drop {
|
|
1080
|
+
list-style: none;
|
|
1081
|
+
position: absolute;
|
|
1082
|
+
top: 16px;
|
|
1083
|
+
left: -12px;
|
|
1084
|
+
visibility: hidden;
|
|
1085
|
+
pointer-events: none;
|
|
1086
|
+
opacity: 0;
|
|
1087
|
+
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
1088
|
+
background-color: var(--r-main-50);
|
|
1089
|
+
border: 1px solid var(--r-main-100);
|
|
1090
|
+
border-radius: 8px;
|
|
1091
|
+
margin: 0;
|
|
1092
|
+
padding: 2px 6px;
|
|
1093
|
+
min-width: 120px;
|
|
1094
|
+
max-width: 180px;
|
|
1095
|
+
box-sizing: border-box;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.r-dropdown-link {
|
|
1099
|
+
display: block;
|
|
1100
|
+
width: 100%;
|
|
1101
|
+
text-decoration: none;
|
|
1102
|
+
color: var(--r-main-700);
|
|
1103
|
+
padding: 4px 8px;
|
|
1104
|
+
margin-top: 4px;
|
|
1105
|
+
margin-bottom: 4px;
|
|
1106
|
+
border-radius: 4px;
|
|
1107
|
+
transition: background-color 0.2s;
|
|
1108
|
+
box-sizing: border-box;
|
|
1109
|
+
}
|
|
1110
|
+
.r-dropdown-link:hover {
|
|
1111
|
+
color: var(--r-main-900);
|
|
1112
|
+
background-color: var(--r-main-100);
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.r-dropdown-link._active {
|
|
1116
|
+
color: var(--r-primary-700);
|
|
1117
|
+
}.r-header-social {
|
|
1118
|
+
display: flex;
|
|
1119
|
+
flex: 1;
|
|
1120
|
+
justify-content: flex-end;
|
|
1121
|
+
}
|
|
1122
|
+
@media screen and (width >= 1024px) {
|
|
1123
|
+
.r-header-social {
|
|
1124
|
+
flex: none;
|
|
1125
|
+
justify-content: unset;
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.r-header-social-git {
|
|
1130
|
+
color: var(--r-main-700);
|
|
1131
|
+
transition: color 0.2s;
|
|
1132
|
+
}
|
|
1133
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1134
|
+
color: var(--r-main-950);
|
|
1135
|
+
}.r-container {
|
|
1136
|
+
max-width: 1180px;
|
|
1137
|
+
padding-right: 12px;
|
|
1138
|
+
padding-left: 12px;
|
|
1139
|
+
margin-right: auto;
|
|
1140
|
+
margin-left: auto;
|
|
1141
|
+
box-sizing: border-box;
|
|
1142
|
+
}.r-theme-switcher {
|
|
1143
|
+
position: relative;
|
|
1144
|
+
display: flex;
|
|
1145
|
+
gap: 4px;
|
|
1146
|
+
width: 109px;
|
|
1147
|
+
height: 37px;
|
|
1148
|
+
padding: 2px;
|
|
1149
|
+
background-color: var(--r-main-100);
|
|
1150
|
+
border: 1px solid var(--r-main-200);
|
|
1151
|
+
border-radius: 100px;
|
|
1152
|
+
box-sizing: border-box;
|
|
1153
|
+
}
|
|
1154
|
+
.r-theme-switcher::before {
|
|
1155
|
+
content: "";
|
|
1156
|
+
position: absolute;
|
|
1157
|
+
display: block;
|
|
1158
|
+
height: 32px;
|
|
1159
|
+
width: 32px;
|
|
1148
1160
|
top: 2px;
|
|
1149
1161
|
left: 2px;
|
|
1150
1162
|
background-color: var(--r-main-50);
|
|
@@ -1452,6 +1464,47 @@
|
|
|
1452
1464
|
}
|
|
1453
1465
|
.r-contents-git:hover {
|
|
1454
1466
|
color: var(--r-main-900);
|
|
1467
|
+
}.r-breadcrumbs {
|
|
1468
|
+
grid-area: breadcrumbs;
|
|
1469
|
+
list-style: none;
|
|
1470
|
+
margin: 0;
|
|
1471
|
+
padding: 20px 0 0;
|
|
1472
|
+
line-height: 2;
|
|
1473
|
+
}
|
|
1474
|
+
@media screen and (width >= 768px) {
|
|
1475
|
+
.r-breadcrumbs {
|
|
1476
|
+
padding: 32px 0 0;
|
|
1477
|
+
}
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.r-breadcrumb {
|
|
1481
|
+
display: inline;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.r-breadcrumb._previous::after {
|
|
1485
|
+
content: "/";
|
|
1486
|
+
font-weight: 600;
|
|
1487
|
+
margin-inline: 8px;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
.r-breadcrumb-link {
|
|
1491
|
+
color: var(--r-main-700);
|
|
1492
|
+
text-decoration: none;
|
|
1493
|
+
}
|
|
1494
|
+
.r-breadcrumb-link:hover {
|
|
1495
|
+
color: var(--r-primary-800);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.r-breadcrumb-link,
|
|
1499
|
+
.r-breadcrumb-title {
|
|
1500
|
+
display: inline;
|
|
1501
|
+
padding: 6px 0;
|
|
1502
|
+
margin: 0;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.r-breadcrumb-title {
|
|
1506
|
+
color: var(--r-main-950);
|
|
1507
|
+
font-weight: 600;
|
|
1455
1508
|
}.r-last-modified {
|
|
1456
1509
|
color: var(--r-main-700);
|
|
1457
1510
|
margin-block-start: 16px;
|
|
@@ -1527,47 +1580,6 @@
|
|
|
1527
1580
|
|
|
1528
1581
|
.r-pagination-svg {
|
|
1529
1582
|
display: block;
|
|
1530
|
-
}.r-breadcrumbs {
|
|
1531
|
-
grid-area: breadcrumbs;
|
|
1532
|
-
list-style: none;
|
|
1533
|
-
margin: 0;
|
|
1534
|
-
padding: 20px 0 0;
|
|
1535
|
-
line-height: 2;
|
|
1536
|
-
}
|
|
1537
|
-
@media screen and (width >= 768px) {
|
|
1538
|
-
.r-breadcrumbs {
|
|
1539
|
-
padding: 32px 0 0;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
|
-
.r-breadcrumb {
|
|
1544
|
-
display: inline;
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
.r-breadcrumb._previous::after {
|
|
1548
|
-
content: "/";
|
|
1549
|
-
font-weight: 600;
|
|
1550
|
-
margin-inline: 8px;
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
.r-breadcrumb-link {
|
|
1554
|
-
color: var(--r-main-700);
|
|
1555
|
-
text-decoration: none;
|
|
1556
|
-
}
|
|
1557
|
-
.r-breadcrumb-link:hover {
|
|
1558
|
-
color: var(--r-primary-800);
|
|
1559
|
-
}
|
|
1560
|
-
|
|
1561
|
-
.r-breadcrumb-link,
|
|
1562
|
-
.r-breadcrumb-title {
|
|
1563
|
-
display: inline;
|
|
1564
|
-
padding: 6px 0;
|
|
1565
|
-
margin: 0;
|
|
1566
|
-
}
|
|
1567
|
-
|
|
1568
|
-
.r-breadcrumb-title {
|
|
1569
|
-
color: var(--r-main-950);
|
|
1570
|
-
font-weight: 600;
|
|
1571
1583
|
}.r-backdrop {
|
|
1572
1584
|
position: fixed;
|
|
1573
1585
|
top: 0;
|
|
@@ -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);
|
|
@@ -1768,6 +1782,19 @@
|
|
|
1768
1782
|
}
|
|
1769
1783
|
.r-blockquote-caution .r-blockquote-title {
|
|
1770
1784
|
color: var(--r-caution);
|
|
1785
|
+
}.r-code-block {
|
|
1786
|
+
font-family: var(--monospace-font, monospace, monospace);
|
|
1787
|
+
font-size: 16px;
|
|
1788
|
+
line-height: 1.33;
|
|
1789
|
+
border-radius: 6px;
|
|
1790
|
+
padding: 16px 20px;
|
|
1791
|
+
margin: 0;
|
|
1792
|
+
color: var(--r-primary-800);
|
|
1793
|
+
background-color: var(--r-main-50);
|
|
1794
|
+
overflow-x: auto;
|
|
1795
|
+
scrollbar-width: thin;
|
|
1796
|
+
scrollbar-color: var(--r-main-200) transparent;
|
|
1797
|
+
box-sizing: border-box;
|
|
1771
1798
|
}.r-code-span {
|
|
1772
1799
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1773
1800
|
background-color: var(--r-main-100);
|
|
@@ -1782,18 +1809,8 @@
|
|
|
1782
1809
|
|
|
1783
1810
|
.r-code-span + .r-content-link-external {
|
|
1784
1811
|
margin-left: -12px;
|
|
1785
|
-
}.r-
|
|
1786
|
-
|
|
1787
|
-
font-size: 16px;
|
|
1788
|
-
line-height: 1.33;
|
|
1789
|
-
border-radius: 6px;
|
|
1790
|
-
padding: 16px 20px;
|
|
1791
|
-
margin: 0;
|
|
1792
|
-
color: var(--r-primary-800);
|
|
1793
|
-
background-color: var(--r-main-50);
|
|
1794
|
-
overflow-x: auto;
|
|
1795
|
-
scrollbar-width: thin;
|
|
1796
|
-
scrollbar-color: var(--r-main-200) transparent;
|
|
1812
|
+
}.r-img {
|
|
1813
|
+
max-width: 100%;
|
|
1797
1814
|
box-sizing: border-box;
|
|
1798
1815
|
}.r-h1 {
|
|
1799
1816
|
font-size: 32px;
|
|
@@ -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;
|
|
@@ -1883,6 +1897,55 @@
|
|
|
1883
1897
|
|
|
1884
1898
|
.r-tab-header-code {
|
|
1885
1899
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1900
|
+
}.r-content-link {
|
|
1901
|
+
text-decoration: none;
|
|
1902
|
+
color: inherit;
|
|
1903
|
+
text-decoration: underline;
|
|
1904
|
+
text-decoration-color: var(--r-primary-500);
|
|
1905
|
+
text-underline-offset: 3px;
|
|
1906
|
+
transition: text-decoration-offset 0.2s ease;
|
|
1907
|
+
}
|
|
1908
|
+
.r-content-link:hover {
|
|
1909
|
+
color: var(--r-main-700);
|
|
1910
|
+
text-decoration-color: var(--r-primary-400);
|
|
1911
|
+
text-underline-offset: 2px;
|
|
1912
|
+
text-decoration-thickness: 2px;
|
|
1913
|
+
}
|
|
1914
|
+
.r-content-link:active {
|
|
1915
|
+
color: var(--r-primary-600);
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
.r-content-link-external {
|
|
1919
|
+
position: relative;
|
|
1920
|
+
vertical-align: text-top;
|
|
1921
|
+
display: inline-block;
|
|
1922
|
+
margin-left: -4px;
|
|
1923
|
+
margin-right: 2px;
|
|
1924
|
+
width: 6px;
|
|
1925
|
+
height: 6px;
|
|
1926
|
+
box-sizing: border-box;
|
|
1927
|
+
}
|
|
1928
|
+
.r-content-link-external::after {
|
|
1929
|
+
content: "";
|
|
1930
|
+
position: absolute;
|
|
1931
|
+
top: 0;
|
|
1932
|
+
right: 0;
|
|
1933
|
+
width: 100%;
|
|
1934
|
+
height: 100%;
|
|
1935
|
+
border-top: 1px solid currentColor;
|
|
1936
|
+
border-right: 1px solid currentColor;
|
|
1937
|
+
box-sizing: border-box;
|
|
1938
|
+
}
|
|
1939
|
+
.r-content-link-external::before {
|
|
1940
|
+
content: "";
|
|
1941
|
+
position: absolute;
|
|
1942
|
+
top: 0;
|
|
1943
|
+
right: 0;
|
|
1944
|
+
width: 3px;
|
|
1945
|
+
height: 3px;
|
|
1946
|
+
background-color: currentColor;
|
|
1947
|
+
border-radius: 0 0 0 4px;
|
|
1948
|
+
box-sizing: border-box;
|
|
1886
1949
|
}.r-copy-button {
|
|
1887
1950
|
position: relative;
|
|
1888
1951
|
padding: 6px;
|
|
@@ -1954,55 +2017,6 @@
|
|
|
1954
2017
|
.r-copy-text:active,
|
|
1955
2018
|
.r-copy-text._active {
|
|
1956
2019
|
color: var(--r-success);
|
|
1957
|
-
}.r-content-link {
|
|
1958
|
-
text-decoration: none;
|
|
1959
|
-
color: inherit;
|
|
1960
|
-
text-decoration: underline;
|
|
1961
|
-
text-decoration-color: var(--r-primary-500);
|
|
1962
|
-
text-underline-offset: 3px;
|
|
1963
|
-
transition: text-decoration-offset 0.2s ease;
|
|
1964
|
-
}
|
|
1965
|
-
.r-content-link:hover {
|
|
1966
|
-
color: var(--r-main-700);
|
|
1967
|
-
text-decoration-color: var(--r-primary-400);
|
|
1968
|
-
text-underline-offset: 2px;
|
|
1969
|
-
text-decoration-thickness: 2px;
|
|
1970
|
-
}
|
|
1971
|
-
.r-content-link:active {
|
|
1972
|
-
color: var(--r-primary-600);
|
|
1973
|
-
}
|
|
1974
|
-
|
|
1975
|
-
.r-content-link-external {
|
|
1976
|
-
position: relative;
|
|
1977
|
-
vertical-align: text-top;
|
|
1978
|
-
display: inline-block;
|
|
1979
|
-
margin-left: -4px;
|
|
1980
|
-
margin-right: 2px;
|
|
1981
|
-
width: 6px;
|
|
1982
|
-
height: 6px;
|
|
1983
|
-
box-sizing: border-box;
|
|
1984
|
-
}
|
|
1985
|
-
.r-content-link-external::after {
|
|
1986
|
-
content: "";
|
|
1987
|
-
position: absolute;
|
|
1988
|
-
top: 0;
|
|
1989
|
-
right: 0;
|
|
1990
|
-
width: 100%;
|
|
1991
|
-
height: 100%;
|
|
1992
|
-
border-top: 1px solid currentColor;
|
|
1993
|
-
border-right: 1px solid currentColor;
|
|
1994
|
-
box-sizing: border-box;
|
|
1995
|
-
}
|
|
1996
|
-
.r-content-link-external::before {
|
|
1997
|
-
content: "";
|
|
1998
|
-
position: absolute;
|
|
1999
|
-
top: 0;
|
|
2000
|
-
right: 0;
|
|
2001
|
-
width: 3px;
|
|
2002
|
-
height: 3px;
|
|
2003
|
-
background-color: currentColor;
|
|
2004
|
-
border-radius: 0 0 0 4px;
|
|
2005
|
-
box-sizing: border-box;
|
|
2006
2020
|
}.r-li {
|
|
2007
2021
|
line-height: 1.8;
|
|
2008
2022
|
margin-block-start: 6px;
|
|
@@ -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