@nkzw/mdx-editor 0.1.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/LICENSE +21 -0
- package/README.md +86 -0
- package/UPSTREAM.md +21 -0
- package/dist/EditorIcon.js +75 -0
- package/dist/FormatConstants.js +20 -0
- package/dist/MDXEditor.js +189 -0
- package/dist/MarkdownEditor.js +281 -0
- package/dist/PersistentMarkdownEditor.js +358 -0
- package/dist/RealmWithPlugins.js +35 -0
- package/dist/core.d.ts +3232 -0
- package/dist/core.js +354 -0
- package/dist/defaultSvgIcons.js +371 -0
- package/dist/directive-editors/AdmonitionDirectiveDescriptor.js +28 -0
- package/dist/directive-editors/GenericDirectiveEditor.js +37 -0
- package/dist/exportMarkdownFromLexical.js +262 -0
- package/dist/horizontalRuleShortcut.js +37 -0
- package/dist/importMarkdownToLexical.js +172 -0
- package/dist/index.d.ts +86 -0
- package/dist/index.js +8 -0
- package/dist/jsx-editors/GenericJsxEditor.js +84 -0
- package/dist/mdastUtilHtmlComment.js +125 -0
- package/dist/persistence.d.ts +128 -0
- package/dist/persistence.js +4 -0
- package/dist/plugins/codeblock/CodeBlockNode.js +183 -0
- package/dist/plugins/codeblock/CodeBlockVisitor.js +14 -0
- package/dist/plugins/codeblock/MdastCodeVisitor.js +23 -0
- package/dist/plugins/codeblock/findCodeBlockDescriptor.js +8 -0
- package/dist/plugins/codeblock/index.js +46 -0
- package/dist/plugins/codemirror/CodeMirrorEditor.js +145 -0
- package/dist/plugins/codemirror/index.js +115 -0
- package/dist/plugins/codemirror/useCodeMirrorRef.js +101 -0
- package/dist/plugins/core/GenericHTMLNode.js +118 -0
- package/dist/plugins/core/LexicalGenericHTMLNodeVisitor.js +15 -0
- package/dist/plugins/core/LexicalLinebreakVisitor.js +10 -0
- package/dist/plugins/core/LexicalParagraphVisitor.js +10 -0
- package/dist/plugins/core/LexicalRootVisitor.js +10 -0
- package/dist/plugins/core/LexicalTextVisitor.js +160 -0
- package/dist/plugins/core/MdastBreakVisitor.js +10 -0
- package/dist/plugins/core/MdastFormattingVisitor.js +81 -0
- package/dist/plugins/core/MdastHTMLNode.js +120 -0
- package/dist/plugins/core/MdastHTMLVisitor.js +17 -0
- package/dist/plugins/core/MdastParagraphVisitor.js +23 -0
- package/dist/plugins/core/MdastRootVisitor.js +9 -0
- package/dist/plugins/core/MdastTextVisitor.js +16 -0
- package/dist/plugins/core/NestedLexicalEditor.js +221 -0
- package/dist/plugins/core/PropertyPopover.js +75 -0
- package/dist/plugins/core/SharedHistoryPlugin.js +10 -0
- package/dist/plugins/core/index.js +692 -0
- package/dist/plugins/core/ui/DownshiftAutoComplete.js +89 -0
- package/dist/plugins/core/ui/PopoverUtils.js +22 -0
- package/dist/plugins/diff-source/DiffSourceWrapper.js +24 -0
- package/dist/plugins/diff-source/DiffViewer.js +84 -0
- package/dist/plugins/diff-source/SourceEditor.js +60 -0
- package/dist/plugins/diff-source/index.js +27 -0
- package/dist/plugins/directives/DirectiveNode.js +107 -0
- package/dist/plugins/directives/DirectiveVisitor.js +10 -0
- package/dist/plugins/directives/MdastDirectiveVisitor.js +30 -0
- package/dist/plugins/directives/index.js +45 -0
- package/dist/plugins/frontmatter/FrontmatterEditor.js +137 -0
- package/dist/plugins/frontmatter/FrontmatterNode.js +70 -0
- package/dist/plugins/frontmatter/LexicalFrontmatterVisitor.js +10 -0
- package/dist/plugins/frontmatter/MdastFrontmatterVisitor.js +10 -0
- package/dist/plugins/frontmatter/index.js +113 -0
- package/dist/plugins/headings/LexicalHeadingVisitor.js +11 -0
- package/dist/plugins/headings/MdastHeadingVisitor.js +10 -0
- package/dist/plugins/headings/index.js +63 -0
- package/dist/plugins/image/EditImageToolbar.js +58 -0
- package/dist/plugins/image/ImageDialog.js +132 -0
- package/dist/plugins/image/ImageEditor.js +279 -0
- package/dist/plugins/image/ImageNode.js +187 -0
- package/dist/plugins/image/ImagePlaceholder.js +9 -0
- package/dist/plugins/image/ImageResizer.js +223 -0
- package/dist/plugins/image/LexicalImageVisitor.js +42 -0
- package/dist/plugins/image/MdastImageVisitor.js +91 -0
- package/dist/plugins/image/index.js +364 -0
- package/dist/plugins/jsx/LexicalJsxNode.js +103 -0
- package/dist/plugins/jsx/LexicalJsxVisitor.js +27 -0
- package/dist/plugins/jsx/LexicalMdxExpressionNode.js +130 -0
- package/dist/plugins/jsx/LexicalMdxExpressionVisitor.js +14 -0
- package/dist/plugins/jsx/MdastMdxExpressionVisitor.js +11 -0
- package/dist/plugins/jsx/MdastMdxJsEsmVisitor.js +8 -0
- package/dist/plugins/jsx/MdastMdxJsxElementVisitor.js +28 -0
- package/dist/plugins/jsx/index.js +97 -0
- package/dist/plugins/jsx/jsxTagName.js +7 -0
- package/dist/plugins/link/AutoLinkPlugin.js +18 -0
- package/dist/plugins/link/LexicalLinkVisitor.js +10 -0
- package/dist/plugins/link/MdastLinkVisitor.js +14 -0
- package/dist/plugins/link/index.js +34 -0
- package/dist/plugins/link-dialog/LinkDialog.js +262 -0
- package/dist/plugins/link-dialog/index.js +304 -0
- package/dist/plugins/lists/CheckListPlugin.js +270 -0
- package/dist/plugins/lists/LexicalListItemVisitor.js +41 -0
- package/dist/plugins/lists/LexicalListVisitor.js +13 -0
- package/dist/plugins/lists/MdastListItemVisitor.js +11 -0
- package/dist/plugins/lists/MdastListVisitor.js +19 -0
- package/dist/plugins/lists/NotesListItemNode.js +22 -0
- package/dist/plugins/lists/index.js +111 -0
- package/dist/plugins/markdown-shortcut/index.js +114 -0
- package/dist/plugins/maxlength/index.js +36 -0
- package/dist/plugins/quote/LexicalQuoteVisitor.js +10 -0
- package/dist/plugins/quote/MdastBlockQuoteVisitor.js +10 -0
- package/dist/plugins/quote/index.js +18 -0
- package/dist/plugins/remote/index.js +52 -0
- package/dist/plugins/search/index.js +360 -0
- package/dist/plugins/table/LexicalTableVisitor.js +10 -0
- package/dist/plugins/table/MdastTableVisitor.js +10 -0
- package/dist/plugins/table/TableEditor.js +527 -0
- package/dist/plugins/table/TableNode.js +208 -0
- package/dist/plugins/table/index.js +66 -0
- package/dist/plugins/thematic-break/LexicalThematicBreakVisitor.js +10 -0
- package/dist/plugins/thematic-break/MdastThematicBreakVisitor.js +10 -0
- package/dist/plugins/thematic-break/index.js +27 -0
- package/dist/plugins/toolbar/components/BlockTypeSelect.js +62 -0
- package/dist/plugins/toolbar/components/BoldItalicUnderlineToggles.js +98 -0
- package/dist/plugins/toolbar/components/ChangeAdmonitionType.js +43 -0
- package/dist/plugins/toolbar/components/ChangeCodeMirrorLanguage.js +42 -0
- package/dist/plugins/toolbar/components/CodeToggle.js +21 -0
- package/dist/plugins/toolbar/components/CreateLink.js +24 -0
- package/dist/plugins/toolbar/components/DiffSourceToggleWrapper.js +42 -0
- package/dist/plugins/toolbar/components/HighlightToggle.js +28 -0
- package/dist/plugins/toolbar/components/InsertAdmonition.js +34 -0
- package/dist/plugins/toolbar/components/InsertCodeBlock.js +23 -0
- package/dist/plugins/toolbar/components/InsertFrontmatter.js +28 -0
- package/dist/plugins/toolbar/components/InsertImage.js +29 -0
- package/dist/plugins/toolbar/components/InsertTable.js +25 -0
- package/dist/plugins/toolbar/components/InsertThematicBreak.js +23 -0
- package/dist/plugins/toolbar/components/KitchenSinkToolbar.js +82 -0
- package/dist/plugins/toolbar/components/ListsToggle.js +29 -0
- package/dist/plugins/toolbar/components/UndoRedo.js +60 -0
- package/dist/plugins/toolbar/index.js +32 -0
- package/dist/plugins/toolbar/primitives/DialogButton.js +130 -0
- package/dist/plugins/toolbar/primitives/TooltipWrap.js +17 -0
- package/dist/plugins/toolbar/primitives/select.js +76 -0
- package/dist/plugins/toolbar/primitives/toolbar.js +144 -0
- package/dist/registerCodeBoundaryEscape.js +40 -0
- package/dist/styles/lexical-theme.module.css.js +62 -0
- package/dist/styles/lexicalTheme.js +32 -0
- package/dist/styles/ui.module.css.js +296 -0
- package/dist/styles.css +2838 -0
- package/dist/utils/detectMac.js +16 -0
- package/dist/utils/fp.js +44 -0
- package/dist/utils/isPartOftheEditorUI.js +12 -0
- package/dist/utils/lexicalHelpers.js +185 -0
- package/dist/utils/makeHslTransparent.js +6 -0
- package/dist/utils/mergeStyleAttributes.js +22 -0
- package/dist/utils/uuid4.js +10 -0
- package/dist/utils/voidEmitter.js +15 -0
- package/package.json +133 -0
package/dist/styles.css
ADDED
|
@@ -0,0 +1,2838 @@
|
|
|
1
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
2
|
+
--blue-1: #fbfdff;
|
|
3
|
+
--blue-2: #f4faff;
|
|
4
|
+
--blue-3: #e6f4fe;
|
|
5
|
+
--blue-4: #d5efff;
|
|
6
|
+
--blue-5: #c2e5ff;
|
|
7
|
+
--blue-6: #acd8fc;
|
|
8
|
+
--blue-7: #8ec8f6;
|
|
9
|
+
--blue-8: #5eb1ef;
|
|
10
|
+
--blue-9: #0090ff;
|
|
11
|
+
--blue-10: #0588f0;
|
|
12
|
+
--blue-11: #0d74ce;
|
|
13
|
+
--blue-12: #113264;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
17
|
+
@media (color-gamut: p3) {
|
|
18
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
19
|
+
--blue-1: color(display-p3 0.986 0.992 0.999);
|
|
20
|
+
--blue-2: color(display-p3 0.96 0.979 0.998);
|
|
21
|
+
--blue-3: color(display-p3 0.912 0.956 0.991);
|
|
22
|
+
--blue-4: color(display-p3 0.853 0.932 1);
|
|
23
|
+
--blue-5: color(display-p3 0.788 0.894 0.998);
|
|
24
|
+
--blue-6: color(display-p3 0.709 0.843 0.976);
|
|
25
|
+
--blue-7: color(display-p3 0.606 0.777 0.947);
|
|
26
|
+
--blue-8: color(display-p3 0.451 0.688 0.917);
|
|
27
|
+
--blue-9: color(display-p3 0.247 0.556 0.969);
|
|
28
|
+
--blue-10: color(display-p3 0.234 0.523 0.912);
|
|
29
|
+
--blue-11: color(display-p3 0.15 0.44 0.84);
|
|
30
|
+
--blue-12: color(display-p3 0.102 0.193 0.379);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
._dark_6j9u9_1, ._dark-theme_6j9u9_1 {
|
|
36
|
+
--blue-1: #0d1520;
|
|
37
|
+
--blue-2: #111927;
|
|
38
|
+
--blue-3: #0d2847;
|
|
39
|
+
--blue-4: #003362;
|
|
40
|
+
--blue-5: #004074;
|
|
41
|
+
--blue-6: #104d87;
|
|
42
|
+
--blue-7: #205d9e;
|
|
43
|
+
--blue-8: #2870bd;
|
|
44
|
+
--blue-9: #0090ff;
|
|
45
|
+
--blue-10: #3b9eff;
|
|
46
|
+
--blue-11: #70b8ff;
|
|
47
|
+
--blue-12: #c2e6ff;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
51
|
+
@media (color-gamut: p3) {
|
|
52
|
+
._dark_6j9u9_1, ._dark-theme_6j9u9_1 {
|
|
53
|
+
--blue-1: color(display-p3 0.057 0.081 0.122);
|
|
54
|
+
--blue-2: color(display-p3 0.072 0.098 0.147);
|
|
55
|
+
--blue-3: color(display-p3 0.078 0.154 0.27);
|
|
56
|
+
--blue-4: color(display-p3 0.033 0.197 0.37);
|
|
57
|
+
--blue-5: color(display-p3 0.08 0.245 0.441);
|
|
58
|
+
--blue-6: color(display-p3 0.14 0.298 0.511);
|
|
59
|
+
--blue-7: color(display-p3 0.195 0.361 0.6);
|
|
60
|
+
--blue-8: color(display-p3 0.239 0.434 0.72);
|
|
61
|
+
--blue-9: color(display-p3 0.247 0.556 0.969);
|
|
62
|
+
--blue-10: color(display-p3 0.344 0.612 0.973);
|
|
63
|
+
--blue-11: color(display-p3 0.49 0.72 1);
|
|
64
|
+
--blue-12: color(display-p3 0.788 0.898 0.99);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
70
|
+
--slate-1: #fcfcfd;
|
|
71
|
+
--slate-2: #f9f9fb;
|
|
72
|
+
--slate-3: #f0f0f3;
|
|
73
|
+
--slate-4: #e8e8ec;
|
|
74
|
+
--slate-5: #e0e1e6;
|
|
75
|
+
--slate-6: #d9d9e0;
|
|
76
|
+
--slate-7: #cdced6;
|
|
77
|
+
--slate-8: #b9bbc6;
|
|
78
|
+
--slate-9: #8b8d98;
|
|
79
|
+
--slate-10: #80838d;
|
|
80
|
+
--slate-11: #60646c;
|
|
81
|
+
--slate-12: #1c2024;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
85
|
+
@media (color-gamut: p3) {
|
|
86
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
87
|
+
--slate-1: color(display-p3 0.988 0.988 0.992);
|
|
88
|
+
--slate-2: color(display-p3 0.976 0.976 0.984);
|
|
89
|
+
--slate-3: color(display-p3 0.94 0.941 0.953);
|
|
90
|
+
--slate-4: color(display-p3 0.908 0.909 0.925);
|
|
91
|
+
--slate-5: color(display-p3 0.88 0.881 0.901);
|
|
92
|
+
--slate-6: color(display-p3 0.85 0.852 0.876);
|
|
93
|
+
--slate-7: color(display-p3 0.805 0.808 0.838);
|
|
94
|
+
--slate-8: color(display-p3 0.727 0.733 0.773);
|
|
95
|
+
--slate-9: color(display-p3 0.547 0.553 0.592);
|
|
96
|
+
--slate-10: color(display-p3 0.503 0.512 0.549);
|
|
97
|
+
--slate-11: color(display-p3 0.379 0.392 0.421);
|
|
98
|
+
--slate-12: color(display-p3 0.113 0.125 0.14);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
._dark_6j9u9_1, ._dark-theme_6j9u9_1 {
|
|
104
|
+
--slate-1: #111113;
|
|
105
|
+
--slate-2: #18191b;
|
|
106
|
+
--slate-3: #212225;
|
|
107
|
+
--slate-4: #272a2d;
|
|
108
|
+
--slate-5: #2e3135;
|
|
109
|
+
--slate-6: #363a3f;
|
|
110
|
+
--slate-7: #43484e;
|
|
111
|
+
--slate-8: #5a6169;
|
|
112
|
+
--slate-9: #696e77;
|
|
113
|
+
--slate-10: #777b84;
|
|
114
|
+
--slate-11: #b0b4ba;
|
|
115
|
+
--slate-12: #edeef0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
119
|
+
@media (color-gamut: p3) {
|
|
120
|
+
._dark_6j9u9_1, ._dark-theme_6j9u9_1 {
|
|
121
|
+
--slate-1: color(display-p3 0.067 0.067 0.074);
|
|
122
|
+
--slate-2: color(display-p3 0.095 0.098 0.105);
|
|
123
|
+
--slate-3: color(display-p3 0.13 0.135 0.145);
|
|
124
|
+
--slate-4: color(display-p3 0.156 0.163 0.176);
|
|
125
|
+
--slate-5: color(display-p3 0.183 0.191 0.206);
|
|
126
|
+
--slate-6: color(display-p3 0.215 0.226 0.244);
|
|
127
|
+
--slate-7: color(display-p3 0.265 0.28 0.302);
|
|
128
|
+
--slate-8: color(display-p3 0.357 0.381 0.409);
|
|
129
|
+
--slate-9: color(display-p3 0.415 0.431 0.463);
|
|
130
|
+
--slate-10: color(display-p3 0.469 0.483 0.514);
|
|
131
|
+
--slate-11: color(display-p3 0.692 0.704 0.728);
|
|
132
|
+
--slate-12: color(display-p3 0.93 0.933 0.94);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
138
|
+
--grass-1: #fbfefb;
|
|
139
|
+
--grass-2: #f5fbf5;
|
|
140
|
+
--grass-3: #e9f6e9;
|
|
141
|
+
--grass-4: #daf1db;
|
|
142
|
+
--grass-5: #c9e8ca;
|
|
143
|
+
--grass-6: #b2ddb5;
|
|
144
|
+
--grass-7: #94ce9a;
|
|
145
|
+
--grass-8: #65ba74;
|
|
146
|
+
--grass-9: #46a758;
|
|
147
|
+
--grass-10: #3e9b4f;
|
|
148
|
+
--grass-11: #2a7e3b;
|
|
149
|
+
--grass-12: #203c25;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
153
|
+
@media (color-gamut: p3) {
|
|
154
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
155
|
+
--grass-1: color(display-p3 0.986 0.996 0.985);
|
|
156
|
+
--grass-2: color(display-p3 0.966 0.983 0.964);
|
|
157
|
+
--grass-3: color(display-p3 0.923 0.965 0.917);
|
|
158
|
+
--grass-4: color(display-p3 0.872 0.94 0.865);
|
|
159
|
+
--grass-5: color(display-p3 0.811 0.908 0.802);
|
|
160
|
+
--grass-6: color(display-p3 0.733 0.864 0.724);
|
|
161
|
+
--grass-7: color(display-p3 0.628 0.803 0.622);
|
|
162
|
+
--grass-8: color(display-p3 0.477 0.72 0.482);
|
|
163
|
+
--grass-9: color(display-p3 0.38 0.647 0.378);
|
|
164
|
+
--grass-10: color(display-p3 0.344 0.598 0.342);
|
|
165
|
+
--grass-11: color(display-p3 0.263 0.488 0.261);
|
|
166
|
+
--grass-12: color(display-p3 0.151 0.233 0.153);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
172
|
+
--cyan-1: #fafdfe;
|
|
173
|
+
--cyan-2: #f2fafb;
|
|
174
|
+
--cyan-3: #def7f9;
|
|
175
|
+
--cyan-4: #caf1f6;
|
|
176
|
+
--cyan-5: #b5e9f0;
|
|
177
|
+
--cyan-6: #9ddde7;
|
|
178
|
+
--cyan-7: #7dcedc;
|
|
179
|
+
--cyan-8: #3db9cf;
|
|
180
|
+
--cyan-9: #00a2c7;
|
|
181
|
+
--cyan-10: #0797b9;
|
|
182
|
+
--cyan-11: #107d98;
|
|
183
|
+
--cyan-12: #0d3c48;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
187
|
+
@media (color-gamut: p3) {
|
|
188
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
189
|
+
--cyan-1: color(display-p3 0.982 0.992 0.996);
|
|
190
|
+
--cyan-2: color(display-p3 0.955 0.981 0.984);
|
|
191
|
+
--cyan-3: color(display-p3 0.888 0.965 0.975);
|
|
192
|
+
--cyan-4: color(display-p3 0.821 0.941 0.959);
|
|
193
|
+
--cyan-5: color(display-p3 0.751 0.907 0.935);
|
|
194
|
+
--cyan-6: color(display-p3 0.671 0.862 0.9);
|
|
195
|
+
--cyan-7: color(display-p3 0.564 0.8 0.854);
|
|
196
|
+
--cyan-8: color(display-p3 0.388 0.715 0.798);
|
|
197
|
+
--cyan-9: color(display-p3 0.282 0.627 0.765);
|
|
198
|
+
--cyan-10: color(display-p3 0.264 0.583 0.71);
|
|
199
|
+
--cyan-11: color(display-p3 0.08 0.48 0.63);
|
|
200
|
+
--cyan-12: color(display-p3 0.108 0.232 0.277);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
206
|
+
--amber-1: #fefdfb;
|
|
207
|
+
--amber-2: #fefbe9;
|
|
208
|
+
--amber-3: #fff7c2;
|
|
209
|
+
--amber-4: #ffee9c;
|
|
210
|
+
--amber-5: #fbe577;
|
|
211
|
+
--amber-6: #f3d673;
|
|
212
|
+
--amber-7: #e9c162;
|
|
213
|
+
--amber-8: #e2a336;
|
|
214
|
+
--amber-9: #ffc53d;
|
|
215
|
+
--amber-10: #ffba18;
|
|
216
|
+
--amber-11: #ab6400;
|
|
217
|
+
--amber-12: #4f3422;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
221
|
+
@media (color-gamut: p3) {
|
|
222
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
223
|
+
--amber-1: color(display-p3 0.995 0.992 0.985);
|
|
224
|
+
--amber-2: color(display-p3 0.994 0.986 0.921);
|
|
225
|
+
--amber-3: color(display-p3 0.994 0.969 0.782);
|
|
226
|
+
--amber-4: color(display-p3 0.989 0.937 0.65);
|
|
227
|
+
--amber-5: color(display-p3 0.97 0.902 0.527);
|
|
228
|
+
--amber-6: color(display-p3 0.936 0.844 0.506);
|
|
229
|
+
--amber-7: color(display-p3 0.89 0.762 0.443);
|
|
230
|
+
--amber-8: color(display-p3 0.85 0.65 0.3);
|
|
231
|
+
--amber-9: color(display-p3 1 0.77 0.26);
|
|
232
|
+
--amber-10: color(display-p3 0.959 0.741 0.274);
|
|
233
|
+
--amber-11: color(display-p3 0.64 0.4 0);
|
|
234
|
+
--amber-12: color(display-p3 0.294 0.208 0.145);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
240
|
+
--red-1: #fffcfc;
|
|
241
|
+
--red-2: #fff7f7;
|
|
242
|
+
--red-3: #feebec;
|
|
243
|
+
--red-4: #ffdbdc;
|
|
244
|
+
--red-5: #ffcdce;
|
|
245
|
+
--red-6: #fdbdbe;
|
|
246
|
+
--red-7: #f4a9aa;
|
|
247
|
+
--red-8: #eb8e90;
|
|
248
|
+
--red-9: #e5484d;
|
|
249
|
+
--red-10: #dc3e42;
|
|
250
|
+
--red-11: #ce2c31;
|
|
251
|
+
--red-12: #641723;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
255
|
+
@media (color-gamut: p3) {
|
|
256
|
+
:root, ._light_6j9u9_1, ._light-theme_6j9u9_1 {
|
|
257
|
+
--red-1: color(display-p3 0.998 0.989 0.988);
|
|
258
|
+
--red-2: color(display-p3 0.995 0.971 0.971);
|
|
259
|
+
--red-3: color(display-p3 0.985 0.925 0.925);
|
|
260
|
+
--red-4: color(display-p3 0.999 0.866 0.866);
|
|
261
|
+
--red-5: color(display-p3 0.984 0.812 0.811);
|
|
262
|
+
--red-6: color(display-p3 0.955 0.751 0.749);
|
|
263
|
+
--red-7: color(display-p3 0.915 0.675 0.672);
|
|
264
|
+
--red-8: color(display-p3 0.872 0.575 0.572);
|
|
265
|
+
--red-9: color(display-p3 0.83 0.329 0.324);
|
|
266
|
+
--red-10: color(display-p3 0.798 0.294 0.285);
|
|
267
|
+
--red-11: color(display-p3 0.744 0.234 0.222);
|
|
268
|
+
--red-12: color(display-p3 0.36 0.115 0.143);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
._bold_6j9u9_10 {
|
|
274
|
+
font-weight: bold;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
._italic_6j9u9_14 {
|
|
278
|
+
font-style: italic;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
._underline_6j9u9_18 {
|
|
282
|
+
text-decoration: underline;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
._bold_6j9u9_10 {
|
|
286
|
+
font-weight: 700;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
._italic_6j9u9_14 {
|
|
290
|
+
font-style: italic;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
._underline_6j9u9_18 {
|
|
294
|
+
text-decoration: underline
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
._strikethrough_6j9u9_34 {
|
|
298
|
+
text-decoration: line-through
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
._underlineStrikethrough_6j9u9_38 {
|
|
302
|
+
text-decoration: underline line-through
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
._subscript_6j9u9_42 {
|
|
306
|
+
font-size: .8em;
|
|
307
|
+
vertical-align: sub !important
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
._superscript_6j9u9_47 {
|
|
311
|
+
font-size: .8em;
|
|
312
|
+
vertical-align: super
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
._code_6j9u9_52 {
|
|
316
|
+
background-color: var(--baseBg);
|
|
317
|
+
padding: 1px .25rem;
|
|
318
|
+
font-family: var(--font-mono);
|
|
319
|
+
font-size: 94%
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
._quote_6j9u9_59 {
|
|
323
|
+
border-inline-start: 3px solid var(--baseBorder);
|
|
324
|
+
padding-inline-start: var(--spacing-4);
|
|
325
|
+
margin-inline-start: 0;
|
|
326
|
+
color: var(--baseText);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
._nestedListItem_6j9u9_66 {
|
|
330
|
+
list-style: none;
|
|
331
|
+
list-style-type: none;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
._nestedListItem_6j9u9_66:before,
|
|
335
|
+
._nestedListItem_6j9u9_66:after {
|
|
336
|
+
display: none;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
._listitem_6j9u9_76 {
|
|
340
|
+
margin: var(--spacing-2) 0;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
._listItemChecked_6j9u9_80,
|
|
344
|
+
._listItemUnchecked_6j9u9_81 {
|
|
345
|
+
position: relative;
|
|
346
|
+
margin-left: 0;
|
|
347
|
+
margin-right: 0;
|
|
348
|
+
margin-inline-start: -1rem;
|
|
349
|
+
padding-left: var(--spacing-6);
|
|
350
|
+
padding-right: var(--spacing-6);
|
|
351
|
+
list-style-type: none;
|
|
352
|
+
outline: none;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
._listItemChecked_6j9u9_80 {
|
|
356
|
+
text-decoration: line-through;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
._listItemUnchecked_6j9u9_81:before,
|
|
360
|
+
._listItemChecked_6j9u9_80:before {
|
|
361
|
+
content: '';
|
|
362
|
+
width: var(--spacing-4);
|
|
363
|
+
height: var(--spacing-4);
|
|
364
|
+
top: 0;
|
|
365
|
+
left: 0;
|
|
366
|
+
cursor: pointer;
|
|
367
|
+
display: block;
|
|
368
|
+
background-size: cover;
|
|
369
|
+
position: absolute;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
._listItemUnchecked_6j9u9_81[dir='rtl']:before,
|
|
373
|
+
._listItemChecked_6j9u9_80[dir='rtl']:before {
|
|
374
|
+
left: auto;
|
|
375
|
+
right: 0;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
._listItemUnchecked_6j9u9_81:focus:before,
|
|
379
|
+
._listItemChecked_6j9u9_80:focus:before {
|
|
380
|
+
box-shadow: 0 0 0 2px var(--accentBgActive);
|
|
381
|
+
border-radius: var(--radius-small);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
._listItemUnchecked_6j9u9_81:before {
|
|
385
|
+
border: 1px solid var(--baseBorder);
|
|
386
|
+
border-radius: var(--radius-small);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
._listItemChecked_6j9u9_80:before {
|
|
390
|
+
border: 1px solid var(--accentBorder);
|
|
391
|
+
border-radius: var(--radius-small);
|
|
392
|
+
background-color: var(--accentSolid);
|
|
393
|
+
background-repeat: no-repeat;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
._listItemChecked_6j9u9_80:after {
|
|
397
|
+
content: '';
|
|
398
|
+
cursor: pointer;
|
|
399
|
+
border-color: var(--baseBase);
|
|
400
|
+
border-style: solid;
|
|
401
|
+
position: absolute;
|
|
402
|
+
display: block;
|
|
403
|
+
top: var(--spacing-0_5);
|
|
404
|
+
width: var(--spacing-1);
|
|
405
|
+
left: var(--spacing-1_5);
|
|
406
|
+
right: var(--spacing-1_5);
|
|
407
|
+
height: var(--spacing-2);
|
|
408
|
+
transform: rotate(45deg);
|
|
409
|
+
border-width: 0 var(--spacing-0_5) var(--spacing-0_5) 0;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
._nestedListItem_6j9u9_66 {
|
|
413
|
+
list-style-type: none;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
._nestedListItem_6j9u9_66:before,
|
|
417
|
+
._nestedListItem_6j9u9_66:after {
|
|
418
|
+
display: none;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
._admonitionDanger_6j9u9_158,
|
|
422
|
+
._admonitionInfo_6j9u9_159,
|
|
423
|
+
._admonitionNote_6j9u9_160,
|
|
424
|
+
._admonitionTip_6j9u9_161,
|
|
425
|
+
._admonitionCaution_6j9u9_162 {
|
|
426
|
+
padding: var(--spacing-2);
|
|
427
|
+
margin-top: var(--spacing-2);
|
|
428
|
+
margin-bottom: var(--spacing-2);
|
|
429
|
+
border-left: 3px solid var(--admonitionBorder);
|
|
430
|
+
background-color: var(--admonitionBg);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
._admonitionInfo_6j9u9_159 {
|
|
434
|
+
--admonitionBorder: var(--admonitionInfoBorder);
|
|
435
|
+
--admonitionBg: var(--admonitionInfoBg);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
._admonitionTip_6j9u9_161 {
|
|
439
|
+
--admonitionBorder: var(--admonitionTipBorder);
|
|
440
|
+
--admonitionBg: var(--admonitionTipBg);
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
._admonitionCaution_6j9u9_162 {
|
|
444
|
+
--admonitionBorder: var(--admonitionCautionBorder);
|
|
445
|
+
--admonitionBg: var(--admonitionCautionBg);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
._admonitionDanger_6j9u9_158 {
|
|
449
|
+
--admonitionBorder: var(--admonitionDangerBorder);
|
|
450
|
+
--admonitionBg: var(--admonitionDangerBg);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
._admonitionNote_6j9u9_160 {
|
|
454
|
+
--admonitionBorder: var(--admonitionNoteBorder);
|
|
455
|
+
--admonitionBg: var(--admonitionNoteBg);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
._mdxExpression_6j9u9_195 {
|
|
459
|
+
font-family: var(--font-mono);
|
|
460
|
+
font-size: 84%;
|
|
461
|
+
color: var(--accentText);
|
|
462
|
+
|
|
463
|
+
& input:focus-visible {
|
|
464
|
+
outline: none;
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
._editorRoot_17t84_85 {
|
|
468
|
+
--accentBase: var(--blue-1);
|
|
469
|
+
--accentBgSubtle: var(--blue-2);
|
|
470
|
+
--accentBg: var(--blue-3);
|
|
471
|
+
--accentBgHover: var(--blue-4);
|
|
472
|
+
--accentBgActive: var(--blue-5);
|
|
473
|
+
--accentLine: var(--blue-6);
|
|
474
|
+
--accentBorder: var(--blue-7);
|
|
475
|
+
--accentBorderHover: var(--blue-8);
|
|
476
|
+
--accentSolid: var(--blue-9);
|
|
477
|
+
--accentSolidHover: var(--blue-10);
|
|
478
|
+
--accentText: var(--blue-11);
|
|
479
|
+
--accentTextContrast: var(--blue-12);
|
|
480
|
+
|
|
481
|
+
--basePageBg: white;
|
|
482
|
+
--baseBase: var(--slate-1);
|
|
483
|
+
--baseBgSubtle: var(--slate-2);
|
|
484
|
+
--baseBg: var(--slate-3);
|
|
485
|
+
--baseBgHover: var(--slate-4);
|
|
486
|
+
--baseBgActive: var(--slate-5);
|
|
487
|
+
--baseLine: var(--slate-6);
|
|
488
|
+
--baseBorder: var(--slate-7);
|
|
489
|
+
--baseBorderHover: var(--slate-8);
|
|
490
|
+
--baseSolid: var(--slate-9);
|
|
491
|
+
--baseSolidHover: var(--slate-10);
|
|
492
|
+
--baseText: var(--slate-11);
|
|
493
|
+
--baseTextContrast: var(--slate-12);
|
|
494
|
+
|
|
495
|
+
--admonitionTipBg: var(--cyan-4);
|
|
496
|
+
--admonitionTipBorder: var(--cyan-8);
|
|
497
|
+
|
|
498
|
+
--admonitionInfoBg: var(--grass-4);
|
|
499
|
+
--admonitionInfoBorder: var(--grass-8);
|
|
500
|
+
|
|
501
|
+
--admonitionCautionBg: var(--amber-4);
|
|
502
|
+
--admonitionCautionBorder: var(--amber-8);
|
|
503
|
+
|
|
504
|
+
--admonitionDangerBg: var(--red-4);
|
|
505
|
+
--admonitionDangerBorder: var(--red-8);
|
|
506
|
+
|
|
507
|
+
--admonitionNoteBg: var(--slate-4);
|
|
508
|
+
--admonitionNoteBorder: var(--slate-8);
|
|
509
|
+
|
|
510
|
+
--error-color: var(--red-10);
|
|
511
|
+
|
|
512
|
+
--spacing-0: 0px;
|
|
513
|
+
--spacing-px: 1px;
|
|
514
|
+
--spacing-0_5: 0.125rem;
|
|
515
|
+
--spacing-1: 0.25rem;
|
|
516
|
+
--spacing-1_5: 0.375rem;
|
|
517
|
+
--spacing-2: 0.5rem;
|
|
518
|
+
--spacing-2_5: 0.625rem;
|
|
519
|
+
--spacing-3: 0.75rem;
|
|
520
|
+
--spacing-3_5: 0.875rem;
|
|
521
|
+
--spacing-4: 1rem;
|
|
522
|
+
--spacing-5: 1.25rem;
|
|
523
|
+
--spacing-6: 1.5rem;
|
|
524
|
+
--spacing-7: 1.75rem;
|
|
525
|
+
--spacing-8: 2rem;
|
|
526
|
+
--spacing-9: 2.25rem;
|
|
527
|
+
--spacing-10: 2.5rem;
|
|
528
|
+
--spacing-11: 2.75rem;
|
|
529
|
+
--spacing-12: 3rem;
|
|
530
|
+
--spacing-14: 3.5rem;
|
|
531
|
+
--spacing-16: 4rem;
|
|
532
|
+
--spacing-20: 5rem;
|
|
533
|
+
--spacing-24: 6rem;
|
|
534
|
+
--spacing-28: 7rem;
|
|
535
|
+
--spacing-32: 8rem;
|
|
536
|
+
--spacing-36: 9rem;
|
|
537
|
+
--spacing-40: 10rem;
|
|
538
|
+
--spacing-44: 11rem;
|
|
539
|
+
--spacing-48: 12rem;
|
|
540
|
+
--spacing-52: 13rem;
|
|
541
|
+
--spacing-56: 14rem;
|
|
542
|
+
--spacing-60: 15rem;
|
|
543
|
+
--spacing-64: 16rem;
|
|
544
|
+
--spacing-72: 18rem;
|
|
545
|
+
--spacing-80: 20rem;
|
|
546
|
+
--spacing-96: 24rem;
|
|
547
|
+
|
|
548
|
+
--radius-none: 0px;
|
|
549
|
+
--radius-small: var(--spacing-0_5);
|
|
550
|
+
--radius-base: var(--spacing-1);
|
|
551
|
+
--radius-medium: var(--spacing-1_5);
|
|
552
|
+
--radius-large: var(--spacing-2);
|
|
553
|
+
--radius-extra-large: var(--spacing-3);
|
|
554
|
+
--radius-full: 9999px;
|
|
555
|
+
|
|
556
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
|
|
557
|
+
--font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
|
|
558
|
+
sans-serif;
|
|
559
|
+
|
|
560
|
+
--text-base: 1rem;
|
|
561
|
+
--text-sm: 0.875rem;
|
|
562
|
+
--text-xs: 0.75rem;
|
|
563
|
+
--text-xxs: 0.6rem;
|
|
564
|
+
|
|
565
|
+
font-family: var(--font-body);
|
|
566
|
+
color: var(--baseText);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
._editorWrapper_17t84_187 {
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
._nestedListItem_17t84_190 {
|
|
573
|
+
list-style: none;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
._toolbarRoot_17t84_194 {
|
|
577
|
+
z-index: 2;
|
|
578
|
+
display: flex;
|
|
579
|
+
flex-direction: row;
|
|
580
|
+
gap: var(--spacing-1);
|
|
581
|
+
border-radius: var(--radius-medium);
|
|
582
|
+
padding: var(--spacing-1_5);
|
|
583
|
+
align-items: center;
|
|
584
|
+
overflow-x: auto;
|
|
585
|
+
position: sticky;
|
|
586
|
+
top: 0;
|
|
587
|
+
background-color: var(--baseBg);
|
|
588
|
+
width: inherit;
|
|
589
|
+
|
|
590
|
+
& div[role='separator'] {
|
|
591
|
+
margin: var(--spacing-2) var(--spacing-1);
|
|
592
|
+
border-left: 1px solid var(--baseBorder);
|
|
593
|
+
border-right: 1px solid var(--baseBase);
|
|
594
|
+
height: var(--spacing-4);
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
& svg {
|
|
598
|
+
color: var(--baseTextContrast);
|
|
599
|
+
display: block;
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
._readOnlyToolbarRoot_17t84_221 {
|
|
604
|
+
pointer-events: none;
|
|
605
|
+
background: var(--baseBase);
|
|
606
|
+
|
|
607
|
+
& > div {
|
|
608
|
+
opacity: 0.5;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
._toolbarModeSwitch_17t84_230 {
|
|
613
|
+
opacity: 1 !important;
|
|
614
|
+
margin-left: auto;
|
|
615
|
+
align-self: stretch;
|
|
616
|
+
align-items: stretch;
|
|
617
|
+
display: flex;
|
|
618
|
+
border: 1px solid var(--baseBg);
|
|
619
|
+
border-radius: var(--radius-medium);
|
|
620
|
+
font-size: var(--text-xs);
|
|
621
|
+
|
|
622
|
+
._toolbarToggleItem_17t84_240 {
|
|
623
|
+
padding-inline-end: var(--spacing-4);
|
|
624
|
+
padding-inline-start: var(--spacing-4);
|
|
625
|
+
|
|
626
|
+
&:active,
|
|
627
|
+
&[data-state='on'] {
|
|
628
|
+
background-color: var(--baseBorder);
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
._toolbarGroupOfGroups_17t84_251 {
|
|
634
|
+
display: flex;
|
|
635
|
+
margin: 0 var(--spacing-1);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
._toolbarToggleSingleGroup_17t84_256:first-of-type ._toolbarToggleItem_17t84_240:only-child,
|
|
639
|
+
._toolbarToggleSingleGroup_17t84_256:only-child ._toolbarToggleItem_17t84_240:first-child,
|
|
640
|
+
._toolbarModeSwitch_17t84_230 ._toolbarToggleItem_17t84_240:first-child {
|
|
641
|
+
border-top-left-radius: var(--radius-base);
|
|
642
|
+
border-bottom-left-radius: var(--radius-base);
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
._toolbarToggleSingleGroup_17t84_256:last-of-type ._toolbarToggleItem_17t84_240:only-child,
|
|
646
|
+
._toolbarToggleSingleGroup_17t84_256:only-child ._toolbarToggleItem_17t84_240:last-child,
|
|
647
|
+
._toolbarModeSwitch_17t84_230 ._toolbarToggleItem_17t84_240:last-child {
|
|
648
|
+
border-top-right-radius: var(--radius-base);
|
|
649
|
+
border-bottom-right-radius: var(--radius-base);
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
._toolbarToggleItem_17t84_240,
|
|
653
|
+
._toolbarButton_17t84_271 {
|
|
654
|
+
border: 0;
|
|
655
|
+
background-color: transparent;
|
|
656
|
+
font-size: inherit;
|
|
657
|
+
appearance: none;
|
|
658
|
+
all: unset;
|
|
659
|
+
box-sizing: border-box;
|
|
660
|
+
cursor: default;
|
|
661
|
+
padding: var(--spacing-0_5);
|
|
662
|
+
|
|
663
|
+
@media (hover: hover) {
|
|
664
|
+
&:hover {
|
|
665
|
+
background-color: var(--baseBgActive);
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
&:active svg {
|
|
670
|
+
transform: translate(1px, 1px);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
&[data-state='on'],
|
|
674
|
+
&:active {
|
|
675
|
+
color: var(--baseTextContrast);
|
|
676
|
+
background-color: var(--baseBgActive);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
&[data-disabled] {
|
|
680
|
+
pointer-events: none;
|
|
681
|
+
& svg {
|
|
682
|
+
color: var(--baseBorderHover);
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
._toolbarButton_17t84_271 {
|
|
688
|
+
border-radius: var(--radius-base);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
._toolbarButton_17t84_271 + ._toolbarButton_17t84_271 {
|
|
692
|
+
margin-left: var(--spacing-1);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
._activeToolbarButton_17t84_307 {
|
|
696
|
+
color: var(--accentText);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
._toolbarToggleSingleGroup_17t84_256 {
|
|
700
|
+
display: flex;
|
|
701
|
+
align-items: center;
|
|
702
|
+
white-space: nowrap;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
._toolbarNodeKindSelectContainer_17t84_317,
|
|
706
|
+
._toolbarButtonDropdownContainer_17t84_318,
|
|
707
|
+
._toolbarCodeBlockLanguageSelectContent_17t84_319,
|
|
708
|
+
._selectContainer_17t84_320 {
|
|
709
|
+
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.2));
|
|
710
|
+
z-index: 3;
|
|
711
|
+
width: var(--spacing-36);
|
|
712
|
+
border-bottom-left-radius: var(--radius-base);
|
|
713
|
+
border-bottom-right-radius: var(--radius-base);
|
|
714
|
+
background-color: var(--basePageBg);
|
|
715
|
+
font-size: var(--text-sm);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
._toolbarButtonDropdownContainer_17t84_318 {
|
|
719
|
+
border-top-right-radius: var(--radius-base);
|
|
720
|
+
|
|
721
|
+
& ._selectItem_17t84_333:first-child {
|
|
722
|
+
border-top-right-radius: var(--radius-base);
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
._toolbarNodeKindSelectTrigger_17t84_338,
|
|
727
|
+
._toolbarButtonSelectTrigger_17t84_339,
|
|
728
|
+
._selectTrigger_17t84_340 {
|
|
729
|
+
border: 0;
|
|
730
|
+
background-color: transparent;
|
|
731
|
+
display: flex;
|
|
732
|
+
color: inherit;
|
|
733
|
+
align-items: center;
|
|
734
|
+
width: var(--spacing-36);
|
|
735
|
+
padding: var(--spacing-0_5) var(--spacing-1);
|
|
736
|
+
padding-inline-start: var(--spacing-2);
|
|
737
|
+
border-radius: var(--radius-medium);
|
|
738
|
+
white-space: nowrap;
|
|
739
|
+
flex-wrap: nowrap;
|
|
740
|
+
font-size: var(--text-sm);
|
|
741
|
+
background-color: var(--basePageBg);
|
|
742
|
+
margin: 0 var(--spacing-1);
|
|
743
|
+
|
|
744
|
+
&[data-state='open'] {
|
|
745
|
+
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.2));
|
|
746
|
+
border-bottom-right-radius: var(--radius-none);
|
|
747
|
+
border-bottom-left-radius: var(--radius-none);
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
._selectTrigger_17t84_340[data-placeholder] > span:first-child {
|
|
752
|
+
color: var(--baseBorderHover);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
._toolbarButtonSelectTrigger_17t84_339 {
|
|
756
|
+
width: auto;
|
|
757
|
+
padding-inline-start: var(--spacing-2);
|
|
758
|
+
padding-inline-end: var(--spacing-1);
|
|
759
|
+
padding-block: var(--spacing-0_5);
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
._toolbarCodeBlockLanguageSelectTrigger_17t84_374,
|
|
763
|
+
._toolbarCodeBlockLanguageSelectContent_17t84_319 {
|
|
764
|
+
width: var(--spacing-48);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
._toolbarNodeKindSelectItem_17t84_379,
|
|
768
|
+
._selectItem_17t84_333 {
|
|
769
|
+
cursor: default;
|
|
770
|
+
display: flex;
|
|
771
|
+
padding: var(--spacing-2);
|
|
772
|
+
|
|
773
|
+
&[data-highlighted] {
|
|
774
|
+
background-color: var(--baseBg);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
&[data-state='checked'] {
|
|
778
|
+
color: var(--baseTextContrast);
|
|
779
|
+
background-color: var(--baseBg);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
&[data-highlighted] {
|
|
783
|
+
outline: none;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
&:last-child {
|
|
787
|
+
border-bottom-left-radius: var(--radius-base);
|
|
788
|
+
border-bottom-right-radius: var(--radius-base);
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
._toolbarNodeKindSelectDropdownArrow_17t84_404,
|
|
793
|
+
._selectDropdownArrow_17t84_405 {
|
|
794
|
+
margin-left: auto;
|
|
795
|
+
display: flex;
|
|
796
|
+
align-items: center;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
._contentEditable_17t84_411 {
|
|
800
|
+
box-sizing: border-box;
|
|
801
|
+
width: 100%;
|
|
802
|
+
color: var(--baseTextContrast);
|
|
803
|
+
|
|
804
|
+
&:focus {
|
|
805
|
+
outline: none;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
padding: var(--spacing-3);
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
._codeMirrorWrapper_17t84_423 {
|
|
812
|
+
margin-bottom: var(--spacing-5);
|
|
813
|
+
border: 1px solid var(--baseLine);
|
|
814
|
+
border-radius: var(--radius-medium);
|
|
815
|
+
overflow: hidden;
|
|
816
|
+
padding: 0.8rem;
|
|
817
|
+
position: relative;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
._sandPackWrapper_17t84_432 {
|
|
821
|
+
margin-bottom: var(--spacing-5);
|
|
822
|
+
border: 1px solid var(--baseLine);
|
|
823
|
+
border-radius: var(--radius-medium);
|
|
824
|
+
overflow: hidden;
|
|
825
|
+
position: relative;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
._codeMirrorToolbar_17t84_440 {
|
|
829
|
+
position: absolute;
|
|
830
|
+
right: 0;
|
|
831
|
+
top: 0;
|
|
832
|
+
display: flex;
|
|
833
|
+
gap: var(--spacing-1);
|
|
834
|
+
padding: var(--spacing-1);
|
|
835
|
+
z-index: 1;
|
|
836
|
+
background-color: var(--baseBase);
|
|
837
|
+
border-bottom-left-radius: var(--radius-base);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
._frontmatterWrapper_17t84_444 {
|
|
841
|
+
border-radius: var(--radius-medium);
|
|
842
|
+
padding: var(--spacing-3);
|
|
843
|
+
background-color: var(--baseBgSubtle);
|
|
844
|
+
|
|
845
|
+
&[data-expanded='true'] {
|
|
846
|
+
margin-bottom: var(--spacing-10);
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
._frontmatterToggleButton_17t84_454 {
|
|
851
|
+
border: 0;
|
|
852
|
+
background-color: transparent;
|
|
853
|
+
font-size: inherit;
|
|
854
|
+
appearance: none;
|
|
855
|
+
all: unset;
|
|
856
|
+
box-sizing: border-box;
|
|
857
|
+
cursor: default;
|
|
858
|
+
display: flex;
|
|
859
|
+
align-items: center;
|
|
860
|
+
gap: var(--spacing-1);
|
|
861
|
+
font-size: var(--text-sm);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
._propertyPanelTitle_17t84_462 {
|
|
865
|
+
font-size: var(--text-xs);
|
|
866
|
+
font-weight: 400;
|
|
867
|
+
margin: 0;
|
|
868
|
+
padding-top: var(--spacing-2);
|
|
869
|
+
padding-left: var(--spacing-2);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
._propertyEditorTable_17t84_470 {
|
|
873
|
+
table-layout: fixed;
|
|
874
|
+
border-spacing: var(--spacing-2);
|
|
875
|
+
|
|
876
|
+
& th {
|
|
877
|
+
text-align: left;
|
|
878
|
+
font-size: var(--text-sm);
|
|
879
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
& col:nth-child(1) {
|
|
883
|
+
width: 30%;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
& col:nth-child(2) {
|
|
887
|
+
width: 70%;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
& td:last-child ._iconButton_17t84_488 {
|
|
891
|
+
margin-left: var(--spacing-4);
|
|
892
|
+
margin-right: var(--spacing-4);
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
& ._readOnlyColumnCell_17t84_493 {
|
|
896
|
+
padding-left: 0;
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
._propertyEditorLabelCell_17t84_498 {
|
|
901
|
+
font-weight: 400;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
._readOnlyColumnCell_17t84_493 {
|
|
905
|
+
padding-left: 0;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
._buttonsFooter_17t84_506 {
|
|
909
|
+
display: flex;
|
|
910
|
+
justify-content: flex-end;
|
|
911
|
+
gap: var(--spacing-2);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
._propertyEditorInput_17t84_512 {
|
|
915
|
+
border: 0;
|
|
916
|
+
background-color: transparent;
|
|
917
|
+
font-size: inherit;
|
|
918
|
+
appearance: none;
|
|
919
|
+
all: unset;
|
|
920
|
+
box-sizing: border-box;
|
|
921
|
+
cursor: default;
|
|
922
|
+
width: 100%;
|
|
923
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
924
|
+
border-radius: var(--radius-base);
|
|
925
|
+
border: 1px solid var(--baseBorder);
|
|
926
|
+
background-color: var(--baseBase);
|
|
927
|
+
font-size: var(--text-sm);
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
._iconButton_17t84_488 {
|
|
931
|
+
border: 0;
|
|
932
|
+
background-color: transparent;
|
|
933
|
+
font-size: inherit;
|
|
934
|
+
appearance: none;
|
|
935
|
+
all: unset;
|
|
936
|
+
box-sizing: border-box;
|
|
937
|
+
cursor: default;
|
|
938
|
+
display: inline-flex;
|
|
939
|
+
align-items: center;
|
|
940
|
+
justify-content: center;
|
|
941
|
+
width: 26px;
|
|
942
|
+
height: 26px;
|
|
943
|
+
border: 1px solid transparent;
|
|
944
|
+
border-radius: 8px;
|
|
945
|
+
color: var(--baseText);
|
|
946
|
+
cursor: pointer;
|
|
947
|
+
@media (hover: hover) {
|
|
948
|
+
&:hover {
|
|
949
|
+
border-color: var(--baseLine);
|
|
950
|
+
background-color: var(--baseBgHover);
|
|
951
|
+
color: var(--baseTextContrast);
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
&[data-state='on'],
|
|
955
|
+
&:active {
|
|
956
|
+
background-color: var(--baseBgActive);
|
|
957
|
+
color: var(--baseTextContrast);
|
|
958
|
+
}
|
|
959
|
+
&:disabled {
|
|
960
|
+
color: var(--baseLine);
|
|
961
|
+
cursor: default;
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
._primaryButton_17t84_526,
|
|
966
|
+
._secondaryButton_17t84_527 {
|
|
967
|
+
border: 0;
|
|
968
|
+
background-color: transparent;
|
|
969
|
+
font-size: inherit;
|
|
970
|
+
appearance: none;
|
|
971
|
+
all: unset;
|
|
972
|
+
box-sizing: border-box;
|
|
973
|
+
cursor: default;
|
|
974
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
975
|
+
border: 1px solid var(--accentBorder);
|
|
976
|
+
background-color: var(--accentSolidHover);
|
|
977
|
+
color: var(--baseBase);
|
|
978
|
+
font-size: var(--text-xs);
|
|
979
|
+
border-radius: var(--radius-medium);
|
|
980
|
+
|
|
981
|
+
&:disabled {
|
|
982
|
+
background: var(--accentLine);
|
|
983
|
+
border-color: var(--accentBg);
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
._smallButton_17t84_542 {
|
|
988
|
+
font-size: var(--text-xs);
|
|
989
|
+
padding: var(--spacing-1) var(--spacing-2);
|
|
990
|
+
border-radius: var(--radius-base);
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
._secondaryButton_17t84_527 {
|
|
994
|
+
border: 1px solid var(--baseBorder);
|
|
995
|
+
background-color: var(--baseSolidHover);
|
|
996
|
+
color: var(--baseBase);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
._dialogForm_17t84_554 {
|
|
1000
|
+
display: flex;
|
|
1001
|
+
flex-direction: row;
|
|
1002
|
+
gap: var(--spacing-2);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
._linkDialogEditForm_17t84_560 {
|
|
1006
|
+
display: flex;
|
|
1007
|
+
flex-direction: column;
|
|
1008
|
+
align-items: stretch;
|
|
1009
|
+
gap: var(--spacing-2);
|
|
1010
|
+
padding: 0;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
._linkDialogInputContainer_17t84_568 {
|
|
1014
|
+
display: flex;
|
|
1015
|
+
flex-direction: column;
|
|
1016
|
+
align-items: stretch;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
._linkDialogInputWrapper_17t84_574 {
|
|
1020
|
+
display: flex;
|
|
1021
|
+
align-items: center;
|
|
1022
|
+
background-color: var(--baseBase);
|
|
1023
|
+
|
|
1024
|
+
border-radius: var(--radius-base);
|
|
1025
|
+
border: 1px solid var(--baseBorder);
|
|
1026
|
+
|
|
1027
|
+
&[data-visible-dropdown='true'] {
|
|
1028
|
+
border-bottom-left-radius: var(--radius-none);
|
|
1029
|
+
border-bottom-right-radius: var(--radius-none);
|
|
1030
|
+
border-bottom-width: 0;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
& > button {
|
|
1034
|
+
border: 0;
|
|
1035
|
+
background-color: transparent;
|
|
1036
|
+
font-size: inherit;
|
|
1037
|
+
appearance: none;
|
|
1038
|
+
all: unset;
|
|
1039
|
+
box-sizing: border-box;
|
|
1040
|
+
cursor: default;
|
|
1041
|
+
padding-right: var(--spacing-2);
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
._linkDialogInput_17t84_568,
|
|
1046
|
+
._dialogInput_17t84_595 {
|
|
1047
|
+
border: 0;
|
|
1048
|
+
background-color: transparent;
|
|
1049
|
+
font-size: inherit;
|
|
1050
|
+
appearance: none;
|
|
1051
|
+
all: unset;
|
|
1052
|
+
box-sizing: border-box;
|
|
1053
|
+
cursor: default;
|
|
1054
|
+
width: 20rem;
|
|
1055
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
1056
|
+
font-size: var(--text-sm);
|
|
1057
|
+
|
|
1058
|
+
&::placeholder {
|
|
1059
|
+
color: var(--baseBorder);
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
._linkDialogAnchor_17t84_606 {
|
|
1064
|
+
position: fixed;
|
|
1065
|
+
background-color: highlight;
|
|
1066
|
+
z-index: -1;
|
|
1067
|
+
|
|
1068
|
+
&[data-visible='true'] {
|
|
1069
|
+
visibility: visible;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
&[data-visible='false'] {
|
|
1073
|
+
visibility: hidden;
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
._linkDialogPopoverContent_17t84_620,
|
|
1078
|
+
._tableColumnEditorPopoverContent_17t84_621,
|
|
1079
|
+
._dialogContent_17t84_622 {
|
|
1080
|
+
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.2));
|
|
1081
|
+
display: flex;
|
|
1082
|
+
align-items: center;
|
|
1083
|
+
gap: var(--spacing-0_5);
|
|
1084
|
+
border-radius: var(--radius-medium);
|
|
1085
|
+
border: 1px solid var(--baseBg);
|
|
1086
|
+
background-color: var(--basePageBg);
|
|
1087
|
+
padding: var(--spacing-1) var(--spacing-1);
|
|
1088
|
+
font-size: var(--text-sm);
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
._largeDialogContent_17t84_634 {
|
|
1092
|
+
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.2));
|
|
1093
|
+
gap: var(--spacing-0_5);
|
|
1094
|
+
border-radius: var(--radius-medium);
|
|
1095
|
+
border: 1px solid var(--baseBorder);
|
|
1096
|
+
background-color: var(--baseBgSubtle);
|
|
1097
|
+
padding: var(--spacing-4);
|
|
1098
|
+
font-size: var(--text-sm);
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
._dialogTitle_17t84_644 {
|
|
1102
|
+
font-size: var(--text-base);
|
|
1103
|
+
font-weight: 600;
|
|
1104
|
+
padding-left: var(--spacing-2);
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
._dialogCloseButton_17t84_650 {
|
|
1108
|
+
border: 0;
|
|
1109
|
+
background-color: transparent;
|
|
1110
|
+
font-size: inherit;
|
|
1111
|
+
appearance: none;
|
|
1112
|
+
all: unset;
|
|
1113
|
+
box-sizing: border-box;
|
|
1114
|
+
cursor: default;
|
|
1115
|
+
position: absolute;
|
|
1116
|
+
top: 10px;
|
|
1117
|
+
right: 10px;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
._popoverContent_17t84_657 {
|
|
1121
|
+
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.2));
|
|
1122
|
+
display: flex;
|
|
1123
|
+
align-items: center;
|
|
1124
|
+
gap: var(--spacing-0_5);
|
|
1125
|
+
border-radius: var(--radius-medium);
|
|
1126
|
+
background-color: var(--baseBgSubtle);
|
|
1127
|
+
padding: var(--spacing-2) var(--spacing-2);
|
|
1128
|
+
font-size: var(--text-sm);
|
|
1129
|
+
z-index: 1;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
._popoverArrow_17t84_669 {
|
|
1133
|
+
fill: var(--basePageBg);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
._linkDialogPreviewAnchor_17t84_673 {
|
|
1137
|
+
margin-right: var(--spacing-1);
|
|
1138
|
+
display: flex;
|
|
1139
|
+
align-items: center;
|
|
1140
|
+
gap: var(--spacing-1);
|
|
1141
|
+
color: var(--accentText);
|
|
1142
|
+
text-decoration: none;
|
|
1143
|
+
|
|
1144
|
+
@media (hover: hover) {
|
|
1145
|
+
&:hover {
|
|
1146
|
+
color: var(--accentSolidHover);
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
border: 1px solid transparent;
|
|
1151
|
+
|
|
1152
|
+
& span {
|
|
1153
|
+
max-width: 14rem;
|
|
1154
|
+
overflow-x: hidden;
|
|
1155
|
+
text-overflow: ellipsis;
|
|
1156
|
+
white-space: nowrap;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
& svg {
|
|
1160
|
+
width: 13px;
|
|
1161
|
+
height: 13px;
|
|
1162
|
+
color: var(--baseText);
|
|
1163
|
+
stroke-width: 1.5;
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
._tooltipTrigger_17t84_704 {
|
|
1168
|
+
align-self: center;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
._tooltipContent_17t84_708 {
|
|
1172
|
+
z-index: 2;
|
|
1173
|
+
position: relative;
|
|
1174
|
+
border-radius: var(--radius-medium);
|
|
1175
|
+
padding: var(--spacing-1) var(--spacing-2);
|
|
1176
|
+
font-size: var(--text-xs);
|
|
1177
|
+
background-color: var(--baseText);
|
|
1178
|
+
color: var(--baseBase);
|
|
1179
|
+
|
|
1180
|
+
& svg {
|
|
1181
|
+
fill: var(--baseText);
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
._actionButton_17t84_722 {
|
|
1186
|
+
border: 0;
|
|
1187
|
+
background-color: transparent;
|
|
1188
|
+
font-size: inherit;
|
|
1189
|
+
appearance: none;
|
|
1190
|
+
all: unset;
|
|
1191
|
+
box-sizing: border-box;
|
|
1192
|
+
cursor: default;
|
|
1193
|
+
padding: var(--spacing-1);
|
|
1194
|
+
color: var(--baseTextContrast);
|
|
1195
|
+
& svg {
|
|
1196
|
+
display: block;
|
|
1197
|
+
}
|
|
1198
|
+
@media (hover: hover) {
|
|
1199
|
+
&:hover {
|
|
1200
|
+
background-color: var(--baseBg);
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
&:active svg {
|
|
1204
|
+
transform: translate(1px, 1px);
|
|
1205
|
+
}
|
|
1206
|
+
&[data-state='on'],
|
|
1207
|
+
&:active {
|
|
1208
|
+
background-color: var(--baseBg);
|
|
1209
|
+
color: var(--baseTextContrast);
|
|
1210
|
+
}
|
|
1211
|
+
padding: var(--spacing-1) var(--spacing-1);
|
|
1212
|
+
border-radius: var(--radius-medium);
|
|
1213
|
+
color: var(--baseTextContrast);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
._linkDialogActionButton_17t84_729 {
|
|
1217
|
+
border: 0;
|
|
1218
|
+
background-color: transparent;
|
|
1219
|
+
font-size: inherit;
|
|
1220
|
+
appearance: none;
|
|
1221
|
+
all: unset;
|
|
1222
|
+
box-sizing: border-box;
|
|
1223
|
+
cursor: default;
|
|
1224
|
+
display: inline-flex;
|
|
1225
|
+
align-items: center;
|
|
1226
|
+
justify-content: center;
|
|
1227
|
+
width: 26px;
|
|
1228
|
+
height: 26px;
|
|
1229
|
+
border: 1px solid transparent;
|
|
1230
|
+
border-radius: 8px;
|
|
1231
|
+
color: var(--baseText);
|
|
1232
|
+
cursor: pointer;
|
|
1233
|
+
@media (hover: hover) {
|
|
1234
|
+
&:hover {
|
|
1235
|
+
border-color: var(--baseLine);
|
|
1236
|
+
background-color: var(--baseBgHover);
|
|
1237
|
+
color: var(--baseTextContrast);
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
&[data-state='on'],
|
|
1241
|
+
&:active {
|
|
1242
|
+
background-color: var(--baseBgActive);
|
|
1243
|
+
color: var(--baseTextContrast);
|
|
1244
|
+
}
|
|
1245
|
+
&:disabled {
|
|
1246
|
+
color: var(--baseLine);
|
|
1247
|
+
cursor: default;
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
._editorIcon_17t84_733 {
|
|
1252
|
+
display: block;
|
|
1253
|
+
width: 14px;
|
|
1254
|
+
height: 14px;
|
|
1255
|
+
fill: none;
|
|
1256
|
+
stroke: currentColor;
|
|
1257
|
+
stroke-width: 1.5;
|
|
1258
|
+
stroke-linecap: round;
|
|
1259
|
+
stroke-linejoin: round;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
._primaryActionButton_17t84_744 {
|
|
1263
|
+
background-color: var(--accentSolid);
|
|
1264
|
+
color: var(--baseBase);
|
|
1265
|
+
|
|
1266
|
+
@media (hover: hover) {
|
|
1267
|
+
&:hover {
|
|
1268
|
+
background-color: var(--accentSolidHover);
|
|
1269
|
+
color: var(--baseBase);
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
._tableEditor_17t84_756 {
|
|
1275
|
+
table-layout: fixed;
|
|
1276
|
+
width: 100%;
|
|
1277
|
+
height: 100%;
|
|
1278
|
+
border-spacing: 0;
|
|
1279
|
+
border-collapse: collapse;
|
|
1280
|
+
|
|
1281
|
+
& thead > tr > th {
|
|
1282
|
+
text-align: right;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
& > tbody > tr > td:not(._toolCell_17t84_767),
|
|
1286
|
+
& > tbody > tr > th:not(._toolCell_17t84_767):not([data-tool-cell='true']) {
|
|
1287
|
+
border: 1px solid var(--baseBgActive);
|
|
1288
|
+
padding: var(--spacing-1) var(--spacing-2);
|
|
1289
|
+
white-space: normal;
|
|
1290
|
+
|
|
1291
|
+
& > div {
|
|
1292
|
+
outline: none;
|
|
1293
|
+
|
|
1294
|
+
& > p {
|
|
1295
|
+
margin: 0;
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
&[data-active='true'] {
|
|
1300
|
+
outline: solid 1px var(--baseSolid);
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
._tableColumnEditorTrigger_17t84_786,
|
|
1305
|
+
._tableRowEditorTrigger_17t84_787,
|
|
1306
|
+
._addRowButton_17t84_788,
|
|
1307
|
+
._addColumnButton_17t84_789,
|
|
1308
|
+
._iconButton_17t84_488 {
|
|
1309
|
+
opacity: 0.55;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
@media (hover: hover) {
|
|
1313
|
+
&:hover {
|
|
1314
|
+
._tableColumnEditorTrigger_17t84_786,
|
|
1315
|
+
._tableRowEditorTrigger_17t84_787,
|
|
1316
|
+
._addRowButton_17t84_788,
|
|
1317
|
+
._addColumnButton_17t84_789,
|
|
1318
|
+
._iconButton_17t84_488 {
|
|
1319
|
+
opacity: 0.7;
|
|
1320
|
+
|
|
1321
|
+
&:hover {
|
|
1322
|
+
opacity: 1;
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
._toolCell_17t84_767 {
|
|
1330
|
+
text-align: right;
|
|
1331
|
+
|
|
1332
|
+
& button {
|
|
1333
|
+
margin: auto;
|
|
1334
|
+
display: flex;
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
._tableColumnEditorTrigger_17t84_786 {
|
|
1339
|
+
appearance: none;
|
|
1340
|
+
align-items: center;
|
|
1341
|
+
background: transparent;
|
|
1342
|
+
border: 0;
|
|
1343
|
+
border-radius: 5px;
|
|
1344
|
+
box-sizing: border-box;
|
|
1345
|
+
color: var(--baseText);
|
|
1346
|
+
cursor: pointer;
|
|
1347
|
+
display: inline-flex;
|
|
1348
|
+
height: 16px;
|
|
1349
|
+
justify-content: center;
|
|
1350
|
+
opacity: 0.55;
|
|
1351
|
+
outline: 0;
|
|
1352
|
+
padding: 0;
|
|
1353
|
+
width: 16px;
|
|
1354
|
+
|
|
1355
|
+
& ._editorIcon_17t84_733 {
|
|
1356
|
+
height: 9px;
|
|
1357
|
+
width: 9px;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
@media (hover: hover) {
|
|
1361
|
+
&:hover {
|
|
1362
|
+
background-color: var(--baseBgHover);
|
|
1363
|
+
color: var(--baseTextContrast);
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
&:active {
|
|
1368
|
+
background-color: var(--baseBgActive);
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
&:focus-visible {
|
|
1372
|
+
box-shadow: 0 0 0 1px var(--baseBorderHover);
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
&[data-active='true'] {
|
|
1376
|
+
opacity: 1 !important;
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
._tableColumnEditorToolbar_17t84_862 {
|
|
1381
|
+
display: flex;
|
|
1382
|
+
gap: 2px;
|
|
1383
|
+
|
|
1384
|
+
& > button {
|
|
1385
|
+
border: 0;
|
|
1386
|
+
background-color: transparent;
|
|
1387
|
+
font-size: inherit;
|
|
1388
|
+
appearance: none;
|
|
1389
|
+
all: unset;
|
|
1390
|
+
box-sizing: border-box;
|
|
1391
|
+
cursor: default;
|
|
1392
|
+
display: inline-flex;
|
|
1393
|
+
align-items: center;
|
|
1394
|
+
justify-content: center;
|
|
1395
|
+
width: 26px;
|
|
1396
|
+
height: 26px;
|
|
1397
|
+
border: 1px solid transparent;
|
|
1398
|
+
border-radius: 8px;
|
|
1399
|
+
color: var(--baseText);
|
|
1400
|
+
cursor: pointer;
|
|
1401
|
+
@media (hover: hover) {
|
|
1402
|
+
&:hover {
|
|
1403
|
+
border-color: var(--baseLine);
|
|
1404
|
+
background-color: var(--baseBgHover);
|
|
1405
|
+
color: var(--baseTextContrast);
|
|
1406
|
+
}
|
|
1407
|
+
}
|
|
1408
|
+
&[data-state='on'],
|
|
1409
|
+
&:active {
|
|
1410
|
+
background-color: var(--baseBgActive);
|
|
1411
|
+
color: var(--baseTextContrast);
|
|
1412
|
+
}
|
|
1413
|
+
&:disabled {
|
|
1414
|
+
color: var(--baseLine);
|
|
1415
|
+
cursor: default;
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
& [role='separator'] {
|
|
1420
|
+
margin-left: var(--spacing-1);
|
|
1421
|
+
margin-right: var(--spacing-1);
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
._toggleGroupRoot_17t84_876 {
|
|
1426
|
+
display: inline-flex;
|
|
1427
|
+
gap: 2px;
|
|
1428
|
+
|
|
1429
|
+
& button {
|
|
1430
|
+
border: 0;
|
|
1431
|
+
background-color: transparent;
|
|
1432
|
+
font-size: inherit;
|
|
1433
|
+
appearance: none;
|
|
1434
|
+
all: unset;
|
|
1435
|
+
box-sizing: border-box;
|
|
1436
|
+
cursor: default;
|
|
1437
|
+
display: inline-flex;
|
|
1438
|
+
align-items: center;
|
|
1439
|
+
justify-content: center;
|
|
1440
|
+
width: 26px;
|
|
1441
|
+
height: 26px;
|
|
1442
|
+
border: 1px solid transparent;
|
|
1443
|
+
border-radius: 8px;
|
|
1444
|
+
color: var(--baseText);
|
|
1445
|
+
cursor: pointer;
|
|
1446
|
+
@media (hover: hover) {
|
|
1447
|
+
&:hover {
|
|
1448
|
+
border-color: var(--baseLine);
|
|
1449
|
+
background-color: var(--baseBgHover);
|
|
1450
|
+
color: var(--baseTextContrast);
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
&[data-state='on'],
|
|
1454
|
+
&:active {
|
|
1455
|
+
background-color: var(--baseBgActive);
|
|
1456
|
+
color: var(--baseTextContrast);
|
|
1457
|
+
}
|
|
1458
|
+
&:disabled {
|
|
1459
|
+
color: var(--baseLine);
|
|
1460
|
+
cursor: default;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
&:first-child {
|
|
1464
|
+
border-top-left-radius: var(--radius-base);
|
|
1465
|
+
border-bottom-left-radius: var(--radius-base);
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
&:last-child {
|
|
1469
|
+
border-top-right-radius: var(--radius-base);
|
|
1470
|
+
border-bottom-right-radius: var(--radius-base);
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
._tableToolsColumn_17t84_895 {
|
|
1476
|
+
width: 26px;
|
|
1477
|
+
|
|
1478
|
+
& button {
|
|
1479
|
+
margin: auto;
|
|
1480
|
+
display: block;
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
._leftAlignedCell_17t84_904 {
|
|
1485
|
+
text-align: left;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
._rightAlignedCell_17t84_908 {
|
|
1489
|
+
text-align: right;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
._centeredCell_17t84_912 {
|
|
1493
|
+
text-align: center;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
._addColumnButton_17t84_789,
|
|
1497
|
+
._addRowButton_17t84_788 {
|
|
1498
|
+
appearance: none;
|
|
1499
|
+
background: transparent;
|
|
1500
|
+
border: 0;
|
|
1501
|
+
box-sizing: border-box;
|
|
1502
|
+
color: var(--baseText);
|
|
1503
|
+
cursor: pointer;
|
|
1504
|
+
display: flex;
|
|
1505
|
+
align-items: center;
|
|
1506
|
+
justify-content: center;
|
|
1507
|
+
font: inherit;
|
|
1508
|
+
outline: 0;
|
|
1509
|
+
padding: 0;
|
|
1510
|
+
transform: none !important;
|
|
1511
|
+
transition:
|
|
1512
|
+
color 160ms ease,
|
|
1513
|
+
opacity 160ms ease !important;
|
|
1514
|
+
|
|
1515
|
+
@media (hover: hover) {
|
|
1516
|
+
&:hover {
|
|
1517
|
+
color: var(--baseTextContrast);
|
|
1518
|
+
|
|
1519
|
+
& ._tableAddButtonIcon_17t84_939 {
|
|
1520
|
+
background-color: var(--baseBgHover);
|
|
1521
|
+
transform: scale(1.05);
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
&:active {
|
|
1527
|
+
color: var(--baseTextContrast);
|
|
1528
|
+
|
|
1529
|
+
& ._tableAddButtonIcon_17t84_939 {
|
|
1530
|
+
background-color: var(--baseBgActive);
|
|
1531
|
+
transform: scale(0.95);
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
&:focus-visible ._tableAddButtonIcon_17t84_939 {
|
|
1536
|
+
box-shadow: 0 0 0 1px var(--baseBorderHover);
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
._tableAddButtonIcon_17t84_939 {
|
|
1541
|
+
align-items: center;
|
|
1542
|
+
border-radius: 8px;
|
|
1543
|
+
display: flex;
|
|
1544
|
+
height: 24px;
|
|
1545
|
+
justify-content: center;
|
|
1546
|
+
transition:
|
|
1547
|
+
background-color 160ms ease,
|
|
1548
|
+
color 160ms ease,
|
|
1549
|
+
transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1550
|
+
transform: scale(1);
|
|
1551
|
+
width: 24px;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
._addRowButton_17t84_788 {
|
|
1555
|
+
border-top: 1px solid var(--baseBgActive);
|
|
1556
|
+
width: 100%;
|
|
1557
|
+
min-height: 26px;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
._addColumnButton_17t84_789 {
|
|
1561
|
+
border-left: 1px solid var(--baseBgActive);
|
|
1562
|
+
width: 26px;
|
|
1563
|
+
height: 100%;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
/** Dialog */
|
|
1567
|
+
._dialogOverlay_17t84_987 {
|
|
1568
|
+
position: fixed;
|
|
1569
|
+
inset: 0;
|
|
1570
|
+
animation: _overlayShow_17t84_1 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
1571
|
+
background-color: var(--baseBase);
|
|
1572
|
+
z-index: 51;
|
|
1573
|
+
opacity: 0.5;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
._dialogContent_17t84_622,
|
|
1577
|
+
._largeDialogContent_17t84_634 {
|
|
1578
|
+
position: fixed;
|
|
1579
|
+
top: 50%;
|
|
1580
|
+
left: 50%;
|
|
1581
|
+
transform: translate(-50%, -50%);
|
|
1582
|
+
animation: _contentShow_17t84_1 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
1583
|
+
z-index: 52;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
._dialogContent_17t84_622:focus,
|
|
1587
|
+
._largeDialogContent_17t84_634:focus {
|
|
1588
|
+
outline: none;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
@keyframes _overlayShow_17t84_1 {
|
|
1592
|
+
from {
|
|
1593
|
+
opacity: 0;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
to {
|
|
1597
|
+
opacity: 0.5;
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
@keyframes _contentShow_17t84_1 {
|
|
1602
|
+
from {
|
|
1603
|
+
opacity: 0;
|
|
1604
|
+
transform: translate(-50%, -48%) scale(0.96);
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
to {
|
|
1608
|
+
opacity: 1;
|
|
1609
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
._focusedImage_17t84_1033 {
|
|
1614
|
+
outline: highlight solid 2px;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
._imageWrapper_17t84_1037 {
|
|
1618
|
+
display: inline-block;
|
|
1619
|
+
position: relative;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
._imageWrapper_17t84_1037[draggable='true'] {
|
|
1623
|
+
cursor: move;
|
|
1624
|
+
/* fallback if grab cursor is unsupported */
|
|
1625
|
+
cursor: grab;
|
|
1626
|
+
cursor: -moz-grab;
|
|
1627
|
+
cursor: -webkit-grab;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
._editImageToolbar_17t84_1050 {
|
|
1631
|
+
position: absolute;
|
|
1632
|
+
right: 0;
|
|
1633
|
+
top: 0;
|
|
1634
|
+
display: flex;
|
|
1635
|
+
gap: var(--spacing-1);
|
|
1636
|
+
padding: var(--spacing-1);
|
|
1637
|
+
z-index: 1;
|
|
1638
|
+
background-color: var(--baseBase);
|
|
1639
|
+
border-bottom-left-radius: var(--radius-base);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
._editImageButton_17t84_1054 {
|
|
1643
|
+
& svg {
|
|
1644
|
+
display: block;
|
|
1645
|
+
}
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
._inlineEditor_17t84_1060 {
|
|
1649
|
+
display: inline-flex;
|
|
1650
|
+
border-radius: var(--radius-medium);
|
|
1651
|
+
padding: var(--spacing-1);
|
|
1652
|
+
gap: var(--spacing-2);
|
|
1653
|
+
align-items: center;
|
|
1654
|
+
background: var(--baseBg);
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
._blockEditor_17t84_1069 {
|
|
1658
|
+
display: flex;
|
|
1659
|
+
justify-content: stretch;
|
|
1660
|
+
border-radius: var(--radius-medium);
|
|
1661
|
+
padding: var(--spacing-2);
|
|
1662
|
+
gap: var(--spacing-2);
|
|
1663
|
+
align-items: center;
|
|
1664
|
+
background: var(--baseBg);
|
|
1665
|
+
|
|
1666
|
+
& ._nestedEditor_17t84_1078 {
|
|
1667
|
+
flex-grow: 1;
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
._nestedEditor_17t84_1078 {
|
|
1672
|
+
background: var(--basePageBg);
|
|
1673
|
+
padding: var(--spacing-1) var(--spacing-2);
|
|
1674
|
+
border-radius: var(--radius-medium);
|
|
1675
|
+
|
|
1676
|
+
& > p {
|
|
1677
|
+
margin: 0;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
&:focus {
|
|
1681
|
+
outline: none;
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
._genericComponentName_17t84_1097 {
|
|
1686
|
+
font-size: var(--text-sm);
|
|
1687
|
+
color: var(--baseText);
|
|
1688
|
+
padding-right: var(--spacing-2);
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
._diffSourceToggleWrapper_17t84_1103 {
|
|
1692
|
+
margin-left: auto;
|
|
1693
|
+
pointer-events: auto;
|
|
1694
|
+
opacity: 1;
|
|
1695
|
+
position: sticky;
|
|
1696
|
+
right: 0;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
._ggDiffSourceToggle_17t84_1111 {
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
._diffSourceToggle_17t84_1103 {
|
|
1703
|
+
border-radius: var(--radius-medium);
|
|
1704
|
+
background-color: var(--baseBase);
|
|
1705
|
+
display: flex;
|
|
1706
|
+
|
|
1707
|
+
._toolbarToggleItem_17t84_240 {
|
|
1708
|
+
padding: 0;
|
|
1709
|
+
|
|
1710
|
+
& > span {
|
|
1711
|
+
display: block;
|
|
1712
|
+
padding: var(--spacing-1) var(--spacing-1);
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
._selectWithLabel_17t84_1129 {
|
|
1718
|
+
display: flex;
|
|
1719
|
+
align-items: center;
|
|
1720
|
+
gap: var(--spacing-2);
|
|
1721
|
+
margin-left: var(--spacing-2);
|
|
1722
|
+
|
|
1723
|
+
& > label {
|
|
1724
|
+
font-size: var(--text-sm);
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
._selectTrigger_17t84_340 {
|
|
1728
|
+
border: 1px solid var(--baseBorder);
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
._toolbarTitleMode_17t84_1144 {
|
|
1733
|
+
font-size: var(--text-sm);
|
|
1734
|
+
margin-left: var(--spacing-2);
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
._imageControlWrapperResizing_17t84_1149 {
|
|
1738
|
+
touch-action: none;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
._imageResizer_17t84_1153 {
|
|
1742
|
+
display: block;
|
|
1743
|
+
width: 7px;
|
|
1744
|
+
height: 7px;
|
|
1745
|
+
position: absolute;
|
|
1746
|
+
background-color: var(--accentText);
|
|
1747
|
+
border: 1px solid var(--baseBg);
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
._imageResizer_17t84_1153._imageResizerN_17t84_1162 {
|
|
1751
|
+
top: -6px;
|
|
1752
|
+
left: 48%;
|
|
1753
|
+
cursor: n-resize;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
._imageResizer_17t84_1153._imageResizerNe_17t84_1168 {
|
|
1757
|
+
top: -6px;
|
|
1758
|
+
right: -6px;
|
|
1759
|
+
cursor: ne-resize;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
._imageResizer_17t84_1153._imageResizerE_17t84_1174 {
|
|
1763
|
+
bottom: 48%;
|
|
1764
|
+
right: -6px;
|
|
1765
|
+
cursor: e-resize;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
._imageResizer_17t84_1153._imageResizerSe_17t84_1180 {
|
|
1769
|
+
bottom: -2px;
|
|
1770
|
+
right: -6px;
|
|
1771
|
+
cursor: nwse-resize;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
._imageResizer_17t84_1153._imageResizerS_17t84_1180 {
|
|
1775
|
+
bottom: -2px;
|
|
1776
|
+
left: 48%;
|
|
1777
|
+
cursor: s-resize;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
._imageResizer_17t84_1153._imageResizerSw_17t84_1192 {
|
|
1781
|
+
bottom: -2px;
|
|
1782
|
+
left: -6px;
|
|
1783
|
+
cursor: sw-resize;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
._imageResizer_17t84_1153._imageResizerW_17t84_1198 {
|
|
1787
|
+
bottom: 48%;
|
|
1788
|
+
left: -6px;
|
|
1789
|
+
cursor: w-resize;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
._imageResizer_17t84_1153._imageResizerNw_17t84_1204 {
|
|
1793
|
+
top: -6px;
|
|
1794
|
+
left: -6px;
|
|
1795
|
+
cursor: nw-resize;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
._imagePlaceholder_17t84_1210 {
|
|
1799
|
+
border: 2px dashed;
|
|
1800
|
+
padding: 48px;
|
|
1801
|
+
margin: 12px;
|
|
1802
|
+
width: fit-content;
|
|
1803
|
+
height: fit-content;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
._imageDimensionsContainer_17t84_1218 {
|
|
1807
|
+
display: flex;
|
|
1808
|
+
gap: var(--spacing-4);
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
._placeholder_17t84_1223 {
|
|
1812
|
+
color: var(--baseSolid);
|
|
1813
|
+
overflow: hidden;
|
|
1814
|
+
position: absolute;
|
|
1815
|
+
top: 0;
|
|
1816
|
+
padding: var(--spacing-3);
|
|
1817
|
+
text-overflow: ellipsis;
|
|
1818
|
+
user-select: none;
|
|
1819
|
+
white-space: nowrap;
|
|
1820
|
+
display: inline-block;
|
|
1821
|
+
pointer-events: none;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
._rootContentEditableWrapper_17t84_1236 {
|
|
1825
|
+
position: relative;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
._downshiftContainer_17t84_1240 {
|
|
1829
|
+
display: flex;
|
|
1830
|
+
flex-direction: column;
|
|
1831
|
+
align-items: stretch;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
._downshiftInputWrapper_17t84_1246 {
|
|
1835
|
+
display: flex;
|
|
1836
|
+
align-items: center;
|
|
1837
|
+
background-color: var(--baseBase);
|
|
1838
|
+
|
|
1839
|
+
border-radius: var(--radius-base);
|
|
1840
|
+
border: 1px solid var(--baseBorder);
|
|
1841
|
+
|
|
1842
|
+
&[data-visible-dropdown='true'] {
|
|
1843
|
+
border-bottom-left-radius: var(--radius-none);
|
|
1844
|
+
border-bottom-right-radius: var(--radius-none);
|
|
1845
|
+
border-bottom-width: 0;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
& > button {
|
|
1849
|
+
border: 0;
|
|
1850
|
+
background-color: transparent;
|
|
1851
|
+
font-size: inherit;
|
|
1852
|
+
appearance: none;
|
|
1853
|
+
all: unset;
|
|
1854
|
+
box-sizing: border-box;
|
|
1855
|
+
cursor: default;
|
|
1856
|
+
display: flex;
|
|
1857
|
+
align-items: center;
|
|
1858
|
+
justify-content: center;
|
|
1859
|
+
width: 26px;
|
|
1860
|
+
height: 26px;
|
|
1861
|
+
margin-right: var(--spacing-1);
|
|
1862
|
+
border-radius: 8px;
|
|
1863
|
+
color: var(--baseText);
|
|
1864
|
+
cursor: pointer;
|
|
1865
|
+
|
|
1866
|
+
@media (hover: hover) {
|
|
1867
|
+
&:hover {
|
|
1868
|
+
background-color: var(--baseBgHover);
|
|
1869
|
+
color: var(--baseTextContrast);
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
}
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
._downshiftInput_17t84_1246 {
|
|
1876
|
+
border: 0;
|
|
1877
|
+
background-color: transparent;
|
|
1878
|
+
font-size: inherit;
|
|
1879
|
+
appearance: none;
|
|
1880
|
+
all: unset;
|
|
1881
|
+
box-sizing: border-box;
|
|
1882
|
+
cursor: default;
|
|
1883
|
+
width: 20rem;
|
|
1884
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
1885
|
+
font-size: var(--text-sm);
|
|
1886
|
+
|
|
1887
|
+
&::placeholder {
|
|
1888
|
+
color: var(--baseBorder);
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
._downshiftAutocompleteContainer_17t84_1292 {
|
|
1893
|
+
position: relative;
|
|
1894
|
+
|
|
1895
|
+
& ul {
|
|
1896
|
+
all: unset;
|
|
1897
|
+
box-sizing: border-box;
|
|
1898
|
+
position: absolute;
|
|
1899
|
+
font-size: var(--text-sm);
|
|
1900
|
+
width: 100%;
|
|
1901
|
+
display: none;
|
|
1902
|
+
border-bottom-left-radius: var(--radius-medium);
|
|
1903
|
+
border-bottom-right-radius: var(--radius-medium);
|
|
1904
|
+
max-height: var(--spacing-48);
|
|
1905
|
+
overflow-x: hidden;
|
|
1906
|
+
overflow-y: auto;
|
|
1907
|
+
border: 1px solid var(--baseBorder);
|
|
1908
|
+
border-top-width: 0;
|
|
1909
|
+
background-color: var(--baseBase);
|
|
1910
|
+
|
|
1911
|
+
&[data-visible='true'] {
|
|
1912
|
+
display: block;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
& li {
|
|
1916
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
1917
|
+
white-space: nowrap;
|
|
1918
|
+
margin-bottom: var(--spacing-1);
|
|
1919
|
+
overflow-x: hidden;
|
|
1920
|
+
text-overflow: ellipsis;
|
|
1921
|
+
|
|
1922
|
+
&[data-selected='true'] {
|
|
1923
|
+
background-color: var(--baseBgSubtle);
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
&[data-highlighted='true'] {
|
|
1927
|
+
background-color: var(--baseBgHover);
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
&:last-of-type {
|
|
1931
|
+
border-bottom-left-radius: var(--radius-medium);
|
|
1932
|
+
border-bottom-right-radius: var(--radius-medium);
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
._textInput_17t84_1338 {
|
|
1939
|
+
all: unset;
|
|
1940
|
+
border-radius: var(--radius-base);
|
|
1941
|
+
border: 1px solid var(--baseBorder);
|
|
1942
|
+
background-color: var(--baseBase);
|
|
1943
|
+
padding: var(--spacing-2) var(--spacing-3);
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
form._multiFieldForm_17t84_1346 {
|
|
1947
|
+
display: flex;
|
|
1948
|
+
flex-direction: column;
|
|
1949
|
+
padding: var(--spacing-2);
|
|
1950
|
+
gap: var(--spacing-2);
|
|
1951
|
+
|
|
1952
|
+
._formField_17t84_1352 {
|
|
1953
|
+
display: flex;
|
|
1954
|
+
flex-direction: column;
|
|
1955
|
+
gap: var(--spacing-2);
|
|
1956
|
+
|
|
1957
|
+
& label {
|
|
1958
|
+
font-size: var(--text-xs);
|
|
1959
|
+
}
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
._markdownParseError_17t84_1363 {
|
|
1964
|
+
border-radius: var(--radius-base);
|
|
1965
|
+
border: 1px solid var(--error-color);
|
|
1966
|
+
padding: var(--spacing-2);
|
|
1967
|
+
margin-block: var(--spacing-2);
|
|
1968
|
+
color: var(--error-color);
|
|
1969
|
+
font-size: var(--text-xs);
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
._popupContainer_17t84_1372 {
|
|
1973
|
+
position: relative;
|
|
1974
|
+
z-index: 2;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
._inputSizer_17t84_1377 {
|
|
1978
|
+
display: inline-grid;
|
|
1979
|
+
vertical-align: baseline;
|
|
1980
|
+
align-items: center;
|
|
1981
|
+
position: relative;
|
|
1982
|
+
|
|
1983
|
+
&::after,
|
|
1984
|
+
& input {
|
|
1985
|
+
width: auto;
|
|
1986
|
+
min-width: 1rem;
|
|
1987
|
+
grid-area: 1 / 2;
|
|
1988
|
+
font: inherit;
|
|
1989
|
+
margin: 0;
|
|
1990
|
+
padding: 0 2px;
|
|
1991
|
+
resize: none;
|
|
1992
|
+
background: none;
|
|
1993
|
+
appearance: none;
|
|
1994
|
+
border: none;
|
|
1995
|
+
color: inherit;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
span {
|
|
1999
|
+
padding: 0.25em;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
&::after {
|
|
2003
|
+
content: attr(data-value);
|
|
2004
|
+
white-space: pre-wrap;
|
|
2005
|
+
}
|
|
2006
|
+
}
|
|
2007
|
+
:root, .light, .light-theme {
|
|
2008
|
+
--blue-1: #fbfdff;
|
|
2009
|
+
--blue-2: #f4faff;
|
|
2010
|
+
--blue-3: #e6f4fe;
|
|
2011
|
+
--blue-4: #d5efff;
|
|
2012
|
+
--blue-5: #c2e5ff;
|
|
2013
|
+
--blue-6: #acd8fc;
|
|
2014
|
+
--blue-7: #8ec8f6;
|
|
2015
|
+
--blue-8: #5eb1ef;
|
|
2016
|
+
--blue-9: #0090ff;
|
|
2017
|
+
--blue-10: #0588f0;
|
|
2018
|
+
--blue-11: #0d74ce;
|
|
2019
|
+
--blue-12: #113264;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2023
|
+
@media (color-gamut: p3) {
|
|
2024
|
+
:root, .light, .light-theme {
|
|
2025
|
+
--blue-1: color(display-p3 0.986 0.992 0.999);
|
|
2026
|
+
--blue-2: color(display-p3 0.96 0.979 0.998);
|
|
2027
|
+
--blue-3: color(display-p3 0.912 0.956 0.991);
|
|
2028
|
+
--blue-4: color(display-p3 0.853 0.932 1);
|
|
2029
|
+
--blue-5: color(display-p3 0.788 0.894 0.998);
|
|
2030
|
+
--blue-6: color(display-p3 0.709 0.843 0.976);
|
|
2031
|
+
--blue-7: color(display-p3 0.606 0.777 0.947);
|
|
2032
|
+
--blue-8: color(display-p3 0.451 0.688 0.917);
|
|
2033
|
+
--blue-9: color(display-p3 0.247 0.556 0.969);
|
|
2034
|
+
--blue-10: color(display-p3 0.234 0.523 0.912);
|
|
2035
|
+
--blue-11: color(display-p3 0.15 0.44 0.84);
|
|
2036
|
+
--blue-12: color(display-p3 0.102 0.193 0.379);
|
|
2037
|
+
}
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
.dark, .dark-theme {
|
|
2042
|
+
--blue-1: #0d1520;
|
|
2043
|
+
--blue-2: #111927;
|
|
2044
|
+
--blue-3: #0d2847;
|
|
2045
|
+
--blue-4: #003362;
|
|
2046
|
+
--blue-5: #004074;
|
|
2047
|
+
--blue-6: #104d87;
|
|
2048
|
+
--blue-7: #205d9e;
|
|
2049
|
+
--blue-8: #2870bd;
|
|
2050
|
+
--blue-9: #0090ff;
|
|
2051
|
+
--blue-10: #3b9eff;
|
|
2052
|
+
--blue-11: #70b8ff;
|
|
2053
|
+
--blue-12: #c2e6ff;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2057
|
+
@media (color-gamut: p3) {
|
|
2058
|
+
.dark, .dark-theme {
|
|
2059
|
+
--blue-1: color(display-p3 0.057 0.081 0.122);
|
|
2060
|
+
--blue-2: color(display-p3 0.072 0.098 0.147);
|
|
2061
|
+
--blue-3: color(display-p3 0.078 0.154 0.27);
|
|
2062
|
+
--blue-4: color(display-p3 0.033 0.197 0.37);
|
|
2063
|
+
--blue-5: color(display-p3 0.08 0.245 0.441);
|
|
2064
|
+
--blue-6: color(display-p3 0.14 0.298 0.511);
|
|
2065
|
+
--blue-7: color(display-p3 0.195 0.361 0.6);
|
|
2066
|
+
--blue-8: color(display-p3 0.239 0.434 0.72);
|
|
2067
|
+
--blue-9: color(display-p3 0.247 0.556 0.969);
|
|
2068
|
+
--blue-10: color(display-p3 0.344 0.612 0.973);
|
|
2069
|
+
--blue-11: color(display-p3 0.49 0.72 1);
|
|
2070
|
+
--blue-12: color(display-p3 0.788 0.898 0.99);
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
:root, .light, .light-theme {
|
|
2076
|
+
--slate-1: #fcfcfd;
|
|
2077
|
+
--slate-2: #f9f9fb;
|
|
2078
|
+
--slate-3: #f0f0f3;
|
|
2079
|
+
--slate-4: #e8e8ec;
|
|
2080
|
+
--slate-5: #e0e1e6;
|
|
2081
|
+
--slate-6: #d9d9e0;
|
|
2082
|
+
--slate-7: #cdced6;
|
|
2083
|
+
--slate-8: #b9bbc6;
|
|
2084
|
+
--slate-9: #8b8d98;
|
|
2085
|
+
--slate-10: #80838d;
|
|
2086
|
+
--slate-11: #60646c;
|
|
2087
|
+
--slate-12: #1c2024;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2091
|
+
@media (color-gamut: p3) {
|
|
2092
|
+
:root, .light, .light-theme {
|
|
2093
|
+
--slate-1: color(display-p3 0.988 0.988 0.992);
|
|
2094
|
+
--slate-2: color(display-p3 0.976 0.976 0.984);
|
|
2095
|
+
--slate-3: color(display-p3 0.94 0.941 0.953);
|
|
2096
|
+
--slate-4: color(display-p3 0.908 0.909 0.925);
|
|
2097
|
+
--slate-5: color(display-p3 0.88 0.881 0.901);
|
|
2098
|
+
--slate-6: color(display-p3 0.85 0.852 0.876);
|
|
2099
|
+
--slate-7: color(display-p3 0.805 0.808 0.838);
|
|
2100
|
+
--slate-8: color(display-p3 0.727 0.733 0.773);
|
|
2101
|
+
--slate-9: color(display-p3 0.547 0.553 0.592);
|
|
2102
|
+
--slate-10: color(display-p3 0.503 0.512 0.549);
|
|
2103
|
+
--slate-11: color(display-p3 0.379 0.392 0.421);
|
|
2104
|
+
--slate-12: color(display-p3 0.113 0.125 0.14);
|
|
2105
|
+
}
|
|
2106
|
+
}
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
.dark, .dark-theme {
|
|
2110
|
+
--slate-1: #111113;
|
|
2111
|
+
--slate-2: #18191b;
|
|
2112
|
+
--slate-3: #212225;
|
|
2113
|
+
--slate-4: #272a2d;
|
|
2114
|
+
--slate-5: #2e3135;
|
|
2115
|
+
--slate-6: #363a3f;
|
|
2116
|
+
--slate-7: #43484e;
|
|
2117
|
+
--slate-8: #5a6169;
|
|
2118
|
+
--slate-9: #696e77;
|
|
2119
|
+
--slate-10: #777b84;
|
|
2120
|
+
--slate-11: #b0b4ba;
|
|
2121
|
+
--slate-12: #edeef0;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2125
|
+
@media (color-gamut: p3) {
|
|
2126
|
+
.dark, .dark-theme {
|
|
2127
|
+
--slate-1: color(display-p3 0.067 0.067 0.074);
|
|
2128
|
+
--slate-2: color(display-p3 0.095 0.098 0.105);
|
|
2129
|
+
--slate-3: color(display-p3 0.13 0.135 0.145);
|
|
2130
|
+
--slate-4: color(display-p3 0.156 0.163 0.176);
|
|
2131
|
+
--slate-5: color(display-p3 0.183 0.191 0.206);
|
|
2132
|
+
--slate-6: color(display-p3 0.215 0.226 0.244);
|
|
2133
|
+
--slate-7: color(display-p3 0.265 0.28 0.302);
|
|
2134
|
+
--slate-8: color(display-p3 0.357 0.381 0.409);
|
|
2135
|
+
--slate-9: color(display-p3 0.415 0.431 0.463);
|
|
2136
|
+
--slate-10: color(display-p3 0.469 0.483 0.514);
|
|
2137
|
+
--slate-11: color(display-p3 0.692 0.704 0.728);
|
|
2138
|
+
--slate-12: color(display-p3 0.93 0.933 0.94);
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
:root, .light, .light-theme {
|
|
2144
|
+
--grass-1: #fbfefb;
|
|
2145
|
+
--grass-2: #f5fbf5;
|
|
2146
|
+
--grass-3: #e9f6e9;
|
|
2147
|
+
--grass-4: #daf1db;
|
|
2148
|
+
--grass-5: #c9e8ca;
|
|
2149
|
+
--grass-6: #b2ddb5;
|
|
2150
|
+
--grass-7: #94ce9a;
|
|
2151
|
+
--grass-8: #65ba74;
|
|
2152
|
+
--grass-9: #46a758;
|
|
2153
|
+
--grass-10: #3e9b4f;
|
|
2154
|
+
--grass-11: #2a7e3b;
|
|
2155
|
+
--grass-12: #203c25;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2159
|
+
@media (color-gamut: p3) {
|
|
2160
|
+
:root, .light, .light-theme {
|
|
2161
|
+
--grass-1: color(display-p3 0.986 0.996 0.985);
|
|
2162
|
+
--grass-2: color(display-p3 0.966 0.983 0.964);
|
|
2163
|
+
--grass-3: color(display-p3 0.923 0.965 0.917);
|
|
2164
|
+
--grass-4: color(display-p3 0.872 0.94 0.865);
|
|
2165
|
+
--grass-5: color(display-p3 0.811 0.908 0.802);
|
|
2166
|
+
--grass-6: color(display-p3 0.733 0.864 0.724);
|
|
2167
|
+
--grass-7: color(display-p3 0.628 0.803 0.622);
|
|
2168
|
+
--grass-8: color(display-p3 0.477 0.72 0.482);
|
|
2169
|
+
--grass-9: color(display-p3 0.38 0.647 0.378);
|
|
2170
|
+
--grass-10: color(display-p3 0.344 0.598 0.342);
|
|
2171
|
+
--grass-11: color(display-p3 0.263 0.488 0.261);
|
|
2172
|
+
--grass-12: color(display-p3 0.151 0.233 0.153);
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
:root, .light, .light-theme {
|
|
2178
|
+
--cyan-1: #fafdfe;
|
|
2179
|
+
--cyan-2: #f2fafb;
|
|
2180
|
+
--cyan-3: #def7f9;
|
|
2181
|
+
--cyan-4: #caf1f6;
|
|
2182
|
+
--cyan-5: #b5e9f0;
|
|
2183
|
+
--cyan-6: #9ddde7;
|
|
2184
|
+
--cyan-7: #7dcedc;
|
|
2185
|
+
--cyan-8: #3db9cf;
|
|
2186
|
+
--cyan-9: #00a2c7;
|
|
2187
|
+
--cyan-10: #0797b9;
|
|
2188
|
+
--cyan-11: #107d98;
|
|
2189
|
+
--cyan-12: #0d3c48;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2193
|
+
@media (color-gamut: p3) {
|
|
2194
|
+
:root, .light, .light-theme {
|
|
2195
|
+
--cyan-1: color(display-p3 0.982 0.992 0.996);
|
|
2196
|
+
--cyan-2: color(display-p3 0.955 0.981 0.984);
|
|
2197
|
+
--cyan-3: color(display-p3 0.888 0.965 0.975);
|
|
2198
|
+
--cyan-4: color(display-p3 0.821 0.941 0.959);
|
|
2199
|
+
--cyan-5: color(display-p3 0.751 0.907 0.935);
|
|
2200
|
+
--cyan-6: color(display-p3 0.671 0.862 0.9);
|
|
2201
|
+
--cyan-7: color(display-p3 0.564 0.8 0.854);
|
|
2202
|
+
--cyan-8: color(display-p3 0.388 0.715 0.798);
|
|
2203
|
+
--cyan-9: color(display-p3 0.282 0.627 0.765);
|
|
2204
|
+
--cyan-10: color(display-p3 0.264 0.583 0.71);
|
|
2205
|
+
--cyan-11: color(display-p3 0.08 0.48 0.63);
|
|
2206
|
+
--cyan-12: color(display-p3 0.108 0.232 0.277);
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
:root, .light, .light-theme {
|
|
2212
|
+
--amber-1: #fefdfb;
|
|
2213
|
+
--amber-2: #fefbe9;
|
|
2214
|
+
--amber-3: #fff7c2;
|
|
2215
|
+
--amber-4: #ffee9c;
|
|
2216
|
+
--amber-5: #fbe577;
|
|
2217
|
+
--amber-6: #f3d673;
|
|
2218
|
+
--amber-7: #e9c162;
|
|
2219
|
+
--amber-8: #e2a336;
|
|
2220
|
+
--amber-9: #ffc53d;
|
|
2221
|
+
--amber-10: #ffba18;
|
|
2222
|
+
--amber-11: #ab6400;
|
|
2223
|
+
--amber-12: #4f3422;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2227
|
+
@media (color-gamut: p3) {
|
|
2228
|
+
:root, .light, .light-theme {
|
|
2229
|
+
--amber-1: color(display-p3 0.995 0.992 0.985);
|
|
2230
|
+
--amber-2: color(display-p3 0.994 0.986 0.921);
|
|
2231
|
+
--amber-3: color(display-p3 0.994 0.969 0.782);
|
|
2232
|
+
--amber-4: color(display-p3 0.989 0.937 0.65);
|
|
2233
|
+
--amber-5: color(display-p3 0.97 0.902 0.527);
|
|
2234
|
+
--amber-6: color(display-p3 0.936 0.844 0.506);
|
|
2235
|
+
--amber-7: color(display-p3 0.89 0.762 0.443);
|
|
2236
|
+
--amber-8: color(display-p3 0.85 0.65 0.3);
|
|
2237
|
+
--amber-9: color(display-p3 1 0.77 0.26);
|
|
2238
|
+
--amber-10: color(display-p3 0.959 0.741 0.274);
|
|
2239
|
+
--amber-11: color(display-p3 0.64 0.4 0);
|
|
2240
|
+
--amber-12: color(display-p3 0.294 0.208 0.145);
|
|
2241
|
+
}
|
|
2242
|
+
}
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
:root, .light, .light-theme {
|
|
2246
|
+
--red-1: #fffcfc;
|
|
2247
|
+
--red-2: #fff7f7;
|
|
2248
|
+
--red-3: #feebec;
|
|
2249
|
+
--red-4: #ffdbdc;
|
|
2250
|
+
--red-5: #ffcdce;
|
|
2251
|
+
--red-6: #fdbdbe;
|
|
2252
|
+
--red-7: #f4a9aa;
|
|
2253
|
+
--red-8: #eb8e90;
|
|
2254
|
+
--red-9: #e5484d;
|
|
2255
|
+
--red-10: #dc3e42;
|
|
2256
|
+
--red-11: #ce2c31;
|
|
2257
|
+
--red-12: #641723;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
@supports (color: color(display-p3 1 1 1)) {
|
|
2261
|
+
@media (color-gamut: p3) {
|
|
2262
|
+
:root, .light, .light-theme {
|
|
2263
|
+
--red-1: color(display-p3 0.998 0.989 0.988);
|
|
2264
|
+
--red-2: color(display-p3 0.995 0.971 0.971);
|
|
2265
|
+
--red-3: color(display-p3 0.985 0.925 0.925);
|
|
2266
|
+
--red-4: color(display-p3 0.999 0.866 0.866);
|
|
2267
|
+
--red-5: color(display-p3 0.984 0.812 0.811);
|
|
2268
|
+
--red-6: color(display-p3 0.955 0.751 0.749);
|
|
2269
|
+
--red-7: color(display-p3 0.915 0.675 0.672);
|
|
2270
|
+
--red-8: color(display-p3 0.872 0.575 0.572);
|
|
2271
|
+
--red-9: color(display-p3 0.83 0.329 0.324);
|
|
2272
|
+
--red-10: color(display-p3 0.798 0.294 0.285);
|
|
2273
|
+
--red-11: color(display-p3 0.744 0.234 0.222);
|
|
2274
|
+
--red-12: color(display-p3 0.36 0.115 0.143);
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.mdxeditor {
|
|
2280
|
+
/** Code mirror */
|
|
2281
|
+
& .cm-editor {
|
|
2282
|
+
--sp-font-mono: var(--font-mono);
|
|
2283
|
+
--sp-font-body: var(--font-body);
|
|
2284
|
+
padding: var(--sp-space-4) 0;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
& .sp-editor .cm-editor {
|
|
2288
|
+
padding-bottom: 0;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
& .cm-scroller {
|
|
2292
|
+
padding: 0 !important;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
& .cm-focused {
|
|
2296
|
+
outline: none;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
& .sp-wrapper {
|
|
2300
|
+
overflow: hidden;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
& .sp-layout {
|
|
2304
|
+
border: none;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
& .sp-cm {
|
|
2308
|
+
& pre {
|
|
2309
|
+
white-space: break-spaces;
|
|
2310
|
+
word-break: break-word;
|
|
2311
|
+
overflow-wrap: anywhere;
|
|
2312
|
+
flex-shrink: 1;
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
/** Diff viewer */
|
|
2317
|
+
& .cm-mergeView .cm-scroller {
|
|
2318
|
+
font-family: var(--font-mono);
|
|
2319
|
+
line-height: 1.3rem;
|
|
2320
|
+
font-size: var(--text-xs);
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
/** Diff viewer */
|
|
2324
|
+
& .cm-sourceView .cm-scroller {
|
|
2325
|
+
font-family: var(--font-mono);
|
|
2326
|
+
line-height: 1.3rem;
|
|
2327
|
+
font-size: var(--text-xs);
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
& .cm-gutters {
|
|
2331
|
+
background: transparent;
|
|
2332
|
+
font-size: var(--text-xxs);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
& .cm-activeLine {
|
|
2336
|
+
background: transparent;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
& .cm-tooltip-autocomplete {
|
|
2340
|
+
background: var(--baseBgSubtle);
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
|
|
2344
|
+
hr[data-lexical-decorator=true].selected {
|
|
2345
|
+
outline: 2px solid highlight;
|
|
2346
|
+
}
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
.mdx-editor-persistent,
|
|
2350
|
+
.mdx-editor-shell,
|
|
2351
|
+
.mdx-editor {
|
|
2352
|
+
--mdx-editor-default-accent: #c56e0e;
|
|
2353
|
+
--mdx-editor-default-accent-soft: rgb(197 110 14 / 0.1);
|
|
2354
|
+
--mdx-editor-default-bg: rgb(255 255 255 / 0.78);
|
|
2355
|
+
--mdx-editor-default-border: rgb(17 17 17 / 0.09);
|
|
2356
|
+
--mdx-editor-default-code-bg: rgb(242 242 242);
|
|
2357
|
+
--mdx-editor-default-hover: rgb(127 127 127 / 0.09);
|
|
2358
|
+
--mdx-editor-default-muted: rgb(17 17 17 / 0.48);
|
|
2359
|
+
--mdx-editor-default-selection: rgb(61 135 245 / 0.1);
|
|
2360
|
+
--mdx-editor-default-table-stripe: rgb(127 127 127 / 0.035);
|
|
2361
|
+
--mdx-editor-default-text: #111;
|
|
2362
|
+
--mdx-editor-accent: var(--mdx-editor-default-accent);
|
|
2363
|
+
--mdx-editor-accent-soft: var(--mdx-editor-default-accent-soft);
|
|
2364
|
+
--mdx-editor-bg: var(--mdx-editor-default-bg);
|
|
2365
|
+
--mdx-editor-border: var(--mdx-editor-default-border);
|
|
2366
|
+
--mdx-editor-code-bg: var(--mdx-editor-default-code-bg);
|
|
2367
|
+
--mdx-editor-font:
|
|
2368
|
+
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
2369
|
+
sans-serif;
|
|
2370
|
+
--mdx-editor-font-size: 15px;
|
|
2371
|
+
--mdx-editor-hover: var(--mdx-editor-default-hover);
|
|
2372
|
+
--mdx-editor-line-height: 1.68;
|
|
2373
|
+
--mdx-editor-mono-font: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
2374
|
+
--mdx-editor-muted: var(--mdx-editor-default-muted);
|
|
2375
|
+
--mdx-editor-padding: 16px;
|
|
2376
|
+
--mdx-editor-radius: 28px;
|
|
2377
|
+
--mdx-editor-selection: var(--mdx-editor-default-selection);
|
|
2378
|
+
--mdx-editor-table-stripe: var(--mdx-editor-default-table-stripe);
|
|
2379
|
+
--mdx-editor-text: var(--mdx-editor-default-text);
|
|
2380
|
+
color: var(--mdx-editor-text);
|
|
2381
|
+
font-family: var(--mdx-editor-font);
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.mdx-editor-shell[data-color-scheme='dark'],
|
|
2385
|
+
.mdx-editor.dark-theme {
|
|
2386
|
+
--mdx-editor-default-accent: #eb9a3d;
|
|
2387
|
+
--mdx-editor-default-accent-soft: rgb(235 154 61 / 0.11);
|
|
2388
|
+
--mdx-editor-default-bg: rgb(38 38 38 / 0.72);
|
|
2389
|
+
--mdx-editor-default-border: rgb(230 230 230 / 0.1);
|
|
2390
|
+
--mdx-editor-default-code-bg: rgb(39 39 39);
|
|
2391
|
+
--mdx-editor-default-hover: rgb(127 127 127 / 0.14);
|
|
2392
|
+
--mdx-editor-default-muted: rgb(230 230 230 / 0.48);
|
|
2393
|
+
--mdx-editor-default-selection: rgb(61 135 245 / 0.14);
|
|
2394
|
+
--mdx-editor-default-table-stripe: rgb(255 255 255 / 0.025);
|
|
2395
|
+
--mdx-editor-default-text: rgb(230 230 230);
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
@media (prefers-color-scheme: dark) {
|
|
2399
|
+
.mdx-editor-persistent {
|
|
2400
|
+
--mdx-editor-default-accent: #eb9a3d;
|
|
2401
|
+
--mdx-editor-default-accent-soft: rgb(235 154 61 / 0.11);
|
|
2402
|
+
--mdx-editor-default-bg: rgb(38 38 38 / 0.72);
|
|
2403
|
+
--mdx-editor-default-border: rgb(230 230 230 / 0.1);
|
|
2404
|
+
--mdx-editor-default-code-bg: rgb(39 39 39);
|
|
2405
|
+
--mdx-editor-default-hover: rgb(127 127 127 / 0.14);
|
|
2406
|
+
--mdx-editor-default-muted: rgb(230 230 230 / 0.48);
|
|
2407
|
+
--mdx-editor-default-selection: rgb(61 135 245 / 0.14);
|
|
2408
|
+
--mdx-editor-default-table-stripe: rgb(255 255 255 / 0.025);
|
|
2409
|
+
--mdx-editor-default-text: rgb(230 230 230);
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
.mdx-editor-shell {
|
|
2414
|
+
width: 100%;
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
.mdx-editor {
|
|
2418
|
+
--baseBase: var(--mdx-editor-bg);
|
|
2419
|
+
--baseBgSubtle: var(--mdx-editor-code-bg);
|
|
2420
|
+
--baseBg: color-mix(in srgb, var(--mdx-editor-bg) 88%, transparent);
|
|
2421
|
+
--baseBgHover: var(--mdx-editor-hover);
|
|
2422
|
+
--baseBgActive: var(--mdx-editor-selection);
|
|
2423
|
+
--baseLine: var(--mdx-editor-border);
|
|
2424
|
+
--baseBorder: var(--mdx-editor-border);
|
|
2425
|
+
--baseBorderHover: color-mix(
|
|
2426
|
+
in srgb,
|
|
2427
|
+
var(--mdx-editor-accent) 45%,
|
|
2428
|
+
var(--mdx-editor-border)
|
|
2429
|
+
);
|
|
2430
|
+
--baseText: var(--mdx-editor-muted);
|
|
2431
|
+
--baseTextContrast: var(--mdx-editor-text);
|
|
2432
|
+
--accentBg: var(--mdx-editor-accent-soft);
|
|
2433
|
+
--accentBgHover: color-mix(
|
|
2434
|
+
in srgb,
|
|
2435
|
+
var(--mdx-editor-accent-soft) 80%,
|
|
2436
|
+
var(--mdx-editor-hover)
|
|
2437
|
+
);
|
|
2438
|
+
--accentBgActive: color-mix(
|
|
2439
|
+
in srgb,
|
|
2440
|
+
var(--mdx-editor-accent-soft) 70%,
|
|
2441
|
+
var(--mdx-editor-selection)
|
|
2442
|
+
);
|
|
2443
|
+
--accentBorder: color-mix(
|
|
2444
|
+
in srgb,
|
|
2445
|
+
var(--mdx-editor-accent) 32%,
|
|
2446
|
+
transparent
|
|
2447
|
+
);
|
|
2448
|
+
--accentSolid: var(--mdx-editor-accent);
|
|
2449
|
+
--accentSolidHover: var(--mdx-editor-accent);
|
|
2450
|
+
--accentText: var(--mdx-editor-accent);
|
|
2451
|
+
--accentTextContrast: var(--mdx-editor-text);
|
|
2452
|
+
color: var(--mdx-editor-text);
|
|
2453
|
+
font-family: var(--mdx-editor-font);
|
|
2454
|
+
width: 100%;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
.mdx-editor *,
|
|
2458
|
+
.mdx-editor-notice,
|
|
2459
|
+
.mdx-editor-notice * {
|
|
2460
|
+
corner-shape: squircle;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.mdx-editor-content {
|
|
2464
|
+
caret-color: var(--mdx-editor-accent);
|
|
2465
|
+
color: var(--mdx-editor-text);
|
|
2466
|
+
font-family: var(--mdx-editor-font);
|
|
2467
|
+
outline: none;
|
|
2468
|
+
overflow-wrap: anywhere;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
.mdx-editor-card .mdx-editor-content {
|
|
2472
|
+
background: var(--mdx-editor-bg);
|
|
2473
|
+
border: 1px solid var(--mdx-editor-border);
|
|
2474
|
+
border-radius: var(--mdx-editor-radius);
|
|
2475
|
+
box-shadow:
|
|
2476
|
+
0 1px 0 rgb(255 255 255 / 0.35) inset,
|
|
2477
|
+
0 24px 70px -54px rgb(0 0 0 / 0.5);
|
|
2478
|
+
margin: 0 auto;
|
|
2479
|
+
max-width: 980px;
|
|
2480
|
+
padding: var(--mdx-editor-padding);
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
.mdx-editor-plain .mdx-editor-content {
|
|
2484
|
+
padding: var(--mdx-editor-padding);
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
.mdx-editor-embedded .mdx-editor-content {
|
|
2488
|
+
background: transparent;
|
|
2489
|
+
border: 0;
|
|
2490
|
+
border-radius: 0;
|
|
2491
|
+
box-shadow: none;
|
|
2492
|
+
min-height: inherit;
|
|
2493
|
+
padding: var(--mdx-editor-padding);
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
.mdx-editor-content:focus {
|
|
2497
|
+
outline: none;
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.mdx-editor-content > :first-child {
|
|
2501
|
+
margin-top: 0;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.mdx-editor-content > :last-child {
|
|
2505
|
+
margin-bottom: 0;
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.mdx-editor-content h1,
|
|
2509
|
+
.mdx-editor-content h2,
|
|
2510
|
+
.mdx-editor-content h3 {
|
|
2511
|
+
color: var(--mdx-editor-text);
|
|
2512
|
+
letter-spacing: -0.01em;
|
|
2513
|
+
text-wrap: balance;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.mdx-editor-document .mdx-editor-content h1 {
|
|
2517
|
+
font-size: 32px;
|
|
2518
|
+
line-height: 1.02;
|
|
2519
|
+
margin: 0 0 20px;
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
.mdx-editor-document .mdx-editor-content h2 {
|
|
2523
|
+
font-size: 24px;
|
|
2524
|
+
line-height: 1.15;
|
|
2525
|
+
margin: 26px 0 10px;
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
.mdx-editor-document .mdx-editor-content h3 {
|
|
2529
|
+
font-size: 17px;
|
|
2530
|
+
margin: 20px 0 8px;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.mdx-editor-compact .mdx-editor-content h1,
|
|
2534
|
+
.mdx-editor-compact .mdx-editor-content h2,
|
|
2535
|
+
.mdx-editor-compact .mdx-editor-content h3 {
|
|
2536
|
+
font-size: 1em;
|
|
2537
|
+
line-height: inherit;
|
|
2538
|
+
margin: 0.7em 0 0.3em;
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
.mdx-editor-content p,
|
|
2542
|
+
.mdx-editor-content li {
|
|
2543
|
+
font-size: var(--mdx-editor-font-size);
|
|
2544
|
+
line-height: var(--mdx-editor-line-height);
|
|
2545
|
+
text-wrap: pretty;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.mdx-editor-content p {
|
|
2549
|
+
margin: 6px 0;
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
.mdx-editor-compact .mdx-editor-content p {
|
|
2553
|
+
margin: 0;
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
.mdx-editor-content strong {
|
|
2557
|
+
color: var(--mdx-editor-text);
|
|
2558
|
+
font-weight: 720;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.mdx-editor-content ul,
|
|
2562
|
+
.mdx-editor-content ol {
|
|
2563
|
+
margin: 6px 0;
|
|
2564
|
+
padding-left: 24px;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.mdx-editor-compact .mdx-editor-content ul,
|
|
2568
|
+
.mdx-editor-compact .mdx-editor-content ol {
|
|
2569
|
+
margin: 0.25em 0;
|
|
2570
|
+
padding-left: 20px;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.mdx-editor-content li {
|
|
2574
|
+
margin: 0;
|
|
2575
|
+
padding-left: 2px;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
.mdx-editor-content li + li {
|
|
2579
|
+
margin-top: 5px;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.mdx-editor-compact .mdx-editor-content li + li {
|
|
2583
|
+
margin-top: 2px;
|
|
2584
|
+
}
|
|
2585
|
+
|
|
2586
|
+
.mdx-editor-content li[role='checkbox'] {
|
|
2587
|
+
list-style: none;
|
|
2588
|
+
padding-left: 24px;
|
|
2589
|
+
position: relative;
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
.mdx-editor-content li[role='checkbox']::before {
|
|
2593
|
+
border-radius: 8px;
|
|
2594
|
+
corner-shape: squircle;
|
|
2595
|
+
top: 3.5px;
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
.mdx-editor-content li[role='checkbox'][aria-checked='true']::after {
|
|
2599
|
+
border-width: 0 1.5px 1.5px 0;
|
|
2600
|
+
height: 8px;
|
|
2601
|
+
left: 6px;
|
|
2602
|
+
right: auto;
|
|
2603
|
+
top: 6.5px;
|
|
2604
|
+
width: 4px;
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
.mdx-editor-content li::marker {
|
|
2608
|
+
color: var(--mdx-editor-accent);
|
|
2609
|
+
font-weight: 700;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
.mdx-editor-content a {
|
|
2613
|
+
color: var(--mdx-editor-accent);
|
|
2614
|
+
font-weight: 620;
|
|
2615
|
+
text-decoration-color: color-mix(
|
|
2616
|
+
in srgb,
|
|
2617
|
+
var(--mdx-editor-accent) 35%,
|
|
2618
|
+
transparent
|
|
2619
|
+
);
|
|
2620
|
+
text-decoration-thickness: 1px;
|
|
2621
|
+
text-underline-offset: 3px;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.mdx-editor-content a:hover {
|
|
2625
|
+
text-decoration-color: currentColor;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.mdx-editor [class*='linkDialogPopoverContent'] {
|
|
2629
|
+
border-color: var(--mdx-editor-border);
|
|
2630
|
+
border-radius: 12px;
|
|
2631
|
+
corner-shape: squircle;
|
|
2632
|
+
gap: 2px;
|
|
2633
|
+
padding: 4px;
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
.mdx-editor-content code {
|
|
2637
|
+
background: var(--mdx-editor-code-bg);
|
|
2638
|
+
border-radius: 7px;
|
|
2639
|
+
corner-shape: squircle;
|
|
2640
|
+
font: 0.88em/1.4 var(--mdx-editor-mono-font);
|
|
2641
|
+
padding: 2px 5px;
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
.mdx-editor-content code > span {
|
|
2645
|
+
background: transparent;
|
|
2646
|
+
padding: 0;
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
.mdx-editor-content pre {
|
|
2650
|
+
background: var(--mdx-editor-code-bg);
|
|
2651
|
+
border: 1px solid var(--mdx-editor-border);
|
|
2652
|
+
border-radius: 17px;
|
|
2653
|
+
corner-shape: squircle;
|
|
2654
|
+
overflow: auto;
|
|
2655
|
+
padding: 18px;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.mdx-editor-compact .mdx-editor-content pre {
|
|
2659
|
+
border-radius: 10px;
|
|
2660
|
+
padding: 10px;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.mdx-editor-content pre code {
|
|
2664
|
+
background: transparent;
|
|
2665
|
+
padding: 0;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.mdx-editor-content blockquote {
|
|
2669
|
+
background: var(--mdx-editor-accent-soft);
|
|
2670
|
+
border-left: 3px solid var(--mdx-editor-accent);
|
|
2671
|
+
border-radius: 0 16px 16px 0;
|
|
2672
|
+
color: var(--mdx-editor-text);
|
|
2673
|
+
corner-shape: squircle;
|
|
2674
|
+
margin: 22px 0;
|
|
2675
|
+
padding: 10px 18px;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.mdx-editor-compact .mdx-editor-content blockquote {
|
|
2679
|
+
margin: 0.5em 0;
|
|
2680
|
+
padding: 5px 10px;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
.mdx-editor-content hr {
|
|
2684
|
+
border: 0;
|
|
2685
|
+
border-top: 1px solid var(--mdx-editor-border);
|
|
2686
|
+
margin: 12px 0;
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
.mdx-editor-content table {
|
|
2690
|
+
border-collapse: separate;
|
|
2691
|
+
border-spacing: 0;
|
|
2692
|
+
font-size: 12px;
|
|
2693
|
+
margin: 24px 0;
|
|
2694
|
+
width: 100%;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.mdx-editor-content th,
|
|
2698
|
+
.mdx-editor-content td {
|
|
2699
|
+
border-bottom: 1px solid var(--mdx-editor-border);
|
|
2700
|
+
line-height: 1.45;
|
|
2701
|
+
padding: 11px 12px;
|
|
2702
|
+
text-align: left;
|
|
2703
|
+
vertical-align: top;
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
.mdx-editor-content th {
|
|
2707
|
+
background: var(--mdx-editor-code-bg);
|
|
2708
|
+
color: var(--mdx-editor-text);
|
|
2709
|
+
font-size: 10px;
|
|
2710
|
+
letter-spacing: 0.04em;
|
|
2711
|
+
position: sticky;
|
|
2712
|
+
text-transform: uppercase;
|
|
2713
|
+
top: -27px;
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
.mdx-editor-content table [data-tool-cell] {
|
|
2717
|
+
background: transparent;
|
|
2718
|
+
border: 0;
|
|
2719
|
+
font-size: inherit;
|
|
2720
|
+
height: 32px;
|
|
2721
|
+
letter-spacing: normal;
|
|
2722
|
+
line-height: 1;
|
|
2723
|
+
padding: 0;
|
|
2724
|
+
position: static;
|
|
2725
|
+
text-align: center;
|
|
2726
|
+
text-transform: none;
|
|
2727
|
+
vertical-align: middle;
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
.mdx-editor-content table colgroup > col:first-child,
|
|
2731
|
+
.mdx-editor-content table colgroup > col:last-child {
|
|
2732
|
+
width: 26px;
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
.mdx-editor-content tr:nth-child(even) td {
|
|
2736
|
+
background: var(--mdx-editor-table-stripe);
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2739
|
+
.mdx-editor-content input[type='checkbox'] {
|
|
2740
|
+
accent-color: var(--mdx-editor-accent);
|
|
2741
|
+
margin-right: 8px;
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
.mdx-editor .cm-sourceView {
|
|
2745
|
+
background: var(--mdx-editor-bg);
|
|
2746
|
+
border: 1px solid var(--mdx-editor-border);
|
|
2747
|
+
border-radius: var(--mdx-editor-radius);
|
|
2748
|
+
corner-shape: squircle;
|
|
2749
|
+
min-height: min(70vh, 720px);
|
|
2750
|
+
overflow: hidden;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
.mdx-editor .cm-editor,
|
|
2754
|
+
.mdx-editor .cm-gutters {
|
|
2755
|
+
background: transparent;
|
|
2756
|
+
color: var(--mdx-editor-text);
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.mdx-editor .cm-content {
|
|
2760
|
+
caret-color: var(--mdx-editor-accent);
|
|
2761
|
+
font: 13px/1.6 var(--mdx-editor-mono-font);
|
|
2762
|
+
padding: 18px 8px;
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2765
|
+
.mdx-editor .cm-activeLine,
|
|
2766
|
+
.mdx-editor .cm-activeLineGutter {
|
|
2767
|
+
background: var(--mdx-editor-selection);
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
.mdx-editor-persistent {
|
|
2771
|
+
margin: 0 auto;
|
|
2772
|
+
max-width: 980px;
|
|
2773
|
+
width: 100%;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
.mdx-editor-notice {
|
|
2777
|
+
align-items: center;
|
|
2778
|
+
background: color-mix(in srgb, var(--mdx-editor-bg) 88%, transparent);
|
|
2779
|
+
border: 1px solid var(--mdx-editor-border);
|
|
2780
|
+
border-radius: 16px;
|
|
2781
|
+
color: var(--mdx-editor-text);
|
|
2782
|
+
corner-shape: squircle;
|
|
2783
|
+
display: flex;
|
|
2784
|
+
font: 13px/1.4 var(--mdx-editor-font);
|
|
2785
|
+
gap: 12px;
|
|
2786
|
+
justify-content: space-between;
|
|
2787
|
+
margin: 0 auto 10px;
|
|
2788
|
+
max-width: 980px;
|
|
2789
|
+
padding: 10px 12px;
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
.mdx-editor-notice[data-kind='conflict'] {
|
|
2793
|
+
border-color: rgb(197 110 14 / 0.38);
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
.mdx-editor-notice[data-kind='error'] {
|
|
2797
|
+
border-color: rgb(199 68 64 / 0.35);
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
.mdx-editor-notice > div {
|
|
2801
|
+
display: flex;
|
|
2802
|
+
gap: 6px;
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
.mdx-editor-notice button {
|
|
2806
|
+
background: transparent;
|
|
2807
|
+
border: 1px solid var(--mdx-editor-border);
|
|
2808
|
+
border-radius: 11px;
|
|
2809
|
+
color: var(--mdx-editor-text);
|
|
2810
|
+
corner-shape: squircle;
|
|
2811
|
+
cursor: pointer;
|
|
2812
|
+
min-height: 30px;
|
|
2813
|
+
padding: 0 10px;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
.mdx-editor-notice button:hover {
|
|
2817
|
+
background: var(--mdx-editor-hover);
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
@media (max-width: 780px) {
|
|
2821
|
+
.mdx-editor-card .mdx-editor-content {
|
|
2822
|
+
--mdx-editor-radius: 22px;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
.mdx-editor-document .mdx-editor-content h2 {
|
|
2826
|
+
font-size: 21px;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
.mdx-editor-content table {
|
|
2830
|
+
display: block;
|
|
2831
|
+
overflow-x: auto;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
.mdx-editor-notice {
|
|
2835
|
+
align-items: stretch;
|
|
2836
|
+
flex-direction: column;
|
|
2837
|
+
}
|
|
2838
|
+
}
|