@haklex/rich-compose 0.10.0 → 0.12.0
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/dist/index.mjs +7 -2
- package/dist/litexml-html-preview-client.css +112 -64
- package/dist/litexml-html-preview-client.js +2971 -2681
- package/dist/{module-CoX2HXw7.js → module-C1gs3Txu.js} +1 -1
- package/dist/{module-LSK-rHcR.js → module-Cx2WzEb6.js} +3 -2
- package/dist/{module-Bzx-kcbg.js → module-DQ0zqopf.js} +3 -2
- package/dist/{module-BNXS9cXW.js → module-DQa_2hV4.js} +3 -2
- package/dist/{module-B-j9xcYZ.js → module-DjF3aV4Q.js} +1 -1
- package/dist/modules/alert/edit.mjs +1 -1
- package/dist/modules/alert/index.d.ts +1 -1
- package/dist/modules/alert/index.d.ts.map +1 -1
- package/dist/modules/alert/index.mjs +2 -2
- package/dist/modules/alert/module.d.ts +1 -0
- package/dist/modules/alert/module.d.ts.map +1 -1
- package/dist/modules/alert/renderer.d.ts +0 -1
- package/dist/modules/alert/renderer.d.ts.map +1 -1
- package/dist/modules/alert/renderer.mjs +1 -4
- package/dist/modules/banner/edit.mjs +1 -1
- package/dist/modules/banner/index.d.ts +1 -1
- package/dist/modules/banner/index.d.ts.map +1 -1
- package/dist/modules/banner/index.mjs +2 -2
- package/dist/modules/banner/module.d.ts +1 -0
- package/dist/modules/banner/module.d.ts.map +1 -1
- package/dist/modules/banner/renderer.d.ts +0 -1
- package/dist/modules/banner/renderer.d.ts.map +1 -1
- package/dist/modules/banner/renderer.mjs +1 -4
- package/dist/modules/chat/renderer.d.ts +0 -1
- package/dist/modules/chat/renderer.d.ts.map +1 -1
- package/dist/modules/chat/renderer.mjs +1 -4
- package/dist/modules/code-block/edit.mjs +1 -1
- package/dist/modules/code-block/index.mjs +1 -1
- package/dist/modules/code-block/renderer.d.ts +0 -1
- package/dist/modules/code-block/renderer.d.ts.map +1 -1
- package/dist/modules/code-block/renderer.mjs +1 -4
- package/dist/modules/code-snippet/renderer.d.ts +0 -1
- package/dist/modules/code-snippet/renderer.d.ts.map +1 -1
- package/dist/modules/code-snippet/renderer.mjs +1 -4
- package/dist/modules/gallery/renderer.d.ts +0 -1
- package/dist/modules/gallery/renderer.d.ts.map +1 -1
- package/dist/modules/gallery/renderer.mjs +1 -4
- package/dist/modules/image/renderer.d.ts +0 -1
- package/dist/modules/image/renderer.d.ts.map +1 -1
- package/dist/modules/image/renderer.mjs +1 -4
- package/dist/modules/link-card/renderer.d.ts +0 -1
- package/dist/modules/link-card/renderer.d.ts.map +1 -1
- package/dist/modules/link-card/renderer.mjs +1 -4
- package/dist/modules/mention/renderer.d.ts +0 -1
- package/dist/modules/mention/renderer.d.ts.map +1 -1
- package/dist/modules/mention/renderer.mjs +1 -4
- package/dist/modules/mermaid/edit.mjs +1 -1
- package/dist/modules/mermaid/index.mjs +1 -1
- package/dist/modules/mermaid/renderer.d.ts +0 -1
- package/dist/modules/mermaid/renderer.d.ts.map +1 -1
- package/dist/modules/mermaid/renderer.mjs +1 -4
- package/dist/modules/nested-doc/edit.mjs +1 -1
- package/dist/modules/nested-doc/index.d.ts +1 -1
- package/dist/modules/nested-doc/index.d.ts.map +1 -1
- package/dist/modules/nested-doc/index.mjs +2 -2
- package/dist/modules/nested-doc/module.d.ts +1 -0
- package/dist/modules/nested-doc/module.d.ts.map +1 -1
- package/dist/modules/poll/renderer.d.ts +0 -1
- package/dist/modules/poll/renderer.d.ts.map +1 -1
- package/dist/modules/poll/renderer.mjs +1 -4
- package/dist/modules/ruby/renderer.d.ts +0 -1
- package/dist/modules/ruby/renderer.d.ts.map +1 -1
- package/dist/modules/ruby/renderer.mjs +1 -4
- package/dist/modules/video/renderer.d.ts +0 -1
- package/dist/modules/video/renderer.d.ts.map +1 -1
- package/dist/modules/video/renderer.mjs +1 -4
- package/dist/renderer.mjs +5 -5
- package/dist/static-renderer/engine/renderBuiltinNode.d.ts.map +1 -1
- package/dist/style/alert.css +1 -1
- package/dist/style/banner.css +1 -1
- package/dist/style/foundation.css +1 -1
- package/dist/style/nested-doc.css +1 -1
- package/dist/style.css +4 -4
- package/package.json +22 -22
package/dist/index.mjs
CHANGED
|
@@ -97,15 +97,20 @@ function renderBuiltinNode(node, key, children, headingSlugs, textContent) {
|
|
|
97
97
|
}), children]
|
|
98
98
|
}, key);
|
|
99
99
|
}
|
|
100
|
+
case "rich-quote":
|
|
100
101
|
case "quote": {
|
|
101
102
|
const quoteText = (textContent || extractText(node)).trim();
|
|
102
103
|
const hasOpenQuote = OPEN_QUOTE_RE.test(quoteText);
|
|
103
104
|
const hasCloseQuote = CLOSE_QUOTE_RE.test(quoteText);
|
|
104
|
-
|
|
105
|
+
const attribution = node.attribution;
|
|
106
|
+
return /* @__PURE__ */ jsxs("blockquote", {
|
|
105
107
|
className: shared$1("quote"),
|
|
106
108
|
"data-no-close-quote": hasCloseQuote ? "" : void 0,
|
|
107
109
|
"data-no-open-quote": hasOpenQuote ? "" : void 0,
|
|
108
|
-
children
|
|
110
|
+
children: [children, attribution && /* @__PURE__ */ jsxs("footer", {
|
|
111
|
+
className: shared$1("quoteAttribution"),
|
|
112
|
+
children: ["— ", attribution]
|
|
113
|
+
})]
|
|
109
114
|
}, key);
|
|
110
115
|
}
|
|
111
116
|
case "list": return /* @__PURE__ */ jsx(node.listType === "number" ? "ol" : "ul", {
|
|
@@ -869,16 +869,24 @@
|
|
|
869
869
|
border-radius: var(--rc-radius-sm);
|
|
870
870
|
background-color: var(--rc-quote-border);
|
|
871
871
|
}
|
|
872
|
-
.
|
|
872
|
+
.shared_quoteAttribution__gxfui1t {
|
|
873
|
+
display: block;
|
|
874
|
+
text-align: right;
|
|
875
|
+
font-size: 12px;
|
|
876
|
+
color: var(--rc-text-secondary);
|
|
877
|
+
margin-top: var(--rc-space-sm);
|
|
878
|
+
font-style: normal;
|
|
879
|
+
}
|
|
880
|
+
.shared_hr__gxfui1u {
|
|
873
881
|
border: none;
|
|
874
882
|
border-top: 1px solid var(--rc-hr-border);
|
|
875
883
|
margin: var(--rc-space-lg) auto;
|
|
876
884
|
width: 60px;
|
|
877
885
|
}
|
|
878
|
-
.
|
|
886
|
+
.shared_tableScrollableWrapper__gxfui1v {
|
|
879
887
|
overflow-x: auto;
|
|
880
888
|
}
|
|
881
|
-
.
|
|
889
|
+
.shared_tableCell__gxfui1w {
|
|
882
890
|
border: none;
|
|
883
891
|
border-bottom: 1px solid var(--rc-border);
|
|
884
892
|
border-right: 1px solid var(--rc-border);
|
|
@@ -887,10 +895,10 @@
|
|
|
887
895
|
vertical-align: middle;
|
|
888
896
|
line-height: 1.5;
|
|
889
897
|
}
|
|
890
|
-
.
|
|
898
|
+
.shared_tableCell__gxfui1w:last-child {
|
|
891
899
|
border-right: none;
|
|
892
900
|
}
|
|
893
|
-
.
|
|
901
|
+
.shared_tableCellHeader__gxfui1x {
|
|
894
902
|
border: none;
|
|
895
903
|
border-bottom: 1px solid var(--rc-border);
|
|
896
904
|
border-right: 1px solid var(--rc-border);
|
|
@@ -908,10 +916,10 @@
|
|
|
908
916
|
top: 0;
|
|
909
917
|
z-index: 1;
|
|
910
918
|
}
|
|
911
|
-
.
|
|
919
|
+
.shared_tableCellHeader__gxfui1x:last-child {
|
|
912
920
|
border-right: none;
|
|
913
921
|
}
|
|
914
|
-
.
|
|
922
|
+
.shared_table__gxfui1y {
|
|
915
923
|
width: 100%;
|
|
916
924
|
border-collapse: separate;
|
|
917
925
|
border-spacing: 0;
|
|
@@ -921,7 +929,7 @@
|
|
|
921
929
|
border-radius: var(--rc-radius-md);
|
|
922
930
|
overflow: hidden;
|
|
923
931
|
}
|
|
924
|
-
.
|
|
932
|
+
.shared_spoiler__gxfui1z {
|
|
925
933
|
background-color: var(--rc-text);
|
|
926
934
|
color: transparent;
|
|
927
935
|
border-radius: var(--rc-radius-sm);
|
|
@@ -930,35 +938,35 @@
|
|
|
930
938
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
931
939
|
user-select: none;
|
|
932
940
|
}
|
|
933
|
-
[contenteditable="true"] .
|
|
941
|
+
[contenteditable="true"] .shared_spoiler__gxfui1z {
|
|
934
942
|
background-color: color-mix(in srgb, var(--rc-text) 30%, transparent);
|
|
935
943
|
color: inherit;
|
|
936
944
|
user-select: auto;
|
|
937
945
|
cursor: text;
|
|
938
946
|
}
|
|
939
|
-
.
|
|
947
|
+
.shared_spoiler__gxfui1z:hover {
|
|
940
948
|
background-color: transparent;
|
|
941
949
|
color: inherit;
|
|
942
950
|
user-select: auto;
|
|
943
951
|
}
|
|
944
|
-
.rich-content .
|
|
952
|
+
.rich-content .shared_spoiler__gxfui1z {
|
|
945
953
|
background-color: var(--rc-text-tertiary);
|
|
946
954
|
color: transparent;
|
|
947
955
|
}
|
|
948
|
-
.rich-content .
|
|
956
|
+
.rich-content .shared_spoiler__gxfui1z:not(:hover):not(.rich-spoiler-revealed) * {
|
|
949
957
|
color: transparent !important;
|
|
950
958
|
}
|
|
951
|
-
.rich-content .
|
|
959
|
+
.rich-content .shared_spoiler__gxfui1z:hover {
|
|
952
960
|
background-color: transparent;
|
|
953
961
|
color: inherit;
|
|
954
962
|
user-select: auto;
|
|
955
963
|
}
|
|
956
|
-
.
|
|
964
|
+
.shared_spoilerRevealed__gxfui110 {
|
|
957
965
|
background-color: transparent;
|
|
958
966
|
color: inherit;
|
|
959
967
|
user-select: auto;
|
|
960
968
|
}
|
|
961
|
-
.
|
|
969
|
+
.shared_tag__gxfui111 {
|
|
962
970
|
display: inline-block;
|
|
963
971
|
border-radius: 999px;
|
|
964
972
|
padding-inline: 0.75em;
|
|
@@ -966,7 +974,7 @@
|
|
|
966
974
|
line-height: 1.6;
|
|
967
975
|
vertical-align: baseline;
|
|
968
976
|
}
|
|
969
|
-
.
|
|
977
|
+
.shared_comment__gxfui112 {
|
|
970
978
|
display: inline-block;
|
|
971
979
|
font-family: var(--rc-font-mono);
|
|
972
980
|
font-size: var(--rc-font-size-small);
|
|
@@ -977,25 +985,25 @@
|
|
|
977
985
|
padding: 2px 6px;
|
|
978
986
|
white-space: break-spaces;
|
|
979
987
|
}
|
|
980
|
-
.
|
|
988
|
+
.shared_comment__gxfui112::before {
|
|
981
989
|
content: "<!--";
|
|
982
990
|
opacity: 0.7;
|
|
983
991
|
}
|
|
984
|
-
.
|
|
992
|
+
.shared_comment__gxfui112::after {
|
|
985
993
|
content: "-->";
|
|
986
994
|
opacity: 0.7;
|
|
987
995
|
}
|
|
988
|
-
.
|
|
996
|
+
.shared_ruby__gxfui113 {
|
|
989
997
|
ruby-position: over;
|
|
990
998
|
ruby-align: center;
|
|
991
999
|
}
|
|
992
|
-
[contenteditable="true"] .
|
|
1000
|
+
[contenteditable="true"] .shared_ruby__gxfui113[data-ruby] {
|
|
993
1001
|
position: relative;
|
|
994
1002
|
display: inline-block;
|
|
995
1003
|
padding-top: 0.72em;
|
|
996
1004
|
line-height: 1.2;
|
|
997
1005
|
}
|
|
998
|
-
[contenteditable="true"] .
|
|
1006
|
+
[contenteditable="true"] .shared_ruby__gxfui113[data-ruby]::before {
|
|
999
1007
|
content: attr(data-ruby);
|
|
1000
1008
|
position: absolute;
|
|
1001
1009
|
left: 0;
|
|
@@ -1009,17 +1017,17 @@
|
|
|
1009
1017
|
pointer-events: none;
|
|
1010
1018
|
white-space: nowrap;
|
|
1011
1019
|
}
|
|
1012
|
-
.
|
|
1020
|
+
.shared_rubyRt__gxfui114 {
|
|
1013
1021
|
font-size: 0.58em;
|
|
1014
1022
|
line-height: 1;
|
|
1015
1023
|
color: var(--rc-text-secondary);
|
|
1016
1024
|
user-select: none;
|
|
1017
1025
|
}
|
|
1018
|
-
.
|
|
1026
|
+
.shared_footnote__gxfui115 {
|
|
1019
1027
|
vertical-align: super;
|
|
1020
1028
|
font-size: 0.8em;
|
|
1021
1029
|
}
|
|
1022
|
-
.
|
|
1030
|
+
.shared_footnoteRef__gxfui116 {
|
|
1023
1031
|
display: inline-flex;
|
|
1024
1032
|
align-items: center;
|
|
1025
1033
|
justify-content: center;
|
|
@@ -1034,36 +1042,36 @@
|
|
|
1034
1042
|
font-size: 0.82em;
|
|
1035
1043
|
transition: filter 0.15s ease;
|
|
1036
1044
|
}
|
|
1037
|
-
.
|
|
1045
|
+
.shared_footnoteRef__gxfui116:hover {
|
|
1038
1046
|
filter: brightness(0.96);
|
|
1039
1047
|
}
|
|
1040
|
-
.
|
|
1048
|
+
.shared_footnoteHighlight__gxfui117 {
|
|
1041
1049
|
animation: shared_footnoteFlash__gxfui11 1.2s ease-out;
|
|
1042
1050
|
}
|
|
1043
|
-
.
|
|
1051
|
+
.shared_footnoteRefWrapper__gxfui118 {
|
|
1044
1052
|
position: relative;
|
|
1045
1053
|
display: inline;
|
|
1046
1054
|
}
|
|
1047
|
-
.
|
|
1055
|
+
.shared_footnoteSection__gxfui119 {
|
|
1048
1056
|
margin-top: var(--rc-space-lg);
|
|
1049
1057
|
}
|
|
1050
|
-
.
|
|
1058
|
+
.shared_footnoteSectionDivider__gxfui11a {
|
|
1051
1059
|
border: none;
|
|
1052
1060
|
border-top: 1px solid var(--rc-border);
|
|
1053
1061
|
margin: var(--rc-space-lg) 0 var(--rc-space-md);
|
|
1054
1062
|
}
|
|
1055
|
-
.
|
|
1063
|
+
.shared_footnoteSectionList__gxfui11b {
|
|
1056
1064
|
list-style-type: decimal;
|
|
1057
1065
|
padding-left: var(--rc-space-lg);
|
|
1058
1066
|
font-size: var(--rc-font-size-small);
|
|
1059
1067
|
color: var(--rc-text-secondary);
|
|
1060
1068
|
line-height: 1.6;
|
|
1061
1069
|
}
|
|
1062
|
-
.
|
|
1070
|
+
.shared_footnoteSectionItem__gxfui11c {
|
|
1063
1071
|
margin-bottom: var(--rc-space-sm);
|
|
1064
1072
|
padding-left: var(--rc-space-xs);
|
|
1065
1073
|
}
|
|
1066
|
-
.
|
|
1074
|
+
.shared_footnoteBackRef__gxfui11d {
|
|
1067
1075
|
display: inline-flex;
|
|
1068
1076
|
align-items: center;
|
|
1069
1077
|
margin-left: var(--rc-space-xs);
|
|
@@ -1073,23 +1081,23 @@
|
|
|
1073
1081
|
transition: opacity 0.15s ease;
|
|
1074
1082
|
font-family: var(--rc-font-mono);
|
|
1075
1083
|
}
|
|
1076
|
-
.
|
|
1084
|
+
.shared_footnoteBackRef__gxfui11d:hover {
|
|
1077
1085
|
opacity: 0.7;
|
|
1078
1086
|
}
|
|
1079
|
-
.
|
|
1087
|
+
.shared_footnoteSectionItemEdit__gxfui11e {
|
|
1080
1088
|
display: flex;
|
|
1081
1089
|
align-items: center;
|
|
1082
1090
|
gap: var(--rc-space-sm);
|
|
1083
1091
|
list-style-type: none;
|
|
1084
1092
|
}
|
|
1085
|
-
.
|
|
1093
|
+
.shared_footnoteSectionItemNum__gxfui11f {
|
|
1086
1094
|
flex-shrink: 0;
|
|
1087
1095
|
color: var(--rc-text-secondary);
|
|
1088
1096
|
font-size: var(--rc-font-size-small);
|
|
1089
1097
|
font-weight: 600;
|
|
1090
1098
|
min-width: 1.5em;
|
|
1091
1099
|
}
|
|
1092
|
-
.
|
|
1100
|
+
.shared_footnoteSectionItemInput__gxfui11g {
|
|
1093
1101
|
flex: 1;
|
|
1094
1102
|
border: 1px solid var(--rc-border);
|
|
1095
1103
|
border-radius: var(--rc-radius-sm);
|
|
@@ -1100,10 +1108,10 @@
|
|
|
1100
1108
|
outline: none;
|
|
1101
1109
|
transition: border-color 0.15s ease;
|
|
1102
1110
|
}
|
|
1103
|
-
.
|
|
1111
|
+
.shared_footnoteSectionItemInput__gxfui11g:focus {
|
|
1104
1112
|
border-color: var(--rc-accent);
|
|
1105
1113
|
}
|
|
1106
|
-
.
|
|
1114
|
+
.shared_footnoteSectionItemRemove__gxfui11h {
|
|
1107
1115
|
flex-shrink: 0;
|
|
1108
1116
|
display: inline-flex;
|
|
1109
1117
|
align-items: center;
|
|
@@ -1118,11 +1126,11 @@
|
|
|
1118
1126
|
font-size: 14px;
|
|
1119
1127
|
transition: color 0.15s ease, background-color 0.15s ease;
|
|
1120
1128
|
}
|
|
1121
|
-
.
|
|
1129
|
+
.shared_footnoteSectionItemRemove__gxfui11h:hover {
|
|
1122
1130
|
color: #ef4444;
|
|
1123
1131
|
background-color: rgba(239, 68, 68, 0.1);
|
|
1124
1132
|
}
|
|
1125
|
-
.
|
|
1133
|
+
.shared_dragHandle__gxfui11i {
|
|
1126
1134
|
position: absolute;
|
|
1127
1135
|
display: flex;
|
|
1128
1136
|
align-items: center;
|
|
@@ -1136,14 +1144,14 @@
|
|
|
1136
1144
|
transition: opacity 0.15s ease, background-color 0.15s ease;
|
|
1137
1145
|
z-index: 10;
|
|
1138
1146
|
}
|
|
1139
|
-
.
|
|
1147
|
+
.shared_dragHandle__gxfui11i:hover {
|
|
1140
1148
|
opacity: 1;
|
|
1141
1149
|
background-color: var(--rc-fill-secondary);
|
|
1142
1150
|
}
|
|
1143
|
-
.
|
|
1151
|
+
.shared_dragHandle__gxfui11i:active {
|
|
1144
1152
|
cursor: grabbing;
|
|
1145
1153
|
}
|
|
1146
|
-
.
|
|
1154
|
+
.shared_dropIndicator__gxfui11j {
|
|
1147
1155
|
position: absolute;
|
|
1148
1156
|
height: 2px;
|
|
1149
1157
|
background-color: var(--rc-accent);
|
|
@@ -1151,7 +1159,7 @@
|
|
|
1151
1159
|
pointer-events: none;
|
|
1152
1160
|
z-index: 10;
|
|
1153
1161
|
}
|
|
1154
|
-
.
|
|
1162
|
+
.shared_alert__gxfui11k {
|
|
1155
1163
|
margin: 2em 0;
|
|
1156
1164
|
padding: 0 1em;
|
|
1157
1165
|
background-color: transparent;
|
|
@@ -1244,29 +1252,29 @@
|
|
|
1244
1252
|
.shared_quote__gxfui1s > .shared_paragraph__gxfui13:last-child {
|
|
1245
1253
|
margin-bottom: 0;
|
|
1246
1254
|
}
|
|
1247
|
-
.
|
|
1255
|
+
.shared_table__gxfui1y tbody tr:last-child .shared_tableCell__gxfui1w {
|
|
1248
1256
|
border-bottom: none;
|
|
1249
1257
|
}
|
|
1250
|
-
.
|
|
1258
|
+
.shared_tableCell__gxfui1w .shared_paragraph__gxfui13 {
|
|
1251
1259
|
margin: 0;
|
|
1252
1260
|
padding: 0;
|
|
1253
1261
|
line-height: inherit;
|
|
1254
1262
|
}
|
|
1255
|
-
.
|
|
1263
|
+
.shared_tableCell__gxfui1w > :first-child {
|
|
1256
1264
|
margin-top: 0;
|
|
1257
1265
|
}
|
|
1258
|
-
.
|
|
1266
|
+
.shared_tableCell__gxfui1w > :last-child {
|
|
1259
1267
|
margin-bottom: 0;
|
|
1260
1268
|
}
|
|
1261
|
-
.
|
|
1269
|
+
.shared_tableCellHeader__gxfui1x .shared_paragraph__gxfui13 {
|
|
1262
1270
|
margin: 0;
|
|
1263
1271
|
padding: 0;
|
|
1264
1272
|
line-height: inherit;
|
|
1265
1273
|
}
|
|
1266
|
-
.
|
|
1274
|
+
.shared_tableCellHeader__gxfui1x > :first-child {
|
|
1267
1275
|
margin-top: 0;
|
|
1268
1276
|
}
|
|
1269
|
-
.
|
|
1277
|
+
.shared_tableCellHeader__gxfui1x > :last-child {
|
|
1270
1278
|
margin-bottom: 0;
|
|
1271
1279
|
}
|
|
1272
1280
|
@supports (animation-timeline: view()) {
|
|
@@ -1486,13 +1494,13 @@
|
|
|
1486
1494
|
margin-top: 1em;
|
|
1487
1495
|
margin-bottom: 1em;
|
|
1488
1496
|
}
|
|
1489
|
-
.article_articleBase__9715290 .
|
|
1497
|
+
.article_articleBase__9715290 .shared_table__gxfui1y {
|
|
1490
1498
|
margin-top: 2em;
|
|
1491
1499
|
margin-bottom: 2em;
|
|
1492
1500
|
font-size: 0.875em;
|
|
1493
1501
|
line-height: 1.5;
|
|
1494
1502
|
}
|
|
1495
|
-
.article_articleBase__9715290 .
|
|
1503
|
+
.article_articleBase__9715290 .shared_table__gxfui1y .shared_paragraph__gxfui13 {
|
|
1496
1504
|
margin: 0;
|
|
1497
1505
|
padding: 0;
|
|
1498
1506
|
line-height: inherit;
|
|
@@ -1511,7 +1519,7 @@
|
|
|
1511
1519
|
line-height: 1.5;
|
|
1512
1520
|
margin-top: 1em;
|
|
1513
1521
|
}
|
|
1514
|
-
.article_articleBase__9715290 .
|
|
1522
|
+
.article_articleBase__9715290 .shared_hr__gxfui1u {
|
|
1515
1523
|
border-color: var(--rc-hr-border);
|
|
1516
1524
|
border-top-width: 1px;
|
|
1517
1525
|
margin-top: 3.5em;
|
|
@@ -1520,7 +1528,7 @@
|
|
|
1520
1528
|
margin-left: auto;
|
|
1521
1529
|
margin-right: auto;
|
|
1522
1530
|
}
|
|
1523
|
-
.article_articleBase__9715290 .
|
|
1531
|
+
.article_articleBase__9715290 .shared_hr__gxfui1u + * {
|
|
1524
1532
|
margin-top: 0;
|
|
1525
1533
|
}
|
|
1526
1534
|
.article_articleBase__9715290 .shared_link__gxfui1j {
|
|
@@ -1630,11 +1638,11 @@
|
|
|
1630
1638
|
.comment_commentBase__apruo60 .line::before {
|
|
1631
1639
|
display: none !important;
|
|
1632
1640
|
}
|
|
1633
|
-
.comment_commentBase__apruo60 .
|
|
1641
|
+
.comment_commentBase__apruo60 .shared_table__gxfui1y {
|
|
1634
1642
|
margin: var(--rc-space-sm) 0;
|
|
1635
1643
|
font-size: var(--rc-font-size-small);
|
|
1636
1644
|
}
|
|
1637
|
-
.comment_commentBase__apruo60 .
|
|
1645
|
+
.comment_commentBase__apruo60 .shared_tableCell__gxfui1w, .comment_commentBase__apruo60 .shared_tableCellHeader__gxfui1x {
|
|
1638
1646
|
padding: var(--rc-space-xs) var(--rc-space-sm);
|
|
1639
1647
|
}
|
|
1640
1648
|
.comment_commentBase__apruo60 .rich-image {
|
|
@@ -1643,13 +1651,13 @@
|
|
|
1643
1651
|
.comment_commentBase__apruo60 .rich-image figcaption {
|
|
1644
1652
|
font-size: var(--rc-font-size-small);
|
|
1645
1653
|
}
|
|
1646
|
-
.comment_commentBase__apruo60 .
|
|
1654
|
+
.comment_commentBase__apruo60 .shared_hr__gxfui1u {
|
|
1647
1655
|
border: none;
|
|
1648
1656
|
border-top: 1px solid var(--rc-hr-border);
|
|
1649
1657
|
margin: var(--rc-space-lg) auto;
|
|
1650
1658
|
width: 60px;
|
|
1651
1659
|
}
|
|
1652
|
-
.comment_commentBase__apruo60 .
|
|
1660
|
+
.comment_commentBase__apruo60 .shared_alert__gxfui11k {
|
|
1653
1661
|
padding: var(--rc-space-sm) var(--rc-space-md);
|
|
1654
1662
|
padding-left: var(--rc-space-lg);
|
|
1655
1663
|
margin: var(--rc-space-sm) 0;
|
|
@@ -1846,18 +1854,18 @@
|
|
|
1846
1854
|
padding: 0.8571429em 1.1428571em;
|
|
1847
1855
|
margin: 0;
|
|
1848
1856
|
}
|
|
1849
|
-
.note_noteBase__11ajihb0 .
|
|
1857
|
+
.note_noteBase__11ajihb0 .shared_table__gxfui1y {
|
|
1850
1858
|
margin-top: 2em;
|
|
1851
1859
|
margin-bottom: 2em;
|
|
1852
1860
|
font-size: 0.875em;
|
|
1853
1861
|
line-height: 1.7142857;
|
|
1854
1862
|
}
|
|
1855
|
-
.note_noteBase__11ajihb0 .
|
|
1863
|
+
.note_noteBase__11ajihb0 .shared_table__gxfui1y .shared_paragraph__gxfui13 {
|
|
1856
1864
|
margin: 0;
|
|
1857
1865
|
padding: 0;
|
|
1858
1866
|
line-height: inherit;
|
|
1859
1867
|
}
|
|
1860
|
-
.note_noteBase__11ajihb0 .
|
|
1868
|
+
.note_noteBase__11ajihb0 .shared_table__gxfui1y .shared_paragraph__gxfui13:first-child::first-letter {
|
|
1861
1869
|
float: none;
|
|
1862
1870
|
font-size: inherit;
|
|
1863
1871
|
margin-right: 0;
|
|
@@ -1876,7 +1884,7 @@
|
|
|
1876
1884
|
color: var(--rc-text-secondary);
|
|
1877
1885
|
text-align: center;
|
|
1878
1886
|
}
|
|
1879
|
-
.note_noteBase__11ajihb0 .
|
|
1887
|
+
.note_noteBase__11ajihb0 .shared_hr__gxfui1u {
|
|
1880
1888
|
border: none;
|
|
1881
1889
|
border-top: 1px solid var(--rc-hr-border);
|
|
1882
1890
|
opacity: 0.2;
|
|
@@ -1892,7 +1900,7 @@
|
|
|
1892
1900
|
overflow-x: auto;
|
|
1893
1901
|
padding: 1em 0;
|
|
1894
1902
|
}
|
|
1895
|
-
.note_noteBase__11ajihb0 .
|
|
1903
|
+
.note_noteBase__11ajihb0 .shared_spoiler__gxfui1z {
|
|
1896
1904
|
border-radius: var(--rc-radius-sm);
|
|
1897
1905
|
padding-inline: 0.25em;
|
|
1898
1906
|
}
|
|
@@ -1994,6 +2002,7 @@
|
|
|
1994
2002
|
}
|
|
1995
2003
|
.grid_cellEditable__1jyejpc9 {
|
|
1996
2004
|
outline: none;
|
|
2005
|
+
width: 100%;
|
|
1997
2006
|
}
|
|
1998
2007
|
.grid_container__1jyejpc0:hover .grid_toolbar__1jyejpc1, .grid_container__1jyejpc0:focus-within .grid_toolbar__1jyejpc1 {
|
|
1999
2008
|
opacity: 1;
|
|
@@ -3802,6 +3811,42 @@
|
|
|
3802
3811
|
flex-shrink: 0;
|
|
3803
3812
|
pointer-events: none;
|
|
3804
3813
|
color: var(--rc-text-secondary);
|
|
3814
|
+
}.styles_editor__17jtiqt0 {
|
|
3815
|
+
position: absolute;
|
|
3816
|
+
bottom: 4px;
|
|
3817
|
+
right: 8px;
|
|
3818
|
+
max-width: 60%;
|
|
3819
|
+
display: flex;
|
|
3820
|
+
justify-content: flex-end;
|
|
3821
|
+
pointer-events: auto;
|
|
3822
|
+
}
|
|
3823
|
+
.styles_input__17jtiqt1 {
|
|
3824
|
+
appearance: none;
|
|
3825
|
+
background: transparent;
|
|
3826
|
+
border: none;
|
|
3827
|
+
border-bottom: 1px dotted transparent;
|
|
3828
|
+
border-radius: 0;
|
|
3829
|
+
padding: 0 2px;
|
|
3830
|
+
margin: 0;
|
|
3831
|
+
width: 100%;
|
|
3832
|
+
min-width: 0;
|
|
3833
|
+
text-align: right;
|
|
3834
|
+
font-style: italic;
|
|
3835
|
+
font-family: var(--rc-font-family);
|
|
3836
|
+
font-size: 12px;
|
|
3837
|
+
color: var(--rc-text-secondary);
|
|
3838
|
+
outline: none;
|
|
3839
|
+
transition: border-color 120ms ease, background-color 120ms ease;
|
|
3840
|
+
}
|
|
3841
|
+
.styles_input__17jtiqt1::placeholder {
|
|
3842
|
+
color: var(--rc-text-quaternary);
|
|
3843
|
+
font-style: italic;
|
|
3844
|
+
}
|
|
3845
|
+
.styles_input__17jtiqt1:hover {
|
|
3846
|
+
border-bottom-color: var(--rc-text-quaternary);
|
|
3847
|
+
}
|
|
3848
|
+
.styles_input__17jtiqt1:focus {
|
|
3849
|
+
border-bottom-color: var(--rc-text-tertiary);
|
|
3805
3850
|
}.styles_scrollArea__m0xmg20 {
|
|
3806
3851
|
overflow: auto;
|
|
3807
3852
|
scrollbar-width: thin;
|
|
@@ -6313,6 +6358,7 @@
|
|
|
6313
6358
|
}
|
|
6314
6359
|
.rich-alert-content-editable {
|
|
6315
6360
|
outline: none;
|
|
6361
|
+
width: 100%;
|
|
6316
6362
|
}
|
|
6317
6363
|
.rich-alert-content > .rich-paragraph:first-child {
|
|
6318
6364
|
margin-top: 0;
|
|
@@ -6386,6 +6432,7 @@
|
|
|
6386
6432
|
}
|
|
6387
6433
|
.styles_bannerContentEditable__99sweq4 {
|
|
6388
6434
|
outline: none;
|
|
6435
|
+
width: 100%;
|
|
6389
6436
|
}
|
|
6390
6437
|
.styles_bannerType_type_note__99sweq6 {
|
|
6391
6438
|
background-color: color-mix(in srgb, var(--rc-alert-info) 8%, transparent);
|
|
@@ -6466,6 +6513,7 @@
|
|
|
6466
6513
|
}
|
|
6467
6514
|
.rich-banner-content-editable {
|
|
6468
6515
|
outline: none;
|
|
6516
|
+
width: 100%;
|
|
6469
6517
|
}
|
|
6470
6518
|
.rich-banner-content > .rich-paragraph:first-child {
|
|
6471
6519
|
margin-top: 0;
|