robindoc 0.0.0-experimental-b8f037b → 0.0.0-experimental-7477c3a
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 +304 -304
- package/package.json +8 -8
package/lib/styles.css
CHANGED
|
@@ -176,6 +176,20 @@
|
|
|
176
176
|
grid-template-columns: 200px 640px 238px;
|
|
177
177
|
grid-template-rows: auto 1fr auto;
|
|
178
178
|
}
|
|
179
|
+
}.r-blog-container {
|
|
180
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
181
|
+
overflow-wrap: break-word;
|
|
182
|
+
box-sizing: border-box;
|
|
183
|
+
}
|
|
184
|
+
@media screen and (width >= 1180px) {
|
|
185
|
+
.r-blog-container {
|
|
186
|
+
display: grid;
|
|
187
|
+
justify-content: space-between;
|
|
188
|
+
column-gap: 40px;
|
|
189
|
+
grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
|
|
190
|
+
grid-template-columns: 760px 220px;
|
|
191
|
+
grid-template-rows: auto 1fr auto;
|
|
192
|
+
}
|
|
179
193
|
}.r-root {
|
|
180
194
|
--r-header-height: 60px;
|
|
181
195
|
position: relative;
|
|
@@ -409,20 +423,6 @@
|
|
|
409
423
|
--r-cl-60: #86181d;
|
|
410
424
|
--r-cl-61: #144620;
|
|
411
425
|
--r-cl-62: #c24e00;
|
|
412
|
-
}.r-blog-container {
|
|
413
|
-
min-height: calc(100dvh - var(--r-header-height));
|
|
414
|
-
overflow-wrap: break-word;
|
|
415
|
-
box-sizing: border-box;
|
|
416
|
-
}
|
|
417
|
-
@media screen and (width >= 1180px) {
|
|
418
|
-
.r-blog-container {
|
|
419
|
-
display: grid;
|
|
420
|
-
justify-content: space-between;
|
|
421
|
-
column-gap: 40px;
|
|
422
|
-
grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
|
|
423
|
-
grid-template-columns: 760px 220px;
|
|
424
|
-
grid-template-rows: auto 1fr auto;
|
|
425
|
-
}
|
|
426
426
|
}.r-page-container {
|
|
427
427
|
min-height: calc(100dvh - var(--r-header-height));
|
|
428
428
|
overflow-wrap: break-word;
|
|
@@ -432,6 +432,8 @@
|
|
|
432
432
|
top: 8px;
|
|
433
433
|
left: 12px;
|
|
434
434
|
z-index: 1001;
|
|
435
|
+
}.r-keylink.keylink-to-navigation:focus {
|
|
436
|
+
margin-top: -40px;
|
|
435
437
|
}.r-code-span {
|
|
436
438
|
font-family: var(--monospace-font, monospace, monospace);
|
|
437
439
|
background-color: var(--r-main-100);
|
|
@@ -446,8 +448,6 @@
|
|
|
446
448
|
|
|
447
449
|
.r-code-span + .r-content-link-external {
|
|
448
450
|
margin-left: -12px;
|
|
449
|
-
}.r-keylink.keylink-to-navigation:focus {
|
|
450
|
-
margin-top: -40px;
|
|
451
451
|
}.r-header-menu {
|
|
452
452
|
display: flex;
|
|
453
453
|
justify-content: flex-end;
|
|
@@ -536,6 +536,110 @@
|
|
|
536
536
|
.r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
|
|
537
537
|
transform: translateY(0) rotate(-45deg);
|
|
538
538
|
margin-top: 0;
|
|
539
|
+
}.r-dropdown {
|
|
540
|
+
position: relative;
|
|
541
|
+
color: var(--r-main-600);
|
|
542
|
+
transition: color 0.2s 0.1s;
|
|
543
|
+
}
|
|
544
|
+
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
545
|
+
color: var(--r-main-950);
|
|
546
|
+
}
|
|
547
|
+
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
548
|
+
visibility: visible;
|
|
549
|
+
pointer-events: all;
|
|
550
|
+
transform: translateY(20px);
|
|
551
|
+
opacity: 1;
|
|
552
|
+
}
|
|
553
|
+
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
554
|
+
transform: rotate(180deg);
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.r-dropdown-summary {
|
|
558
|
+
display: flex;
|
|
559
|
+
justify-content: space-between;
|
|
560
|
+
align-items: center;
|
|
561
|
+
width: 100%;
|
|
562
|
+
position: relative;
|
|
563
|
+
color: inherit;
|
|
564
|
+
cursor: pointer;
|
|
565
|
+
padding: 10px 4px;
|
|
566
|
+
font-size: 16px;
|
|
567
|
+
border: 0;
|
|
568
|
+
background: none;
|
|
569
|
+
z-index: 1;
|
|
570
|
+
box-sizing: border-box;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.r-dropdown-chevron {
|
|
574
|
+
display: block;
|
|
575
|
+
margin-left: 6px;
|
|
576
|
+
transition: transform 0.3s 0.1s;
|
|
577
|
+
box-sizing: border-box;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.r-dropdown-drop {
|
|
581
|
+
list-style: none;
|
|
582
|
+
position: absolute;
|
|
583
|
+
top: 16px;
|
|
584
|
+
left: -12px;
|
|
585
|
+
visibility: hidden;
|
|
586
|
+
pointer-events: none;
|
|
587
|
+
opacity: 0;
|
|
588
|
+
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
589
|
+
background-color: var(--r-main-50);
|
|
590
|
+
border: 1px solid var(--r-main-100);
|
|
591
|
+
border-radius: 8px;
|
|
592
|
+
margin: 0;
|
|
593
|
+
padding: 2px 6px;
|
|
594
|
+
min-width: 120px;
|
|
595
|
+
max-width: 180px;
|
|
596
|
+
box-sizing: border-box;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.r-dropdown-link {
|
|
600
|
+
display: block;
|
|
601
|
+
width: 100%;
|
|
602
|
+
text-decoration: none;
|
|
603
|
+
color: var(--r-main-700);
|
|
604
|
+
padding: 4px 8px;
|
|
605
|
+
margin-top: 4px;
|
|
606
|
+
margin-bottom: 4px;
|
|
607
|
+
border-radius: 4px;
|
|
608
|
+
transition: background-color 0.2s;
|
|
609
|
+
box-sizing: border-box;
|
|
610
|
+
}
|
|
611
|
+
.r-dropdown-link:hover {
|
|
612
|
+
color: var(--r-main-900);
|
|
613
|
+
background-color: var(--r-main-100);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.r-dropdown-link._active {
|
|
617
|
+
color: var(--r-primary-700);
|
|
618
|
+
}.r-header-social {
|
|
619
|
+
display: flex;
|
|
620
|
+
flex: 1;
|
|
621
|
+
justify-content: flex-end;
|
|
622
|
+
}
|
|
623
|
+
@media screen and (width >= 1024px) {
|
|
624
|
+
.r-header-social {
|
|
625
|
+
flex: none;
|
|
626
|
+
justify-content: unset;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.r-header-social-git {
|
|
631
|
+
color: var(--r-main-700);
|
|
632
|
+
transition: color 0.2s;
|
|
633
|
+
}
|
|
634
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
635
|
+
color: var(--r-main-950);
|
|
636
|
+
}.r-container {
|
|
637
|
+
max-width: 1180px;
|
|
638
|
+
padding-right: 12px;
|
|
639
|
+
padding-left: 12px;
|
|
640
|
+
margin-right: auto;
|
|
641
|
+
margin-left: auto;
|
|
642
|
+
box-sizing: border-box;
|
|
539
643
|
}.r-search-btn {
|
|
540
644
|
position: relative;
|
|
541
645
|
border-radius: 6px;
|
|
@@ -719,110 +823,72 @@
|
|
|
719
823
|
font-size: 14px;
|
|
720
824
|
color: var(--r-main-600);
|
|
721
825
|
margin: 12px 0 0;
|
|
722
|
-
}.r-
|
|
826
|
+
}.r-theme-switcher {
|
|
723
827
|
position: relative;
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
transform: translateY(20px);
|
|
734
|
-
opacity: 1;
|
|
828
|
+
display: flex;
|
|
829
|
+
gap: 4px;
|
|
830
|
+
width: 109px;
|
|
831
|
+
height: 37px;
|
|
832
|
+
padding: 2px;
|
|
833
|
+
background-color: var(--r-main-100);
|
|
834
|
+
border: 1px solid var(--r-main-200);
|
|
835
|
+
border-radius: 100px;
|
|
836
|
+
box-sizing: border-box;
|
|
735
837
|
}
|
|
736
|
-
.r-
|
|
737
|
-
|
|
838
|
+
.r-theme-switcher::before {
|
|
839
|
+
content: "";
|
|
840
|
+
position: absolute;
|
|
841
|
+
display: block;
|
|
842
|
+
height: 32px;
|
|
843
|
+
width: 32px;
|
|
844
|
+
top: 2px;
|
|
845
|
+
left: 2px;
|
|
846
|
+
background-color: var(--r-main-50);
|
|
847
|
+
border: 1px solid var(--r-main-200);
|
|
848
|
+
border-radius: 100px;
|
|
849
|
+
transition: left 0.2s;
|
|
850
|
+
box-sizing: border-box;
|
|
738
851
|
}
|
|
739
852
|
|
|
740
|
-
.r-
|
|
741
|
-
|
|
742
|
-
justify-content: space-between;
|
|
743
|
-
align-items: center;
|
|
744
|
-
width: 100%;
|
|
745
|
-
position: relative;
|
|
746
|
-
color: inherit;
|
|
747
|
-
cursor: pointer;
|
|
748
|
-
padding: 10px 4px;
|
|
749
|
-
font-size: 16px;
|
|
750
|
-
border: 0;
|
|
853
|
+
.r-theme-switcher-btn {
|
|
854
|
+
padding: 8px;
|
|
751
855
|
background: none;
|
|
856
|
+
border: 0;
|
|
857
|
+
border-radius: 100px;
|
|
858
|
+
cursor: pointer;
|
|
859
|
+
color: var(--r-main-700);
|
|
860
|
+
fill: transparent;
|
|
752
861
|
z-index: 1;
|
|
753
|
-
|
|
862
|
+
transition: color 0.2s 0.1s, fill 0.2s;
|
|
863
|
+
}
|
|
864
|
+
.r-theme-switcher-btn:hover {
|
|
865
|
+
color: var(--r-main-950);
|
|
866
|
+
fill: var(--r-main-600);
|
|
754
867
|
}
|
|
755
868
|
|
|
756
|
-
.r-
|
|
757
|
-
|
|
758
|
-
margin-left: 6px;
|
|
759
|
-
transition: transform 0.3s 0.1s;
|
|
760
|
-
box-sizing: border-box;
|
|
869
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
870
|
+
left: 2px;
|
|
761
871
|
}
|
|
762
872
|
|
|
763
|
-
.r-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
visibility: hidden;
|
|
873
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark,
|
|
874
|
+
.r-theme-system .r-theme-switcher-btn__system,
|
|
875
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
876
|
+
color: var(--r-main-950);
|
|
877
|
+
fill: var(--r-main-950);
|
|
769
878
|
pointer-events: none;
|
|
770
|
-
opacity: 0;
|
|
771
|
-
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
772
|
-
background-color: var(--r-main-50);
|
|
773
|
-
border: 1px solid var(--r-main-100);
|
|
774
|
-
border-radius: 8px;
|
|
775
|
-
margin: 0;
|
|
776
|
-
padding: 2px 6px;
|
|
777
|
-
min-width: 120px;
|
|
778
|
-
max-width: 180px;
|
|
779
|
-
box-sizing: border-box;
|
|
780
879
|
}
|
|
781
880
|
|
|
782
|
-
.r-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
text-decoration: none;
|
|
786
|
-
color: var(--r-main-700);
|
|
787
|
-
padding: 4px 8px;
|
|
788
|
-
margin-top: 4px;
|
|
789
|
-
margin-bottom: 4px;
|
|
790
|
-
border-radius: 4px;
|
|
791
|
-
transition: background-color 0.2s;
|
|
792
|
-
box-sizing: border-box;
|
|
881
|
+
.r-theme-switcher::before,
|
|
882
|
+
.r-theme-system .r-theme-switcher::before {
|
|
883
|
+
left: 38px;
|
|
793
884
|
}
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
885
|
+
|
|
886
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
887
|
+
left: 74px;
|
|
797
888
|
}
|
|
798
889
|
|
|
799
|
-
.r-
|
|
800
|
-
|
|
801
|
-
}.r-container {
|
|
802
|
-
max-width: 1180px;
|
|
803
|
-
padding-right: 12px;
|
|
804
|
-
padding-left: 12px;
|
|
805
|
-
margin-right: auto;
|
|
806
|
-
margin-left: auto;
|
|
807
|
-
box-sizing: border-box;
|
|
808
|
-
}.r-header-social {
|
|
809
|
-
display: flex;
|
|
810
|
-
flex: 1;
|
|
811
|
-
justify-content: flex-end;
|
|
812
|
-
}
|
|
813
|
-
@media screen and (width >= 1024px) {
|
|
814
|
-
.r-header-social {
|
|
815
|
-
flex: none;
|
|
816
|
-
justify-content: unset;
|
|
817
|
-
}
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.r-header-social-git {
|
|
821
|
-
color: var(--r-main-700);
|
|
822
|
-
transition: color 0.2s;
|
|
823
|
-
}
|
|
824
|
-
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
825
|
-
color: var(--r-main-950);
|
|
890
|
+
.r-theme-switcher-svg {
|
|
891
|
+
display: block;
|
|
826
892
|
}.r-article {
|
|
827
893
|
padding: 20px 0 40px;
|
|
828
894
|
grid-area: content;
|
|
@@ -1166,72 +1232,6 @@
|
|
|
1166
1232
|
|
|
1167
1233
|
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
1168
1234
|
transform: rotate(90deg);
|
|
1169
|
-
}.r-theme-switcher {
|
|
1170
|
-
position: relative;
|
|
1171
|
-
display: flex;
|
|
1172
|
-
gap: 4px;
|
|
1173
|
-
width: 109px;
|
|
1174
|
-
height: 37px;
|
|
1175
|
-
padding: 2px;
|
|
1176
|
-
background-color: var(--r-main-100);
|
|
1177
|
-
border: 1px solid var(--r-main-200);
|
|
1178
|
-
border-radius: 100px;
|
|
1179
|
-
box-sizing: border-box;
|
|
1180
|
-
}
|
|
1181
|
-
.r-theme-switcher::before {
|
|
1182
|
-
content: "";
|
|
1183
|
-
position: absolute;
|
|
1184
|
-
display: block;
|
|
1185
|
-
height: 32px;
|
|
1186
|
-
width: 32px;
|
|
1187
|
-
top: 2px;
|
|
1188
|
-
left: 2px;
|
|
1189
|
-
background-color: var(--r-main-50);
|
|
1190
|
-
border: 1px solid var(--r-main-200);
|
|
1191
|
-
border-radius: 100px;
|
|
1192
|
-
transition: left 0.2s;
|
|
1193
|
-
box-sizing: border-box;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.r-theme-switcher-btn {
|
|
1197
|
-
padding: 8px;
|
|
1198
|
-
background: none;
|
|
1199
|
-
border: 0;
|
|
1200
|
-
border-radius: 100px;
|
|
1201
|
-
cursor: pointer;
|
|
1202
|
-
color: var(--r-main-700);
|
|
1203
|
-
fill: transparent;
|
|
1204
|
-
z-index: 1;
|
|
1205
|
-
transition: color 0.2s 0.1s, fill 0.2s;
|
|
1206
|
-
}
|
|
1207
|
-
.r-theme-switcher-btn:hover {
|
|
1208
|
-
color: var(--r-main-950);
|
|
1209
|
-
fill: var(--r-main-600);
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1213
|
-
left: 2px;
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark,
|
|
1217
|
-
.r-theme-system .r-theme-switcher-btn__system,
|
|
1218
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
1219
|
-
color: var(--r-main-950);
|
|
1220
|
-
fill: var(--r-main-950);
|
|
1221
|
-
pointer-events: none;
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
.r-theme-switcher::before,
|
|
1225
|
-
.r-theme-system .r-theme-switcher::before {
|
|
1226
|
-
left: 38px;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
1230
|
-
left: 74px;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
.r-theme-switcher-svg {
|
|
1234
|
-
display: block;
|
|
1235
1235
|
}.r-keylink {
|
|
1236
1236
|
display: block;
|
|
1237
1237
|
position: relative;
|
|
@@ -1252,6 +1252,8 @@
|
|
|
1252
1252
|
user-select: none;
|
|
1253
1253
|
pointer-events: none;
|
|
1254
1254
|
box-sizing: border-box;
|
|
1255
|
+
}.r-git-logo {
|
|
1256
|
+
display: block;
|
|
1255
1257
|
}.r-backdrop {
|
|
1256
1258
|
position: fixed;
|
|
1257
1259
|
top: 0;
|
|
@@ -1268,8 +1270,6 @@
|
|
|
1268
1270
|
opacity: 1;
|
|
1269
1271
|
visibility: visible;
|
|
1270
1272
|
pointer-events: all;
|
|
1271
|
-
}.r-git-logo {
|
|
1272
|
-
display: block;
|
|
1273
1273
|
}.r-external-mark {
|
|
1274
1274
|
position: relative;
|
|
1275
1275
|
vertical-align: text-top;
|
|
@@ -1301,6 +1301,119 @@
|
|
|
1301
1301
|
background-color: currentColor;
|
|
1302
1302
|
border-radius: 0 0 0 4px;
|
|
1303
1303
|
box-sizing: border-box;
|
|
1304
|
+
}.r-breadcrumbs {
|
|
1305
|
+
grid-area: breadcrumbs;
|
|
1306
|
+
list-style: none;
|
|
1307
|
+
margin: 0;
|
|
1308
|
+
padding: 20px 0 0;
|
|
1309
|
+
line-height: 2;
|
|
1310
|
+
}
|
|
1311
|
+
@media screen and (width >= 768px) {
|
|
1312
|
+
.r-breadcrumbs {
|
|
1313
|
+
padding: 32px 0 0;
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.r-breadcrumb {
|
|
1318
|
+
display: inline;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.r-breadcrumb._previous::after {
|
|
1322
|
+
content: "/";
|
|
1323
|
+
font-weight: 600;
|
|
1324
|
+
margin-inline: 8px;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.r-breadcrumb-link {
|
|
1328
|
+
color: var(--r-main-700);
|
|
1329
|
+
text-decoration: none;
|
|
1330
|
+
}
|
|
1331
|
+
.r-breadcrumb-link:hover {
|
|
1332
|
+
color: var(--r-primary-800);
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.r-breadcrumb-link,
|
|
1336
|
+
.r-breadcrumb-title {
|
|
1337
|
+
display: inline;
|
|
1338
|
+
padding: 6px 0;
|
|
1339
|
+
margin: 0;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.r-breadcrumb-title {
|
|
1343
|
+
color: var(--r-main-950);
|
|
1344
|
+
font-weight: 600;
|
|
1345
|
+
}.r-pagination {
|
|
1346
|
+
grid-area: pagination;
|
|
1347
|
+
display: grid;
|
|
1348
|
+
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1349
|
+
gap: 16px;
|
|
1350
|
+
margin-bottom: 40px;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.r-pagination-item {
|
|
1354
|
+
position: relative;
|
|
1355
|
+
padding-top: 8px;
|
|
1356
|
+
padding-bottom: 8px;
|
|
1357
|
+
text-decoration: none;
|
|
1358
|
+
font-size: 14px;
|
|
1359
|
+
color: var(--r-main-800);
|
|
1360
|
+
}
|
|
1361
|
+
.r-pagination-item:hover {
|
|
1362
|
+
color: var(--r-main-950);
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.r-pagination-item._prev {
|
|
1366
|
+
padding-left: 28px;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.r-pagination-item._next {
|
|
1370
|
+
text-align: right;
|
|
1371
|
+
padding-right: 28px;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.r-pagination-text {
|
|
1375
|
+
display: block;
|
|
1376
|
+
line-height: 2;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.r-pagination-title {
|
|
1380
|
+
font-weight: 600;
|
|
1381
|
+
font-size: 16px;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.r-pagination-icon {
|
|
1385
|
+
position: absolute;
|
|
1386
|
+
top: 50%;
|
|
1387
|
+
transform: translateY(-50%);
|
|
1388
|
+
transition: transform 0.2s;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.r-pagination-icon._prev {
|
|
1392
|
+
left: 0;
|
|
1393
|
+
}
|
|
1394
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1395
|
+
transform: translate(-4px, -50%);
|
|
1396
|
+
}
|
|
1397
|
+
@media screen and (width >= 1180px) {
|
|
1398
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1399
|
+
transform: translate(-8px, -50%);
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.r-pagination-icon._next {
|
|
1404
|
+
right: 0;
|
|
1405
|
+
}
|
|
1406
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1407
|
+
transform: translate(4px, -50%);
|
|
1408
|
+
}
|
|
1409
|
+
@media screen and (width >= 1180px) {
|
|
1410
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1411
|
+
transform: translate(8px, -50%);
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.r-pagination-svg {
|
|
1416
|
+
display: block;
|
|
1304
1417
|
}.r-contents {
|
|
1305
1418
|
grid-area: contents;
|
|
1306
1419
|
}
|
|
@@ -1540,119 +1653,6 @@
|
|
|
1540
1653
|
}
|
|
1541
1654
|
.r-contents-git:hover {
|
|
1542
1655
|
color: var(--r-main-900);
|
|
1543
|
-
}.r-breadcrumbs {
|
|
1544
|
-
grid-area: breadcrumbs;
|
|
1545
|
-
list-style: none;
|
|
1546
|
-
margin: 0;
|
|
1547
|
-
padding: 20px 0 0;
|
|
1548
|
-
line-height: 2;
|
|
1549
|
-
}
|
|
1550
|
-
@media screen and (width >= 768px) {
|
|
1551
|
-
.r-breadcrumbs {
|
|
1552
|
-
padding: 32px 0 0;
|
|
1553
|
-
}
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.r-breadcrumb {
|
|
1557
|
-
display: inline;
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
.r-breadcrumb._previous::after {
|
|
1561
|
-
content: "/";
|
|
1562
|
-
font-weight: 600;
|
|
1563
|
-
margin-inline: 8px;
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
.r-breadcrumb-link {
|
|
1567
|
-
color: var(--r-main-700);
|
|
1568
|
-
text-decoration: none;
|
|
1569
|
-
}
|
|
1570
|
-
.r-breadcrumb-link:hover {
|
|
1571
|
-
color: var(--r-primary-800);
|
|
1572
|
-
}
|
|
1573
|
-
|
|
1574
|
-
.r-breadcrumb-link,
|
|
1575
|
-
.r-breadcrumb-title {
|
|
1576
|
-
display: inline;
|
|
1577
|
-
padding: 6px 0;
|
|
1578
|
-
margin: 0;
|
|
1579
|
-
}
|
|
1580
|
-
|
|
1581
|
-
.r-breadcrumb-title {
|
|
1582
|
-
color: var(--r-main-950);
|
|
1583
|
-
font-weight: 600;
|
|
1584
|
-
}.r-pagination {
|
|
1585
|
-
grid-area: pagination;
|
|
1586
|
-
display: grid;
|
|
1587
|
-
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1588
|
-
gap: 16px;
|
|
1589
|
-
margin-bottom: 40px;
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
.r-pagination-item {
|
|
1593
|
-
position: relative;
|
|
1594
|
-
padding-top: 8px;
|
|
1595
|
-
padding-bottom: 8px;
|
|
1596
|
-
text-decoration: none;
|
|
1597
|
-
font-size: 14px;
|
|
1598
|
-
color: var(--r-main-800);
|
|
1599
|
-
}
|
|
1600
|
-
.r-pagination-item:hover {
|
|
1601
|
-
color: var(--r-main-950);
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
.r-pagination-item._prev {
|
|
1605
|
-
padding-left: 28px;
|
|
1606
|
-
}
|
|
1607
|
-
|
|
1608
|
-
.r-pagination-item._next {
|
|
1609
|
-
text-align: right;
|
|
1610
|
-
padding-right: 28px;
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
|
-
.r-pagination-text {
|
|
1614
|
-
display: block;
|
|
1615
|
-
line-height: 2;
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
.r-pagination-title {
|
|
1619
|
-
font-weight: 600;
|
|
1620
|
-
font-size: 16px;
|
|
1621
|
-
}
|
|
1622
|
-
|
|
1623
|
-
.r-pagination-icon {
|
|
1624
|
-
position: absolute;
|
|
1625
|
-
top: 50%;
|
|
1626
|
-
transform: translateY(-50%);
|
|
1627
|
-
transition: transform 0.2s;
|
|
1628
|
-
}
|
|
1629
|
-
|
|
1630
|
-
.r-pagination-icon._prev {
|
|
1631
|
-
left: 0;
|
|
1632
|
-
}
|
|
1633
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1634
|
-
transform: translate(-4px, -50%);
|
|
1635
|
-
}
|
|
1636
|
-
@media screen and (width >= 1180px) {
|
|
1637
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1638
|
-
transform: translate(-8px, -50%);
|
|
1639
|
-
}
|
|
1640
|
-
}
|
|
1641
|
-
|
|
1642
|
-
.r-pagination-icon._next {
|
|
1643
|
-
right: 0;
|
|
1644
|
-
}
|
|
1645
|
-
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1646
|
-
transform: translate(4px, -50%);
|
|
1647
|
-
}
|
|
1648
|
-
@media screen and (width >= 1180px) {
|
|
1649
|
-
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1650
|
-
transform: translate(8px, -50%);
|
|
1651
|
-
}
|
|
1652
|
-
}
|
|
1653
|
-
|
|
1654
|
-
.r-pagination-svg {
|
|
1655
|
-
display: block;
|
|
1656
1656
|
}.r-last-modified {
|
|
1657
1657
|
color: var(--r-main-700);
|
|
1658
1658
|
margin-block-start: 16px;
|
|
@@ -1672,6 +1672,25 @@
|
|
|
1672
1672
|
min-width: 24px;
|
|
1673
1673
|
text-align: center;
|
|
1674
1674
|
box-sizing: border-box;
|
|
1675
|
+
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1676
|
+
visibility: visible;
|
|
1677
|
+
opacity: 1;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.r-anchor-heading-link {
|
|
1681
|
+
visibility: hidden;
|
|
1682
|
+
opacity: 0;
|
|
1683
|
+
transition: opacity 0.3s allow-discrete;
|
|
1684
|
+
padding-inline: 8px;
|
|
1685
|
+
margin-inline-start: -4px;
|
|
1686
|
+
color: var(--r-main-600);
|
|
1687
|
+
text-decoration: none;
|
|
1688
|
+
}
|
|
1689
|
+
.r-anchor-heading-link:hover {
|
|
1690
|
+
color: var(--r-primary-800);
|
|
1691
|
+
}
|
|
1692
|
+
.r-anchor-heading-link::after {
|
|
1693
|
+
content: "#";
|
|
1675
1694
|
}.r-code-section {
|
|
1676
1695
|
position: relative;
|
|
1677
1696
|
margin-block-start: 1.5em;
|
|
@@ -1723,25 +1742,6 @@
|
|
|
1723
1742
|
|
|
1724
1743
|
.r-code-section-filename {
|
|
1725
1744
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1726
|
-
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1727
|
-
visibility: visible;
|
|
1728
|
-
opacity: 1;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.r-anchor-heading-link {
|
|
1732
|
-
visibility: hidden;
|
|
1733
|
-
opacity: 0;
|
|
1734
|
-
transition: opacity 0.3s allow-discrete;
|
|
1735
|
-
padding-inline: 8px;
|
|
1736
|
-
margin-inline-start: -4px;
|
|
1737
|
-
color: var(--r-main-600);
|
|
1738
|
-
text-decoration: none;
|
|
1739
|
-
}
|
|
1740
|
-
.r-anchor-heading-link:hover {
|
|
1741
|
-
color: var(--r-primary-800);
|
|
1742
|
-
}
|
|
1743
|
-
.r-anchor-heading-link::after {
|
|
1744
|
-
content: "#";
|
|
1745
1745
|
}.r-block {
|
|
1746
1746
|
position: relative;
|
|
1747
1747
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robindoc",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-7477c3a",
|
|
4
4
|
"description": "Robindoc is a framework for automatically creating documentation websites based on markdown files, built on React.js Server Components",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"github-slugger": "2.0.0",
|
|
39
39
|
"gray-matter": "4.0.3",
|
|
40
40
|
"hast-util-to-jsx-runtime": "2.3.6",
|
|
41
|
-
"html-react-parser": "5.2.
|
|
41
|
+
"html-react-parser": "5.2.14",
|
|
42
42
|
"marked": "17.0.1",
|
|
43
43
|
"shiki": "3.21.0",
|
|
44
44
|
"tinyglobby": "0.2.15"
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
"@rollup/plugin-terser": "0.4.4",
|
|
49
49
|
"@rollup/plugin-typescript": "12.3.0",
|
|
50
50
|
"@types/github-slugger": "2.0.0",
|
|
51
|
-
"@types/node": "25.0
|
|
52
|
-
"@types/react": "19.2.
|
|
51
|
+
"@types/node": "25.1.0",
|
|
52
|
+
"@types/react": "19.2.10",
|
|
53
53
|
"@types/react-dom": "19.2.3",
|
|
54
|
-
"react": "19.2.
|
|
55
|
-
"react-dom": "19.2.
|
|
56
|
-
"rollup": "4.
|
|
54
|
+
"react": "19.2.4",
|
|
55
|
+
"react-dom": "19.2.4",
|
|
56
|
+
"rollup": "4.57.0",
|
|
57
57
|
"rollup-plugin-copy": "3.5.0",
|
|
58
58
|
"rollup-plugin-sass": "1.15.3",
|
|
59
59
|
"rollup-preserve-directives": "1.1.3",
|
|
60
|
-
"sass": "1.97.
|
|
60
|
+
"sass": "1.97.3",
|
|
61
61
|
"ts-patch": "3.3.0",
|
|
62
62
|
"typescript": "5.9.3",
|
|
63
63
|
"typescript-transform-paths": "3.5.6"
|