@textbus/xnote 0.0.1-alpha.9 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +139 -1
- package/bundles/components/_api.d.ts +2 -0
- package/bundles/components/dropdown/dropdown-menu.d.ts +4 -1
- package/bundles/components/dropdown/dropdown.d.ts +3 -1
- package/bundles/components/keymap/keymap.d.ts +5 -0
- package/bundles/components/menu-heading/menu-heading.d.ts +2 -0
- package/bundles/components/menu-item/menu-item.d.ts +2 -1
- package/bundles/components/popup/popup.d.ts +1 -1
- package/bundles/fonts/textbus.svg +3 -32
- package/bundles/fonts/textbus.ttf +0 -0
- package/bundles/fonts/textbus.woff +0 -0
- package/bundles/index.css +2 -2
- package/bundles/index.esm.css +2 -2
- package/bundles/index.esm.js +1589 -677
- package/bundles/index.js +1600 -672
- package/bundles/plugins/_api.d.ts +1 -0
- package/bundles/plugins/_common/attr.tool.d.ts +2 -2
- package/bundles/plugins/_common/color.tool.d.ts +2 -2
- package/bundles/plugins/left-toolbar/insert-tool.d.ts +1 -0
- package/bundles/plugins/link-jump/link-jump.d.ts +4 -0
- package/bundles/public-api.d.ts +1 -0
- package/bundles/services/editor.service.d.ts +4 -0
- package/bundles/textbus/components/SlotRender.d.ts +14 -0
- package/bundles/textbus/components/_api.d.ts +3 -0
- package/bundles/textbus/components/at/at-component.view.d.ts +6 -0
- package/bundles/textbus/components/at/at.component.d.ts +35 -0
- package/bundles/textbus/components/blockqoute/blockquote.component.d.ts +4 -1
- package/bundles/textbus/components/highlight-box/highlight-box.component.d.ts +1 -0
- package/bundles/textbus/components/image/image.component.d.ts +2 -1
- package/bundles/textbus/components/katex/katex-editor.d.ts +7 -0
- package/bundles/textbus/components/katex/katex.component.d.ts +16 -0
- package/bundles/textbus/components/list/list.component.d.ts +3 -0
- package/bundles/textbus/components/paragraph/paragraph.component.d.ts +1 -0
- package/bundles/textbus/components/root/root.component.d.ts +2 -0
- package/bundles/textbus/components/source-code/source-code.component.d.ts +2 -1
- package/bundles/textbus/components/table/components/resize-column.d.ts +2 -1
- package/bundles/textbus/components/table/components/scroll.d.ts +1 -2
- package/bundles/textbus/components/table/components/top-bar.d.ts +2 -2
- package/bundles/textbus/components/table/table-selection-awareness-delegate.d.ts +15 -0
- package/bundles/textbus/components/table/table.component.d.ts +1 -1
- package/bundles/textbus/components/todolist/todolist.component.d.ts +1 -0
- package/bundles/textbus/components/video/video.component.d.ts +1 -1
- package/package.json +35 -11
package/README.md
CHANGED
|
@@ -1,3 +1,141 @@
|
|
|
1
1
|
XNote
|
|
2
2
|
====================
|
|
3
|
-
|
|
3
|
+
Xnote 是一个无头、高性能、与框架无关的富文本编辑器,支持多人在线协作。提供了丰富的现代文档编辑功能。
|
|
4
|
+
|
|
5
|
+
Xnote 底层依赖于开源富文本框架 [Textbus](https://textbus.io) 和前端视图 [Viewfly](https://viewfly.org)。因此,你可以在此基础上继续扩展自己的功能。
|
|
6
|
+
|
|
7
|
+
## 在线演示
|
|
8
|
+
|
|
9
|
+
[在线演示](https://textbus.io/playground/)
|
|
10
|
+
|
|
11
|
+
## 安装
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
npm install @textbus/xnote katex
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 使用
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import 'katex/dist/katex.min.css'
|
|
21
|
+
import { Editor } from '@textbus/xnote'
|
|
22
|
+
|
|
23
|
+
const editor = new Editor()
|
|
24
|
+
editor.mount(document.getElementById('editor')).then(() => {
|
|
25
|
+
console.log('编辑器准备完成。')
|
|
26
|
+
})
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## 文件上传
|
|
30
|
+
|
|
31
|
+
要实现文件上传需实现 FileUploader 接口
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
import { FileUploader } from '@textbus/xnote'
|
|
35
|
+
|
|
36
|
+
class YourUploader extends FileUploader {
|
|
37
|
+
uploadFile(type: string): string | Promise<string> {
|
|
38
|
+
if (type === 'image') {
|
|
39
|
+
return 'imageUrl'
|
|
40
|
+
}
|
|
41
|
+
if (type === 'video') {
|
|
42
|
+
return 'videoUrl'
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const editor = new Editor({
|
|
48
|
+
providers: [{
|
|
49
|
+
provide: FileUploader,
|
|
50
|
+
useFactory() {
|
|
51
|
+
return new YourFileUplader()
|
|
52
|
+
}
|
|
53
|
+
}]
|
|
54
|
+
})
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## 粘贴图片 Base64 转 URL
|
|
58
|
+
|
|
59
|
+
```ts
|
|
60
|
+
import { Commander } from '@textbus/core'
|
|
61
|
+
import { Injectable } from '@viewfly/core'
|
|
62
|
+
import { ImageComponent } from '@textbus/xnote'
|
|
63
|
+
|
|
64
|
+
@Injectable()
|
|
65
|
+
class YourCommander extends Commander {
|
|
66
|
+
paste(slot: Slot, text: string) {
|
|
67
|
+
slot.sliceContent().forEach(content => {
|
|
68
|
+
if (content instanceof ImageComponent) {
|
|
69
|
+
const base64 = content.state.url
|
|
70
|
+
// base64 转 url,请自行实现
|
|
71
|
+
content.state.url = 'https://xxx.com/xxx.jpg'
|
|
72
|
+
}
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
// 待图片转换完成后,可调用超类的 paste 方法
|
|
76
|
+
super.paste(slot, text)
|
|
77
|
+
return true
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const editor = new Editor({
|
|
82
|
+
providers: [{
|
|
83
|
+
provide: Commander,
|
|
84
|
+
useClass: YourCommander
|
|
85
|
+
}]
|
|
86
|
+
})
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## 获取 HTML
|
|
90
|
+
|
|
91
|
+
```ts
|
|
92
|
+
const html = editor.getHTML()
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## 设置初始 HTML
|
|
96
|
+
|
|
97
|
+
```ts
|
|
98
|
+
const editor = new Editor({
|
|
99
|
+
content: '<div>HTML 内容</div>'
|
|
100
|
+
})
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## @ 人
|
|
104
|
+
|
|
105
|
+
在文档中 @ 人功能需实现以下接口,以对接用户信息
|
|
106
|
+
|
|
107
|
+
```ts
|
|
108
|
+
export abstract class Organization {
|
|
109
|
+
abstract getMembers(name?: string): Promise<Member[]>
|
|
110
|
+
|
|
111
|
+
abstract getMemberById(id: string): Promise<Member | null>
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
然后在编辑器初始化时传入你的实现
|
|
115
|
+
```ts
|
|
116
|
+
const editor = new Editor({
|
|
117
|
+
providers: [{
|
|
118
|
+
provide: Organization,
|
|
119
|
+
useValue: new YourOrganization()
|
|
120
|
+
}]
|
|
121
|
+
})
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## 协作支持
|
|
125
|
+
|
|
126
|
+
Textbus 天然支持协作,只需要在编辑器配置项中添加协作配置信息即可,具体配置你可以参考 [https://textbus.io/guide/collab/](https://textbus.io/guide/collab/)
|
|
127
|
+
|
|
128
|
+
```ts
|
|
129
|
+
const editor = new Editor({
|
|
130
|
+
collaborateConfig: {
|
|
131
|
+
userinfo: user, // 用户信息
|
|
132
|
+
createConnector(yDoc): SyncConnector {
|
|
133
|
+
// 返回连接器
|
|
134
|
+
return new YWebsocketConnector('wss://example.com', 'docName', yDoc)
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
})
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
@@ -6,6 +6,8 @@ export * from './dropdown/dropdown';
|
|
|
6
6
|
export * from './dropdown/dropdown-menu';
|
|
7
7
|
export * from './dropdown/dropdown.service';
|
|
8
8
|
export * from './dropdown/dropdown-context.service';
|
|
9
|
+
export * from './keymap/keymap';
|
|
10
|
+
export * from './menu-heading/menu-heading';
|
|
9
11
|
export * from './menu-item/menu-item';
|
|
10
12
|
export * from './popup/popup';
|
|
11
13
|
export * from './toolbar-item/toolbar-item';
|
|
@@ -3,8 +3,11 @@ export interface DropdownMenuProps extends Props {
|
|
|
3
3
|
abreast?: boolean;
|
|
4
4
|
triggerRef: StaticRef<HTMLElement>;
|
|
5
5
|
width?: string;
|
|
6
|
+
noTrigger?: boolean;
|
|
7
|
+
padding?: string;
|
|
8
|
+
toLeft?: boolean;
|
|
6
9
|
}
|
|
7
10
|
export declare const DropdownMenuPortal: (props: DropdownMenuProps) => {
|
|
8
11
|
$portalHost: HTMLElement;
|
|
9
|
-
$render: () => import("@viewfly/core").
|
|
12
|
+
$render: () => import("@viewfly/core").ViewFlyNode<string | import("@viewfly/core").ComponentSetup<any>>;
|
|
10
13
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { JSXNode, Props } from '@viewfly/core';
|
|
2
2
|
import { HTMLAttributes } from '@viewfly/platform-browser';
|
|
3
|
-
export type DropdownTriggerTypes = 'hover' | 'click';
|
|
3
|
+
export type DropdownTriggerTypes = 'hover' | 'click' | 'none';
|
|
4
4
|
export interface DropdownMenu {
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
label: JSXNode;
|
|
@@ -13,6 +13,8 @@ export interface DropdownProps extends Props {
|
|
|
13
13
|
class?: HTMLAttributes<HTMLElement>['class'];
|
|
14
14
|
style?: HTMLAttributes<HTMLElement>['style'];
|
|
15
15
|
abreast?: boolean;
|
|
16
|
+
padding?: string;
|
|
17
|
+
toLeft?: boolean;
|
|
16
18
|
onCheck?(value: any): void;
|
|
17
19
|
onExpendStateChange?(is: boolean): void;
|
|
18
20
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Props, JSXNode } from '@viewfly/core';
|
|
2
2
|
export interface MenuItemProps extends Props {
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
checked?: boolean;
|
|
5
5
|
icon?: JSXNode;
|
|
6
6
|
value?: any;
|
|
7
7
|
arrow?: boolean;
|
|
8
|
+
desc?: JSXNode;
|
|
8
9
|
onClick?(value: any): void;
|
|
9
10
|
}
|
|
10
11
|
export declare function MenuItem(props: MenuItemProps): () => any;
|
|
@@ -5,5 +5,5 @@ export interface PopupProps extends Props {
|
|
|
5
5
|
}
|
|
6
6
|
export declare function Popup(props: PopupProps): {
|
|
7
7
|
$portalHost: HTMLElement;
|
|
8
|
-
$render: () => import("@viewfly/core").
|
|
8
|
+
$render: () => import("@viewfly/core").ViewFlyNode<string | import("@viewfly/core").ComponentSetup<any>>;
|
|
9
9
|
};
|
|
@@ -14,35 +14,24 @@
|
|
|
14
14
|
<glyph unicode="" glyph-name="source-code" d="M142.212 170.668v171.012c0 38.29-31.042 69.332-69.332 69.332v0h-23.088v73.98h23.088c38.29 0 69.332 31.042 69.332 69.332v0 171.012c0 76.584 62.084 138.668 138.668 138.668v0h46.244v-92.456h-46.244c-25.522 0-46.212-20.69-46.212-46.212v0-189.524c0-0.001 0-0.002 0-0.003 0-40.711-26.312-75.277-62.858-87.617l-0.654-0.192c37.196-12.532 63.508-47.098 63.508-87.809 0-0.001 0-0.002 0-0.003v0-189.524c0-25.522 20.69-46.212 46.212-46.212h46.244v-92.456h-46.244c-76.584 0-138.668 62.084-138.668 138.668v0zM881.788 341.676v-171.012c0-76.584-62.084-138.668-138.668-138.668v0h-46.244v92.456h46.244c25.522 0 46.212 20.69 46.212 46.212v0 189.524c0 0.001 0 0.002 0 0.003 0 40.711 26.312 75.277 62.858 87.617l0.654 0.192c-37.196 12.532-63.508 47.098-63.508 87.809 0 0.001 0 0.002 0 0.003v0 189.524c-0.018 25.515-20.697 46.19-46.21 46.212h-46.246v92.456h46.244c76.584 0 138.668-62.084 138.668-138.668v0-171.012c0-38.29 31.042-69.332 69.332-69.332v0h23.088v-73.98h-23.088c-38.29 0-69.332-31.042-69.332-69.332v0z" />
|
|
15
15
|
<glyph unicode="" glyph-name="insert-paragraph-after" d="M0 934.4h1024v-204.8h-1024v204.8zM0 576h1024v-204.8h-1024v204.8zM0 217.6h51.2v-256h-51.2v256zM972.8 217.6h51.2v-256h-51.2v256zM51.2 217.6h921.6v-51.2h-921.6v51.2zM51.2 12.8h921.6v-51.2h-921.6v51.2z" />
|
|
16
16
|
<glyph unicode="" glyph-name="insert-paragraph-before" d="M0 908.8h51.2v-256h-51.2v256zM972.8 908.8h51.2v-256h-51.2v256zM51.2 908.8h921.6v-51.2h-921.6v51.2zM51.2 704h921.6v-51.2h-921.6v51.2zM0 524.8h1024v-204.8h-1024v204.8zM0 192h1024v-204.8h-1024v204.8z" />
|
|
17
|
-
<glyph unicode="" glyph-name="
|
|
17
|
+
<glyph unicode="" glyph-name="plus" d="M468.358 976.256h87.976c7.738 0 11.962-4.224 11.962-11.962v-1032.588c0-7.738-4.224-11.962-11.962-11.962h-87.976c-7.738 0-11.962 4.224-11.962 11.962v1032.588c0 7.738 3.514 11.962 11.962 11.962zM19.284 503.95h985.414c7.738 0 11.962-4.224 11.962-11.962v-87.976c0-7.738-4.224-11.962-11.962-11.962h-985.414c-7.738 0-11.962 4.224-11.962 11.962v87.976c0 8.448 4.224 11.962 11.962 11.962zM456.396 976.256h116.142v-1055.802h-116.142zM7.322 389.937v116.142h1008.646v-116.142z" />
|
|
18
18
|
<glyph unicode="" glyph-name="table-border" horiz-adv-x="1055" d="M1040.091 903.876q-512.592 0.037-1025.184 0.028c-1.298 0-2.596 0.018-3.902-0.029-1.203-0.044-2.384-0.158-3.334-1.027v-909.697c2.226-1.668 4.816-1.034 7.25-1.034q512.588-0.037 1025.171-0.028c1.298 0 2.596 0 3.902 0.029 1.203 0.044 2.384 0.158 3.334 1.027v909.697c-2.219 1.668-4.804 1.030-7.235 1.034zM73.19 768.796c0 3.979 0 3.979 3.902 3.979h126.055q63.028 0 126.055 0c4.503 0 3.902 0.557 3.902-4.018q0.022-93.401 0-186.816c0-0.541 0-1.085 0-1.624-0.037-2.424-0.037-2.428-2.49-2.479-0.541 0-1.085 0-1.624 0h-251.791c-4.015 0-4.018 0-4.018 4.144zM979.638 58.020h-126.708q-63.189 0-126.385 0c-4.184 0-3.572-0.609-3.572 3.572q-0.026 93.896 0 187.785c0 4.189-0.37 3.55 3.678 3.55q126.216 0 252.44 0c0.323 0 0.653 0 0.975 0 2.959 0.028 2.824 0.114 2.824-2.827q0-94.705 0-189.413c-0.004-2.985 0.125-2.666-3.253-2.666zM988.303 659.895c0.002-0.218 0.003-0.481 0.003-0.737 0-10.578-1.728-20.759-4.913-30.266l0.198 0.67c-0.454-1.358-0.713-2.927-0.713-4.55 0-0.079 0.001-0.152 0.002-0.231v0.013q0.028-21.928 0-43.861c0-3.249 0.466-3.098-3.168-3.098-10.506 0-21.008-0.037-31.514 0.037-1.859 0-3.205-0.469-4.547-1.815q-30.494-30.615-61.077-61.136c-0.499-0.499-1.174-0.895-1.423-2.061h97.702c0.653 0 1.298-0.055 1.951 0 1.471 0.147 2.303-0.297 2.098-1.951-0.021-0.292-0.028-0.632-0.028-0.975s0.012-0.683 0.029-1.020l-0.003 0.045v-187.139c0-3.902 0-3.902-3.979-3.902q-126.055 0-252.118 0c-3.828 0-3.828 0-3.828 3.678v32.72c-0.118 0.071-0.256 0.134-0.397 0.182l-0.018 0.005c-0.028 0.008-0.061 0.013-0.092 0.013-0.077 0-0.142-0.024-0.2-0.058l0.002 0.001q-50.391-50.619-100.827-101.31c0.513-0.541 1.423-0.191 2.204-0.194 10.612-0.028 21.228 0 31.837-0.028 2.468 0 2.479-0.040 2.512-2.479 0.026-2.057 0-4.114 0-6.175q0-91.293 0-182.592c0-4.056 0.653-3.689-3.539-3.689q-126.543 0-253.093 0c-0.653 0-1.298 0.029-1.951 0-0.946-0.055-1.393 0.323-1.339 1.298 0.037 0.759 0 1.515 0 2.274q0 25.991 0 51.983c0 1.166 0.246 2.365-0.323 3.7-4.303-0.931-8.625-1.844-12.933-2.802q-23.74-5.288-47.48-10.634c-1.342-0.308-3.157 0.385-3.946-0.748-0.826-1.188-0.264-2.937-0.268-4.444q-0.033-19.002 0-38.012c0-2.596 0.235-2.626-2.677-2.626q-25.507 0-51.007 0h-202.408c-3.836 0-3.836 0-3.836 3.676v187.785c0.026 4.048-0.301 3.473 3.443 3.473q84.472 0 168.944 0.028c4.118 0 3.634-0.95 4.686 3.792q6.583 29.776 13.267 59.518c0.065 0.407 0.105 0.883 0.117 1.366v0.013c-1.298 0.473-2.596 0.256-3.85 0.256q-91.456 0.022-182.915 0c-3.685 0-3.685 0-3.685 3.821v187.139c0 3.982 0 3.982 3.902 3.982q126.055 0 252.118 0c4.503 0 3.902 0.554 3.902-4.019q0.028-36.391 0-72.774v-4.078c1.265 1.232 2.017 1.951 2.75 2.684q29.864 29.867 59.764 59.698c1.844 1.83 2.707 3.619 2.519 6.223-0.235 3.249-0.073 6.498-0.048 9.747 0 2.49 0.037 2.519 2.424 2.534 3.79 0.026 7.583 0.070 11.371-0.026 0.080-0.005 0.168-0.008 0.257-0.008 1.357 0 2.582 0.586 3.429 1.511l0.004 0.004q30.744 30.828 61.532 61.598c0.433 0.433 1.071 0.755 1.115 1.899h-76.155c-0.292 0.020-0.632 0.028-0.975 0.028s-0.683-0.011-1.021-0.028l0.045 0.002c-1.467-0.172-2.299 0.235-2.057 1.909 0.028 0.323 0.042 0.706 0.042 1.086 0 0.306-0.011 0.602-0.028 0.903l0.002-0.039v187.139c0 3.96 0 3.96 3.938 3.96q126.055 0 252.118 0c4.389 0 3.843 0.528 3.869-3.722 0.026-3.79 0-7.576 0-11.566 1.43 0.213 1.991 1.357 2.754 2.116q35.302 35.228 70.501 70.549c4.189 4.183 8.922 7.808 14.1 10.762l0.326 0.172c14.275 8.163 29.651 12.633 46.084 12.794 22.849 0.216 45.701 0.323 68.55 0 26.428-0.4 49.034-10.288 67.758-28.962q15.529-15.486 31.022-31.004c5.783-5.757 10.917-12.020 15.097-19.028 0.847-1.423 1.646-2.325 3.506-2.149 1.573 0.147 3.605 0.733 4.702-0.304 1.25-1.174 0.506-3.289 0.447-4.969-0.216-6.414 0.451-12.618 2.365-18.841 2.46-7.99 3.117-16.33 3.098-24.715q-0.095-32.020-0.011-64.025zM729.442 731.478c0.675 0.484 1.65 1.009 2.402 1.757q16.908 16.843 33.747 33.765c3.553 3.572 7.708 6.296 12.020 8.771q25.863 14.917 55.701 12.915c37.406-2.486 70.952-26.86 83.933-62.958 11.558-32.134 7.162-62.562-12.397-90.68-0.655-0.91-1.347-1.712-2.104-2.449l-0.004-0.004q-17.902-17.926-35.824-35.824c-0.528-0.528-0.95-1.199-1.453-1.298zM833.386 568.702q-65.147 65.114-130.28 130.246c-2.754 2.754-2.754 2.754-5.544-0.037l-278.187-278.193q-37.792-37.788-75.594-75.569c-1.24-1.236-2.295-2.475-2.688-4.287q-4.873-22.346-9.853-44.664-11.855-53.354-23.718-106.705c-1.522-6.843-3.018-13.689-4.62-20.964 1.049 0.183 1.57 0.256 2.090 0.37q38.788 8.625 77.578 17.242 45.921 10.198 91.846 20.377c1.972 0.382 3.682 1.331 5.005 2.658l0.001 0.001q177.184 177.29 354.433 354.514c0.73 0.726 1.654 1.324 2.211 2.824-0.997 0.738-1.872 1.453-2.707 2.214l0.028-0.028zM734.129 566.274q-35.822-35.848-71.663-71.677-97.387-97.384-194.748-194.796c-0.833-0.833-1.441-1.903-1.98-2.633l-33.395 33.38 271.123 271.12c3.913-3.92 8.034-8.056 12.163-12.182q9.299-9.303 18.602-18.61c2.647-2.655 2.571-1.936-0.095-4.606z" />
|
|
19
19
|
<glyph unicode="" glyph-name="table-remove" horiz-adv-x="1040" d="M1023.6 895.876q-503.599 0.036-1007.198 0.029c-1.275 0-2.55 0.018-3.834-0.029-1.182-0.043-2.345-0.155-3.277-1.009v-893.737c2.187-1.639 4.733-1.016 7.123-1.016q503.595-0.043 1007.185-0.029c1.275 0 2.55-0.022 3.834 0.029 1.182 0.043 2.342 0.158 3.277 1.012v893.737c-2.18 1.639-4.72 1.012-7.108 1.016zM73.678 508.218c0 4.125-0.365 3.495 3.613 3.498q124.006 0 248.011 0h0.958c2.893 0.029 2.781 0.137 2.781-2.773q0-93.045 0-186.090c0-2.958 0.137-2.661-3.192-2.661h-124.485q-62.077 0-124.168 0c-4.117 0-3.509-0.601-3.509 3.509q-0.039 92.266-0.029 184.512zM329.035 68.88c0-0.533 0-1.066 0-1.597-0.036-2.381-0.039-2.381-2.45-2.432-0.533 0-1.063 0-1.597 0h-247.388c-3.942 0-3.945 0-3.945 4.074v183.538c0 3.909 0 3.909 3.844 3.909h123.842q61.922 0 123.842 0c4.42 0 3.834 0.544 3.834-3.949q0-91.78-0.011-183.542zM329.035 765.165c-0.021-0.287-0.029-0.621-0.029-0.958s0.012-0.671 0.029-1.002l-0.003 0.044v-183.856c0-3.834 0-3.834-3.912-3.834h-123.842q-62.077 0-124.168 0c-3.97 0-3.434-0.558-3.434 3.285q-0.022 92.407 0 184.815v0.317c0 3.563-0.123 3.088 3.069 3.088q124.485 0 248.97 0c0.194-0.012 0.417-0.019 0.642-0.019s0.448 0.007 0.669 0.021l-0.029-0.002c1.416 0.173 2.226-0.277 2.032-1.906zM1000.631 328.126c0.029-5.905-1.917-10.613-6.139-14.785-18.071-17.876-35.994-35.925-53.989-53.901-0.798-0.726-1.655-1.429-2.552-2.096l-0.085-0.063c0.897-1.34 1.83-0.901 2.594-0.904 7.659-0.036 15.318 0 22.985-0.029 4.604-0.026 3.949 0.642 3.963-4.121 0.029-11.061 0-22.131 0-33.194q0-75.331 0-150.662c0-3.955 0.616-3.531-3.574-3.531q-124.168 0-248.332 0c-3.974 0-3.441-0.555-3.441 3.282q-0.022 92.407 0 184.815v0.317c0 3.566-0.123 3.091 3.062 3.091q19.951 0 39.901 0h2.972l-74.963 74.981-74.92-74.924c0.428-0.205 1.275-0.032 2.071-0.032q17.557-0.029 35.111 0c2.925 0 2.941-0.022 2.941-2.922q0-32.397 0-64.797 0-60.168 0-120.335c0-3.772 0.591-3.458-3.329-3.458q-124.485 0-248.97 0h-0.317c-3.015 0.026-2.734-0.317-2.734 2.72q0 92.882 0 185.773c0 0.642 0 1.275 0 1.917 0.022 0.774 0.421 1.139 1.205 1.113s1.485 0 2.234 0q14.843 0 29.686 0c0.589 0 1.258-0.234 1.917 0.526-0.701 0.709-1.409 1.445-2.129 2.165q-27.301 27.308-54.644 54.579c-3.952 3.927-5.79 8.373-5.742 13.946q0.197 30.489 0 60.963c-0.032 5.487 1.837 9.864 5.699 13.647 6.69 6.553 13.214 13.265 19.909 19.811 1.423 1.387 1.917 2.777 1.917 4.733q-0.090 40.695-0.032 81.397c0 4.173-0.421 3.557 3.545 3.557q40.537 0.029 81.073-0.032c2.172 0 3.776 0.49 5.293 2.129 2.885 3.116 6.021 6.009 8.952 8.887-0.043 1.21-0.875 1.632-1.445 2.201q-24.357 24.389-48.704 48.801c-1.412 1.423-2.81 1.917-4.755 1.917-13.622-0.080-27.24-0.047-40.853-0.032-3.509 0-3.098-0.432-3.102 2.994 0 13.622-0.047 27.24 0.036 40.853 0 2.082-0.584 3.557-2.068 5.013-6.614 6.47-13.063 13.117-19.685 19.584-3.955 3.866-5.829 8.329-5.79 13.938q0.22 30.482 0 60.963c-0.029 5.461 1.769 9.868 5.671 13.661 6.784 6.607 13.384 13.409 20.133 20.038 1.247 1.225 1.794 2.457 1.715 4.193-0.13 2.875 0 5.742-0.047 8.617 0 1.185 0.346 1.718 1.65 1.679 2.661-0.085 5.328 0.115 7.981-0.069 2.205-0.147 3.732 0.584 5.293 2.151q32.748 32.892 65.625 65.687c1.429 1.429 2.875 2.842 4.677 3.834 2.101 1.212 4.616 1.941 7.296 1.978h0.011q32.397 0 64.797 0c3.797 0 7.025-1.437 9.893-3.834 0.958-0.821 1.866-1.747 2.767-2.652q32.056-32.045 64.051-64.155c2.209-2.234 4.374-3.253 7.497-3.034 3.707 0.263 7.443 0.080 11.173 0.058 2.63 0 2.661-0.029 2.662-2.55 0.022-4.571 0.047-9.157-0.022-13.726-0.005-0.072-0.007-0.149-0.007-0.234 0-1.238 0.533-2.35 1.373-3.128l0.003-0.003q16.306-16.198 32.528-32.47c0.243-0.206 0.505-0.41 0.782-0.589l0.029-0.020c0.933 0.317 1.463 1.149 2.107 1.801 8.301 8.261 16.525 16.579 24.865 24.786 1.545 1.528 2.288 3.030 2.234 5.249-0.151 6.067-0.047 12.126-0.058 18.193 0 3.084 0.032 2.702 2.829 2.702 6.067 0 12.126 0.086 18.193-0.050 2.101-0.047 3.509 0.642 4.979 2.101q32.669 32.784 65.437 65.478c1.736 1.736 3.509 3.412 5.742 4.509 1.964 1.006 4.285 1.597 6.745 1.597 0.008 0 0.015 0 0.023 0h-0.001q32.078-0.029 64.155 0c4.752 0 8.556-1.963 11.871-5.289q32.575-32.654 65.168-65.279c2.183-2.201 4.32-3.39 7.458-3.102 2.875 0.27 2.807 0.197 2.774-2.717 0.023-0.287 0.029-0.621 0.029-0.958s-0.013-0.671-0.030-1.002l0.003 0.043c-0.253-1.747 0.497-2.961 1.711-4.15 8.617-8.541 17.106-17.206 25.784-25.677 4.005-3.905 5.742-8.463 5.728-13.985q-0.112-30.325 0-60.646c0.029-5.425-1.794-9.893-5.66-13.697-8.617-8.517-17.138-17.165-25.773-25.679-1.126-1.037-1.825-2.514-1.825-4.16 0-0.109 0.004-0.217 0.011-0.324l-0.001 0.017c0.076-11.914 0.036-23.831 0.036-35.753 0-2.688 0.421-2.781-2.745-2.777-12.029 0-24.058 0-36.093 0.029-1.448 0-2.587-0.253-3.678-1.358q-24.999-25.103-50.073-50.138c-0.216-0.22-0.378-0.493-0.8-1.045 3.509-3.509 6.931-6.827 10.217-10.296 1.16-1.218 2.475-1.016 3.834-1.016q25.057 0 50.112 0 13.245 0 26.494 0c2.947 0 2.742 0.026 2.742-2.821 0-24.894 0.072-49.796-0.086-74.689-0.026-3.401 1.027-5.692 3.393-7.981 8.016-7.778 15.765-15.833 23.77-23.619 4.229-4.117 6.193-8.859 6.153-14.785q-0.245-29.902-0.043-59.742zM683.429 427.892c-1.672-0.702-2.396-1.805-3.282-2.691q-74.816-74.794-149.606-149.631c-2.76-2.76-5.696-5.069-9.655-5.836-5.177-0.998-9.669 0.365-13.654 3.678-0.569 0.477-1.070 1.037-1.597 1.56q-35.547 35.54-71.105 71.076c-4.828 4.813-6.384 10.389-4.509 16.889 0.652 2.273 1.953 4.233 3.566 5.966 0.728 0.774 1.488 1.52 2.234 2.269q74.689 74.689 149.378 149.408c0.807 0.813 1.769 1.488 2.317 2.55-0.562 1.095-1.535 1.794-2.353 2.608q-74.689 74.718-149.378 149.415c-1.071 1.020-2.070 2.078-3.011 3.187l-0.048 0.059c-2.199 2.696-3.528 6.173-3.528 9.958 0 4.173 1.616 7.973 4.258 10.796l-0.010-0.010c0.428 0.472 0.897 0.912 1.347 1.362q35.428 35.428 70.864 70.878c3.389 3.393 7.245 5.455 12.126 5.461 0.040 0 0.089 0.001 0.141 0.001 3.872 0 7.411-1.429 10.114-3.781l-0.021 0.018c1.055-0.882 2.025-1.88 2.997-2.875q74.689-74.689 149.411-149.378c0.814-0.814 1.491-1.821 3.012-2.457 0.655 0.785 1.347 1.744 2.169 2.55q74.57 74.607 149.166 149.188c0.825 0.825 1.636 1.675 2.504 2.457 6.607 5.944 15.826 5.818 22.149-0.443 10.808-10.707 21.533-21.497 32.286-32.236q19.969-19.973 39.946-39.953c4.338-4.331 5.909-9.468 4.55-15.452-0.64-2.605-1.877-4.861-3.57-6.694l0.011 0.012c-0.843-0.958-1.762-1.844-2.661-2.749q-74.585-74.592-149.184-149.17c-0.818-0.814-1.751-1.531-2.817-2.453 1.139-1.205 1.963-2.126 2.831-2.997q74.812-74.819 149.635-149.62c2.753-2.753 5.109-5.667 5.89-9.622 1.037-5.285-0.317-9.893-3.801-13.914-0.346-0.404-0.735-0.767-1.109-1.146q-35.774-35.778-71.541-71.555c-4.316-4.323-9.388-6.027-15.405-4.734-2.509 0.569-4.696 1.709-6.497 3.28l0.020-0.017c-1.052 0.89-2.039 1.874-3.012 2.846q-74.596 74.585-149.17 149.181c-0.893 0.886-1.661 1.902-2.399 2.742z" />
|
|
20
|
-
<glyph unicode="" glyph-name="
|
|
20
|
+
<glyph unicode="" glyph-name="function" d="M518.255 713.962h-71.749q30.75 126.429 82.009 186.798 30.75 36.45 60.369 36.45 5.69 0 9.68-3.42 3.98-3.42 3.98-9.11 0-5.7-8.54-18.79t-8.54-26.77q0-18.23 13.67-30.76t33.6-12.53 34.17 15.38 14.24 41.58q0 29.61-21.070 48.41-21.080 18.8-70.059 18.8-75.169 0-135.539-44.42-59.229-43.29-116.179-146.939-17.090-34.17-34.75-44.42-17.65-10.25-55.239-10.25l-15.95-59.229h69.489l-102.519-402.086q-23.92-95.679-34.17-121.869-12.53-33.040-39.87-58.089-10.25-9.12-25.050-9.12-4.56 0-7.98 2.28l-1.14 3.42q0 2.28 7.41 10.25t7.41 24.49-11.96 28.48-33.6 11.96q-27.34 0-43.85-15.38-16.52-15.38-16.52-36.45t19.36-37.59 61.509-16.52q68.339 0 120.169 35.31t91.119 109.349q39.3 74.039 80.309 239.198l58.089 232.368h70.619l17.080 59.229zM866.802 613.723q19.37 14.81 39.87 14.81 7.97 0 29.61-5.7 18.23-4.55 36.45-5.69 21.64 1.14 36.45 15.95 14.81 14.8 14.81 39.86t-14.24 40.44-42.71 15.38q-23.92 0-45.56-11.39t-55.819-52.389q-25.060-28.48-74.029-102.519-18.23 88.849-67.209 165.168l-174.268-29.62-3.42-19.36q20.5 4.55 33.030 4.55 26.2 0 43.29-22.78 27.33-36.45 74.029-215.278-37.58-51.25-51.25-66.059-21.64-25.060-37.59-33.030-11.39-5.7-26.2-5.7-11.39 0-35.31 11.39-18.22 9.11-30.75 9.11-25.060 0-41.58-17.080-16.51-17.090-16.51-41.58t14.81-39.87 40.44-15.38 47.27 10.82 55.809 44.99q35.31 37.59 92.259 110.489 21.65-69.479 38.16-103.649 16.51-34.18 38.15-47.84t52.969-13.66q31.32 0 63.209 21.64 41.010 28.48 86.569 101.369l-18.22 11.4q-29.62-42.15-44.43-53.539-9.11-6.83-23.35-6.83t-29.040 19.36q-25.060 33.030-68.349 184.518 36.45 67.209 62.649 87.709z" />
|
|
21
21
|
<glyph unicode="" glyph-name="paint-bucket" d="M13.333 420.569v-87.765c0.016-20.646 8.403-39.334 21.941-52.858l308.676-308.676c13.525-13.539 32.213-21.925 52.856-21.941h37.902c20.646 0.016 39.334 8.403 52.858 21.941l415.39 415.39c8.964 9.017 14.504 21.439 14.504 35.156s-5.541 26.139-14.506 35.158l0.002-0.002-481.213 482.211c-4.594 4.607-10.932 7.465-17.949 7.48h-0.003c-6.846-0.104-13.008-2.941-17.45-7.477l-0.003-0.003-35.405-34.907c-4.436-4.569-7.172-10.822-7.172-17.703s2.737-13.133 7.177-17.708l39.888-39.888-355.549-355.549c-13.539-13.525-21.925-32.213-21.941-52.856v-0.003zM462.133 758.167l308.675-310.171h-619.843zM885.003 248.529h2.992c4.503-0.099 8.55-1.987 11.466-4.983l0.003-0.003c37.4-41.888 111.203-120.677 111.203-169.547 0-68.855-55.811-124.667-124.667-124.667s-124.667 55.811-124.667 124.667v0c0 49.867 72.805 127.16 110.704 168.549 2.946 3.668 7.432 5.991 12.464 5.991 0.178 0 0.356-0.002 0.524-0.007l-0.022 0.001z" />
|
|
22
22
|
<glyph unicode="" glyph-name="background-color" d="M158.862 942.396h706.291c78.008 0 141.262-63.237 141.262-141.262v0-706.291c0-78.008-63.237-141.262-141.262-141.262v0h-706.291c-78.008 0-141.262 63.237-141.262 141.262v0 706.291c0 78.008 63.237 141.262 141.262 141.262v0zM448.58 752.904l-224.952-588.336h102.972l53.532 147.468h246.416l53.532-147.468h102.972l-224.952 588.336h-109.552zM409.028 391.14l93.084 257.94h3.324l92.248-257.94h-188.656z" />
|
|
23
23
|
<glyph unicode="" glyph-name="color" d="M569.684 887.561h-121.8l-333.335-879.13h126.361l85.174 240.774h366.325l90.672-240.774h126.361l-339.771 879.13zM359.087 349.14l146.479 426.692h1.876l146.479-426.692h-294.833z" />
|
|
24
|
-
<glyph unicode="" glyph-name="
|
|
24
|
+
<glyph unicode="" glyph-name="hightlight-box" d="M170.667 874.667c-47.128 0-85.333-38.205-85.333-85.333v0-256c0-47.128 38.205-85.333 85.333-85.333v0h682.667c47.128 0 85.333 38.205 85.333 85.333v0 256c0 47.128-38.205 85.333-85.333 85.333v0h-682.667zM853.333 789.333v-256h-682.667v256h682.667zM128 277.333c0 23.564 19.103 42.667 42.667 42.667v0h682.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0h-682.667c-23.564 0-42.667 19.103-42.667 42.667v0zM170.667 106.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h341.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0h-341.333z" />
|
|
25
25
|
<glyph unicode="" glyph-name="table-edit" horiz-adv-x="1056" d="M-2.72 910.073h1059.773v-245.501c0-20.286 5.147-79.92-2.646-92.378-4.021 26.143-25.648 52.382-39.742 71.275l-23.844 21.118v110.857h-264.947v-29.037c-24.616-2.382-47.283-12.082-66.235-21.118v50.155h-264.945v-197.992h113.927v-5.279c-11.912-13.256-16.925-40.833-21.196-60.715h-92.73v-200.623c-34.255-2.428-65.21-20.575-87.429-36.957-4.358-3.211-21.252-25.080-23.847-26.399h-219.904v-197.992h172.214c10.027-25.273 21.598-46.998 35.238-67.212l-0.785 1.233h-272.902v926.565zM63.515 775.444v-197.992h264.945v197.992h-264.945zM757.669 727.928h52.986l7.94-52.796c9.469-0.436 14.479-2.224 18.548 0 11.529 11.831 16.24 34.821 31.792 42.238 12.83-10.626 39.412-8.47 42.39-29.037-5.596-7.318-11.017-36.165-7.94-42.238 3.366-4.447 7.232-6.111 10.588-10.558 15.185 8.937 28.839 25.199 47.69 29.037 9.449-13.891 27.944-20.798 31.792-39.595-6.649-4.437-30.006-36.901-26.493-39.598q3.97-6.598 7.94-13.198l52.989 10.558q9.264-23.756 18.548-47.515c-16.739-5.104-29.722-18.528-45.041-26.399 1.398-5.441 2.347-11.772 2.639-18.274l0.007-0.204 52.986-7.92v-52.796l-52.968-7.922c-0.439-9.434-2.232-14.423 0-18.479 9.233-11.422 29.611-21.503 42.39-29.037-6.266-15.781-10.124-43.575-31.795-44.876-6.722 5.068-35.226 10.512-39.742 7.92-5.614-5.347-7.022-7.77-7.94-18.479 11.022-8.252 23.984-26.039 26.493-42.238-12.573-8.623-23.131-19.143-31.53-31.275l-0.263-0.403c-17.391 8.642-29.309 25.41-50.34 29.037-5.294-6.92-8.226-4.792-10.588-15.839 6.801-9.586 9.053-31.48 10.588-44.876-11.892-5.091-37.401-20.331-47.69-15.836-11.567 12.298-16.983 30.549-29.144 42.235-3.442-2.316-6.535-2.362-13.234-2.646v-2.646h-2.646c-1.139-13.259-3.618-40.386-10.588-50.157-8.802-5.736-34.070-2.983-47.687-2.646v2.646h-2.646c-0.5 14.822-3.237 40.366-10.588 50.157-3.442 2.316-6.535 2.362-13.234 2.646v2.646h-2.646v-2.646c-11.438-11.803-16.539-37.586-34.443-42.238-13.843 11.816-38.365 6.644-39.742 31.678 6.151 8.749 8.234 28.322 10.588 39.595-5.301 1.279-9.821 4.073-13.212 7.894l-0.022 0.025c-11.342-3.209-42.598-31.097-47.69-26.399-13.115 8.031-32.292 26.057-31.792 39.598 11.417 8.912 16.197 24.306 26.493 34.316-1.669 4.632-0.51 2.565-2.646 5.281-2.293 7.793-3.612 9.995-10.588 13.198-10.144-7.204-32.446-10.007-47.69-10.558-6.641 14.855-15.679 30.064-18.548 47.515 16.94 5.152 29.788 18.528 45.041 26.399-1.678 4.697-2.646 10.116-2.646 15.762 0 0.026 0 0.055 0 0.081v-0.004c-1.097 0.657-1.991 1.549-2.628 2.613l-0.018 0.035-50.338 7.92v52.798c15.755 0.058 40.787 2.859 50.338 10.558 2.326 3.417 2.382 6.512 2.646 13.201 1.098 0.656 1.992 1.548 2.628 2.613l0.018 0.035c-12.706 3.625-40.338 19.773-45.041 31.676 9.289 12.678 8.574 38.164 26.496 42.238 9.703-6.489 32.317-9.023 45.041-10.558 3.564 7.199 6.177 8.822 7.94 18.479-11.62 11.283-17.496 28.357-29.144 39.595 7.463 11.808 23.944 31.297 39.742 34.318 9.888-10.324 27.64-24.583 45.041-26.399 3.323 4.285 5.558 5.294 10.588 7.92-5.679 15.561-9.469 33.557-10.565 52.278l-0.023 0.519c9.576 2.425 40.706 20.438 45.041 15.839 12.125-9.479 21.282-28.743 29.144-42.238 5.461 1.397 11.815 2.345 18.34 2.639l0.206 0.007zM760.317 561.623c-8.295-5.644-20.116-5.2-29.146-10.558-25.11-15.696-43.878-39.537-52.749-67.763l-0.237-0.871c-21.374-75.207 56.644-154.224 132.47-131.988 59.731 17.513 109.731 96.231 63.587 166.306-21.678 32.926-56.89 46.109-113.922 44.876zM63.515 511.466v-197.992h264.945v197.992h-264.945zM1057.053-16.49h-455.702v2.646c23.984 18.317 15.385 63.962 58.288 63.353v131.985h2.646c13.171-11.811 42.583-18.482 63.584-21.118v-110.873h264.947v192.698c33.258 22.303 41.343 61.674 66.235 92.393v-351.092zM410.592 281.804h50.34c0.656-1.098 1.548-1.992 2.613-2.628l0.035-0.018q2.646-23.756 5.294-47.519c7.795-4.594 22.107-13.868 29.144-10.558 10.139 3.371 40.128 31.142 45.041 26.399l34.443-31.676c-7.229-14.786-20.093-33.791-31.792-44.876 8.47-35.58 30.777-30.689 66.235-36.957v-50.157l-55.624-7.912c-2.833-10.086-11.017-21.838-7.94-29.037 3.582-10.098 31.69-39.095 26.493-44.876-7.11-11.286-21.889-28.789-37.091-31.676-9.987 10.631-28.588 25.998-45.041 29.037-5.505-4.842-15.352-5.951-21.194-10.558-7.572-11.734-7.752-38.38-10.588-52.796h-50.363q-5.294 27.713-10.588 55.436c-12.97 1.877-15.009 6.469-29.144 7.92-9.152-12.706-26.252-17.962-37.091-29.037-13.105 4.31-32.664 23.969-37.091 36.957 10.852 10.324 27.147 29.646 29.144 47.515-4.64 5.002-6.22 13.122-10.588 18.479-11.184 7.448-38.068 8.871-52.986 10.558v50.165h5.294c12.148 7.676 36.444 5.778 50.34 10.558 1.679 12.176 6.048 16.498 7.94 29.037-11.291 8.47-26.546 28.52-29.144 44.876 12.573 8.625 23.13 19.145 31.529 31.277l0.263 0.403c15.253-7.26 33.882-19.723 45.041-31.678 8.206 1.783 20.595 5.697 26.493 10.558 7.468 11.136 8.894 37.923 10.588 52.788zM423.841 157.733c-2.843-1.983-2.506-1.588-7.94-2.646-12.983-12.255-44.998-37.642-23.847-65.994 4.485-13.454 15.126-17.47 23.847-26.399 30.899-3.107 55.512-0.147 63.584 26.399 5.943 7.412 5.659 20.367 5.294 34.318-7.168 7.541-9.903 20.423-18.545 26.396-5.677 3.922-11.225 3.511-15.897 7.92h-26.496z" />
|
|
26
26
|
<glyph unicode="" glyph-name="table-split-columns" d="M0 898.556h1024v-898.56h-1024v898.56zM64 767.996v-192h896v192h-896zM64 511.996v-192h896v192h-896zM64 255.996v-192h896v192h-896z" />
|
|
27
|
-
<glyph unicode="" glyph-name="table-delete-row-top" d="M0 575.996h1024v-576h-1024v576zM64 511.996v-192h256v192h-256zM384 511.996v-192h256v192h-256zM704 511.996v-192h256v192h-256zM64 255.996v-192h256v192h-256zM384 255.996v-192h256v192h-256zM704 255.996v-192h256v192h-256zM380.792 705.204l206.592 206.182 52.628-52.38-206.592-206.182zM378.88 858.83l52.557 52.449 206.881-205.903-52.557-52.449z" />
|
|
28
|
-
<glyph unicode="" glyph-name="table-delete-row-bottom" d="M0 898.556h1024v-642.56h-1024v642.56zM64 767.996v-192h256v192h-256zM384 767.996v-192h256v192h-256zM704 767.996v-192h256v192h-256zM64 511.996v-192h256v192h-256zM384 511.996v-192h256v192h-256zM704 511.996v-192h256v192h-256zM380.792 11.444l206.592 206.182 52.628-52.38-206.592-206.182zM378.88 165.070l52.557 52.452 206.881-205.906-52.557-52.449z" />
|
|
29
|
-
<glyph unicode="" glyph-name="table-delete-column-right" d="M0 898.556h704v-898.56h-704v898.56zM64 767.996v-192h256v192h-256zM384 767.996v-192h256v192h-256zM64 511.996v-192h256v192h-256zM384 511.996v-192h256v192h-256zM64 255.996v-192h256v192h-256zM384 255.996v-192h256v192h-256zM749.432 351.924l206.592 206.182 52.628-52.38-206.592-206.182zM747.52 505.55l52.557 52.452 206.881-205.906-52.557-52.449z" />
|
|
30
|
-
<glyph unicode="" glyph-name="table-delete-column-left" d="M320 898.556h704v-898.56h-704v898.56zM384 767.996v-192h256v192h-256zM704 767.996v-192h256v192h-256zM384 511.996v-192h256v192h-256zM704 511.996v-192h256v192h-256zM384 255.996v-192h256v192h-256zM704 255.996v-192h256v192h-256zM19.832 351.924l206.592 206.182 52.628-52.38-206.592-206.182zM17.92 505.55l52.557 52.452 206.881-205.906-52.557-52.449z" />
|
|
31
|
-
<glyph unicode="" glyph-name="table-add-row-top" d="M0 575.387h1024v-575.391h-1024v575.391zM64 511.453v-191.795h256v191.795h-256zM384 511.453v-191.795h256v191.795h-256zM704 511.453v-191.795h256v191.795h-256zM64 255.725v-191.795h256v191.795h-256zM384 255.725v-191.795h256v191.795h-256zM704 255.725v-191.795h256v191.795h-256zM366.080 796.156h291.84v-74.24h-291.84v74.24zM473.6 906.236h74.24v-291.84h-74.24v291.84z" />
|
|
32
|
-
<glyph unicode="" glyph-name="table-add-row-bottom" d="M0 898.556h1024v-642.132h-1024v642.132zM64 768.083v-191.872h256v191.872h-256zM384 768.083v-191.872h256v191.872h-256zM704 768.083v-191.872h256v191.872h-256zM64 512.252v-191.872h256v191.872h-256zM384 512.252v-191.872h256v191.872h-256zM704 512.252v-191.872h256v191.872h-256zM366.080 120.316h291.84v-74.24h-291.84v74.24zM473.6 230.396h74.24v-291.84h-74.24v291.84z" />
|
|
33
|
-
<glyph unicode="" glyph-name="table-add-column-right" d="M0 898.556h703.56v-898.56h-703.56v898.56zM63.959 767.996v-192h255.841v192h-255.841zM383.759 767.996v-192h255.841v192h-255.841zM63.959 511.996v-192h255.841v192h-255.841zM383.759 511.996v-192h255.841v192h-255.841zM63.959 255.996v-192h255.841v192h-255.841zM383.759 255.996v-192h255.841v192h-255.841zM732.16 463.356h291.84v-74.24h-291.84v74.24zM839.68 573.436h74.24v-291.84h-74.24v291.84z" />
|
|
34
|
-
<glyph unicode="" glyph-name="table-add-column-left" d="M320.66 898.556h703.34v-898.56h-703.34v898.56zM384.599 767.996v-192h255.759v192h-255.759zM704.3 767.996v-192h255.759v192h-255.759zM384.599 511.996v-192h255.759v192h-255.759zM704.3 511.996v-192h255.759v192h-255.759zM384.599 255.996v-192h255.759v192h-255.759zM704.3 255.996v-192h255.759v192h-255.759zM0 463.356h291.84v-74.24h-291.84v74.24zM107.52 573.436h74.24v-291.84h-74.24v291.84z" />
|
|
35
27
|
<glyph unicode="" glyph-name="image" d="M959.884 831.996c0.040-0.034 0.082-0.076 0.116-0.116v-767.77c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.772c0.034 0.040 0.076 0.082 0.114 0.114h895.77zM960 895.996h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64v0zM832 671.996c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM896 127.996h-768v128l224 384 256-320h64l224 192z" />
|
|
36
|
-
<glyph unicode="" glyph-name="text-indent" horiz-adv-x="1170" d="M506.548 887.996h581.432v-125.712h-581.432v125.712zM82.269 699.428h1005.712v-125.712h-1005.712v125.712zM82.269 510.852h1005.712v-125.712h-1005.712v125.712zM82.269 322.284h1005.712v-125.712h-1005.712v125.712zM82.269 133.708h1005.712v-125.712h-1005.712v125.712z" />
|
|
37
28
|
<glyph unicode="" glyph-name="music" d="M960 959.996h64v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.368 100.29 160 224 160 62.684 0 119.342-18.4 160-48.040v368.040l-512-113.778v-494.222c0-88.366-100.288-160-224-160s-224 71.634-224 160c0 88.368 100.288 160 224 160 62.684 0 119.342-18.4 160-48.040v624.040l576 128z" />
|
|
38
29
|
<glyph unicode="" glyph-name="video" d="M0 831.996v-768h1024v768h-1024zM192 127.996h-128v128h128v-128zM192 383.996h-128v128h128v-128zM192 639.996h-128v128h128v-128zM768 127.996h-512v640h512v-640zM960 127.996h-128v128h128v-128zM960 383.996h-128v128h128v-128zM960 639.996h-128v128h128v-128zM384 639.996v-384l256 192z" />
|
|
39
30
|
<glyph unicode="" glyph-name="unlink" d="M440.238 324.225c-13.312 0-26.614 5.079-36.772 15.227-95.13 95.14-95.13 249.938 0 345.068l192 192c46.090 46.090 107.356 71.465 172.534 71.465s126.444-25.385 172.534-71.465c95.13-95.14 95.13-249.938 0-345.068l-87.767-87.767c-20.306-20.306-53.228-20.306-73.544 0s-20.306 53.228 0 73.544l87.767 87.767c54.579 54.589 54.579 143.401 0 197.99-26.44 26.44-61.604 41.001-99 41.001s-72.55-14.561-99-41.001l-192-192c-54.589-54.589-54.589-143.401 0-197.99 20.306-20.306 20.306-53.228 0-73.544-10.148-10.148-23.46-15.227-36.772-15.227zM256-52.003c-65.178 0-126.454 25.385-172.534 71.465-95.13 95.14-95.13 249.938 0 345.068l87.767 87.767c20.306 20.306 53.238 20.306 73.544 0s20.306-53.228 0-73.544l-87.767-87.767c-54.589-54.589-54.589-143.401 0-197.99 26.44-26.44 61.594-41.001 98.99-41.001s72.55 14.561 99 41.001l192 192c54.579 54.589 54.579 143.401 0 197.99-20.306 20.306-20.306 53.228 0 73.544s53.228 20.306 73.544 0c95.13-95.13 95.13-249.928 0-345.068l-192-192c-46.090-46.090-107.366-71.465-172.534-71.465zM71.68 826.876l10.24 51.2 51.2 10.24 819.2-819.2-10.24-51.2-51.2-10.24z" />
|
|
40
31
|
<glyph unicode="" glyph-name="select" d="M917.333 168v653.333h-653.333c0 51.548 41.785 93.333 93.333 93.333v0h560c51.548 0 93.333-41.785 93.333-93.333v-560c0-51.548-41.785-93.333-93.333-93.333v0zM170.667 728h560c51.548 0 93.333-41.785 93.333-93.333v0-560c0-51.548-41.785-93.333-93.333-93.333v0h-560c-51.548 0-93.333 41.785-93.333 93.333v560c0 51.548 41.785 93.333 93.333 93.333v0zM170.667 634.667v-560h560v560h-560zM602.8 526.071l69.067-62.814-242.2-266.138-173.786 160.438 63.329 68.6 104.719-96.695 178.871 196.605z" />
|
|
41
32
|
<glyph unicode="" glyph-name="tree" horiz-adv-x="960" d="M345.604 896h556.8c17.056 0 25.6-9.952 25.6-29.872v-164.264c0-19.912-8.536-29.872-25.6-29.872h-556.8c-17.064 0-25.6 9.952-25.6 29.872v164.264c0 19.912 8.536 29.872 25.6 29.872zM505.604 560h396.8c17.064 0 25.6-9.952 25.6-29.872v-164.264c0-19.912-8.536-29.872-25.6-29.872h-396.8c-17.056 0-25.6 9.952-25.6 29.872v164.264c0 19.912 8.536 29.872 25.6 29.872zM505.604 224h396.8c17.064 0 25.6-9.952 25.6-29.872v-164.264c0-19.912-8.536-29.872-25.6-29.872h-396.8c-17.056 0-25.6 9.952-25.6 29.872v164.264c0 19.912 8.536 29.872 25.6 29.872zM384.004 418.128c14.14 0 25.6 13.368 25.6 29.872 0 16.492-11.464 29.872-25.6 29.872h-230.415v194.128h44.8c14.14 0 25.608 13.368 25.608 29.872v164.264c0.008 16.496-11.464 29.872-25.608 29.872h-140.792c-14.14 0-25.6-13.368-25.6-29.872v-164.264c0-16.496 11.456-29.872 25.6-29.872h44.8v-560c0-16.492 11.464-29.872 25.6-29.872h256.008c14.14 0 25.6 13.368 25.6 29.872 0 16.492-11.464 29.872-25.6 29.872h-230.415v276.264h230.408z" />
|
|
42
|
-
<glyph unicode="" glyph-name="setting" d="M614.4 806.4c0-56.554-45.846-102.4-102.4-102.4s-102.4 45.846-102.4 102.4c0 56.554 45.846 102.4 102.4 102.4s102.4-45.846 102.4-102.4zM614.4 448c0-56.554-45.846-102.4-102.4-102.4s-102.4 45.846-102.4 102.4c0 56.554 45.846 102.4 102.4 102.4s102.4-45.846 102.4-102.4zM614.4 89.6c0-56.554-45.846-102.4-102.4-102.4s-102.4 45.846-102.4 102.4c0 56.554 45.846 102.4 102.4 102.4s102.4-45.846 102.4-102.4z" />
|
|
43
33
|
<glyph unicode="" glyph-name="more" d="M373.269 682.667c41.237 0 74.667 33.429 74.667 74.667s-33.429 74.667-74.667 74.667v0c-41.237 0-74.667-33.429-74.667-74.667s33.429-74.667 74.667-74.667v0zM373.269 373.333c41.237 0 74.667 33.429 74.667 74.667s-33.429 74.667-74.667 74.667v0c-41.237 0-74.667-33.429-74.667-74.667s33.429-74.667 74.667-74.667v0zM447.936 138.667c0-41.237-33.429-74.667-74.667-74.667s-74.667 33.429-74.667 74.667v0c0 41.237 33.429 74.667 74.667 74.667s74.667-33.429 74.667-74.667v0zM650.73 682.667c41.237 0 74.667 33.429 74.667 74.667s-33.429 74.667-74.667 74.667v0c-41.237 0-74.667-33.429-74.667-74.667s33.429-74.667 74.667-74.667v0zM725.269 448c0-41.237-33.429-74.667-74.667-74.667s-74.667 33.429-74.667 74.667v0c0 41.237 33.429 74.667 74.667 74.667s74.667-33.429 74.667-74.667v0zM650.73 64c41.237 0 74.667 33.429 74.667 74.667s-33.429 74.667-74.667 74.667v0c-41.237 0-74.667-33.429-74.667-74.667s33.429-74.667 74.667-74.667v0z" />
|
|
44
34
|
<glyph unicode="" glyph-name="checkmark" d="M935.534 777.143l51.895-51.931-625.371-624.64-325.486 325.303 51.931 51.895 273.554-273.408z" />
|
|
45
|
-
<glyph unicode="" glyph-name="bullhorn" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502s5.466-116.208 14.030-161.5c280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078s4.938 65.478 13.9 89.078c4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
|
|
46
35
|
<glyph unicode="" glyph-name="text-wrap" d="M791.276 502.789q91.362 0 156.616-65.254t65.254-156.616-65.254-156.616-156.616-65.254h-112.25v-112.25l-167.039 167.039 167.039 167.039v-112.25h125.276q44.379 0 78.28 33.914t33.914 78.28-33.914 78.28-78.28 33.914h-738.63v109.634h725.537zM958.315 836.854v-109.634h-892.574v109.634h892.574zM65.685 59.146v109.634h334.065v-109.634h-334.065z" />
|
|
47
36
|
<glyph unicode="" glyph-name="heading-h1" d="M903.892 644.902c13.056-9.498 21.441-24.715 21.442-41.902v0-516.667c-0.004-28.529-23.137-51.66-51.667-51.66s-51.663 23.131-51.667 51.66v0 445.005l-87.007-29.037c-4.869-1.674-10.487-2.645-16.327-2.645-28.538 0-51.676 23.139-51.676 51.676 0 22.697 14.634 41.987 34.986 48.925l0.363 0.107 155 51.667c4.858 1.666 10.452 2.632 16.277 2.632 11.353 0 21.847-3.661 30.372-9.865l-0.149 0.103zM47 861.333c28.532 0 51.667-23.135 51.667-51.667v0-310h310v310c0 0.002 0 0.004 0 0.007 0 28.532 23.135 51.667 51.667 51.667s51.667-23.135 51.667-51.667c0-0.002 0-0.005 0-0.007v0-723.333c0-0.002 0-0.004 0-0.007 0-28.532-23.135-51.667-51.667-51.667s-51.667 23.135-51.667 51.667c0 0.002 0 0.005 0 0.007v0 310h-310v-310c0-28.532-23.135-51.667-51.667-51.667s-51.667 23.135-51.667 51.667v0 723.333c0 28.532 23.135 51.667 51.667 51.667v0z" />
|
|
48
37
|
<glyph unicode="" glyph-name="heading-h2" d="M816 549.333c-55.968 0-101.333-45.365-101.333-101.333v0-25.333c0-27.98-22.687-50.667-50.667-50.667s-50.667 22.687-50.667 50.667v0 25.333c0 111.929 90.738 202.667 202.667 202.667v0h8.715c0.018 0 0.047 0 0.067 0 107.116 0 193.952-86.836 193.952-193.952 0-53.591-21.734-102.1-56.864-137.204l-175.561-175.511h181.691c0.002 0 0.004 0 0.007 0 27.98 0 50.667-22.687 50.667-50.667s-22.687-50.667-50.667-50.667c-0.002 0-0.005 0-0.007 0h-304c-27.976 0.005-50.658 22.69-50.658 50.667 0 13.988 5.67 26.653 14.836 35.821l262.048 262.048c16.773 16.764 27.15 39.926 27.15 65.512 0 51.155-41.463 92.619-92.619 92.619-0.012 0-0.033 0-0.045 0h-8.713zM56 853.333c27.98 0 50.667-22.687 50.667-50.667v0-304h304v304c0 0.002 0 0.004 0 0.007 0 27.98 22.687 50.667 50.667 50.667s50.667-22.687 50.667-50.667c0-0.002 0-0.005 0-0.007v0-709.333c0-0.002 0-0.004 0-0.007 0-27.98-22.687-50.667-50.667-50.667s-50.667 22.687-50.667 50.667c0 0.002 0 0.005 0 0.007v0 304h-304v-304c0-27.98-22.687-50.667-50.667-50.667s-50.667 22.687-50.667 50.667v0 709.333c0 27.98 22.687 50.667 50.667 50.667v0z" />
|
|
@@ -53,29 +42,13 @@
|
|
|
53
42
|
<glyph unicode="" glyph-name="heading" d="M258.667 853.333c27.98 0 50.667-22.687 50.667-50.667v0-304h405.333v304c0 0.002 0 0.004 0 0.007 0 27.98 22.687 50.667 50.667 50.667s50.667-22.687 50.667-50.667c0-0.002 0-0.005 0-0.007v0-709.333c0-0.002 0-0.004 0-0.007 0-27.98-22.687-50.667-50.667-50.667s-50.667 22.687-50.667 50.667c0 0.002 0 0.005 0 0.007v0 304h-405.333v-304c0-0.002 0-0.004 0-0.007 0-27.98-22.687-50.667-50.667-50.667s-50.667 22.687-50.667 50.667c0 0.002 0 0.005 0 0.007v0 709.333c0 27.98 22.687 50.667 50.667 50.667v0z" />
|
|
54
43
|
<glyph unicode="" glyph-name="copy" d="M640 704v256h-448l-192-192v-576h384v-256h640v768h-384zM192 869.49v-101.49h-101.49l101.49 101.49zM64 256v448h192v192h320v-192l-192-192v-256h-320zM576 613.49v-101.49h-101.49l101.49 101.49zM960 0h-512v448h192v192h320v-640z" />
|
|
55
44
|
<glyph unicode="" glyph-name="paste" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-192l-192-192v-256h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM576 549.49v-101.49h-101.49l101.49 101.49zM960 0h-512v384h192v192h320v-576z" />
|
|
56
|
-
<glyph unicode="" glyph-name="price-tag" d="M976 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM736 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
|
|
57
|
-
<glyph unicode="" glyph-name="pushpin" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
|
|
58
|
-
<glyph unicode="" glyph-name="pushpin1" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
|
|
59
|
-
<glyph unicode="" glyph-name="upload" d="M448 383.996h128v256h192l-256 256-256-256h192zM640 527.996v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
|
|
60
45
|
<glyph unicode="" glyph-name="history-back" d="M761.862-64.004c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
|
|
61
46
|
<glyph unicode="" glyph-name="history-forward" d="M576 711.624v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
|
|
62
47
|
<glyph unicode="" glyph-name="quotes-right" d="M800 319.996c-123.712 0-224 100.29-224 224 0 123.712 100.288 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.634 11.636 22.252 24.016 31.83 37.020-11.438-1.8-23.16-2.746-35.104-2.746zM224 319.996c-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.636 11.636 22.254 24.016 31.832 37.020-11.44-1.8-23.16-2.746-35.106-2.746z" />
|
|
63
|
-
<glyph unicode="" glyph-name="loading" d="M384 831.996c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM790.994 447.996c0 0 0 0 0 0 0 57.993 47.013 105.006 105.006 105.006s105.006-47.013 105.006-105.006c0 0 0 0 0 0 0-57.993-47.013-105.006-105.006-105.006s-105.006 47.013-105.006 105.006zM688.424 176.466c0 52.526 42.58 95.106 95.106 95.106s95.106-42.58 95.106-95.106c0-52.526-42.58-95.106-95.106-95.106s-95.106 42.58-95.106 95.106zM425.862 63.996c0 47.573 38.565 86.138 86.138 86.138s86.138-38.565 86.138-86.138c0-47.573-38.565-86.138-86.138-86.138s-86.138 38.565-86.138 86.138zM162.454 176.466c0 43.088 34.93 78.018 78.018 78.018s78.018-34.93 78.018-78.018c0-43.088-34.93-78.018-78.018-78.018s-78.018 34.93-78.018 78.018zM57.338 447.996c0 39.026 31.636 70.662 70.662 70.662s70.662-31.636 70.662-70.662c0-39.026-31.636-70.662-70.662-70.662s-70.662 31.636-70.662 70.662zM176.472 719.524c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM899.464 719.524c0-64.024-51.906-115.934-115.936-115.934-64.024 0-115.936 51.91-115.936 115.934 0 64.032 51.912 115.934 115.936 115.934 64.030 0 115.936-51.902 115.936-115.934z" />
|
|
64
|
-
<glyph unicode="" glyph-name="search" d="M992.262 88.6l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 319.996c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
|
|
65
|
-
<glyph unicode="" glyph-name="enlarge" horiz-adv-x="880" d="M848.001 856h-331.5l127.5-127.5-153-153 76.5-76.5 153 153 127.5-127.5zM848.001 40v331.5l-127.5-127.5-153 153-76.5-76.5 153-153-127.5-127.5zM32.001 40h331.5l-127.5 127.5 153 153-76.5 76.5-153-153-127.5 127.5zM32.001 856v-331.5l127.5 127.5 153-153 76.5 76.5-153 153 127.5 127.5z" />
|
|
66
|
-
<glyph unicode="" glyph-name="shrink" d="M576 511.996h416l-160 160 192 192-96 96-192-192-160 160zM576 383.996v-416l160 160 192-192 96 96-192 192 160 160zM448 384h-416l160-160-192-192 96-96 192 192 160-160zM448 511.996v416l-160-160-192 192-96-96 192-192-160-160z" />
|
|
67
48
|
<glyph unicode="" glyph-name="bin" d="M128 639.996v-640c0-35.2 28.8-64 64-64h576c35.2 0 64 28.8 64 64v640h-704zM320 63.996h-64v448h64v-448zM448 63.996h-64v448h64v-448zM576 63.996h-64v448h64v-448zM704 63.996h-64v448h64v-448zM848 831.996h-208v80c0 26.4-21.6 48-48 48h-224c-26.4 0-48-21.6-48-48v-80h-208c-26.4 0-48-21.6-48-48v-80h832v80c0 26.4-21.6 48-48 48zM576 831.996h-192v63.198h192v-63.198z" />
|
|
68
49
|
<glyph unicode="" glyph-name="list-numbered" d="M384 127.996h640v-128h-640zM384 511.996h640v-128h-640zM384 895.996h640v-128h-640zM192 959.996v-256h-64v192h-64v64zM128 433.996v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 255.996v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
|
|
69
50
|
<glyph unicode="" glyph-name="list" d="M384 895.996h640v-128h-640v128zM384 511.996h640v-128h-640v128zM384 127.996h640v-128h-640v128zM0 831.996c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 447.996c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 63.996c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
|
|
70
51
|
<glyph unicode="" glyph-name="link" d="M440.236 324.23c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52.004c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" />
|
|
71
|
-
<glyph unicode="" glyph-name="emoji" d="M512 959.996c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 703.996c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 703.996c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM512 127.996c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
|
|
72
|
-
<glyph unicode="" glyph-name="warning" d="M512 867.226l429.102-855.226h-858.206l429.104 855.226zM512 960c-22.070 0-44.14-14.882-60.884-44.648l-437.074-871.112c-33.486-59.532-5-108.24 63.304-108.24h869.308c68.3 0 96.792 48.708 63.3 108.24h0.002l-437.074 871.112c-16.742 29.766-38.812 44.648-60.882 44.648v0zM576 128c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM512 256c-35.346 0-64 28.654-64 64v192c0 35.346 28.654 64 64 64s64-28.654 64-64v-192c0-35.346-28.654-64-64-64z" />
|
|
73
|
-
<glyph unicode="" glyph-name="notification" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
|
|
74
|
-
<glyph unicode="" glyph-name="question" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
|
|
75
|
-
<glyph unicode="" glyph-name="plus" d="M992 575.996h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
|
|
76
|
-
<glyph unicode="" glyph-name="info" d="M448 656c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zM640 192h-256v64h64v192h-64v64h192v-256h64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
|
|
77
|
-
<glyph unicode="" glyph-name="cancel-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM672 704l-160-160-160 160-96-96 160-160-160-160 96-96 160 160 160-160 96 96-160 160 160 160z" />
|
|
78
|
-
<glyph unicode="" glyph-name="blocked" d="M874.040 810.040c-96.706 96.702-225.28 149.96-362.040 149.96s-265.334-53.258-362.040-149.96c-96.702-96.706-149.96-225.28-149.96-362.040s53.258-265.334 149.96-362.040c96.706-96.702 225.28-149.96 362.040-149.96s265.334 53.258 362.040 149.96c96.702 96.706 149.96 225.28 149.96 362.040s-53.258 265.334-149.96 362.040zM896 448c0-82.814-26.354-159.588-71.112-222.38l-535.266 535.268c62.792 44.758 139.564 71.112 222.378 71.112 211.738 0 384-172.262 384-384zM128 448c0 82.814 26.354 159.586 71.112 222.378l535.27-535.268c-62.794-44.756-139.568-71.11-222.382-71.11-211.738 0-384 172.262-384 384z" />
|
|
79
52
|
<glyph unicode="" glyph-name="command" d="M736 63.996c-88.224 0-160 71.776-160 160v96h-128v-96c0-88.224-71.776-160-160-160s-160 71.776-160 160 71.776 160 160 160h96v128h-96c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160v-96h128v96c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160h-96v-128h96c88.224 0 160-71.776 160-160s-71.774-160-160-160zM640 319.996v-96c0-52.934 43.066-96 96-96s96 43.066 96 96-43.066 96-96 96h-96zM288 319.996c-52.934 0-96-43.066-96-96s43.066-96 96-96 96 43.066 96 96v96h-96zM448 383.996h128v128h-128v-128zM640 575.996h96c52.934 0 96 43.066 96 96s-43.066 96-96 96-96-43.066-96-96v-96zM288 767.996c-52.934 0-96-43.066-96-96s43.066-96 96-96h96v96c0 52.934-43.064 96-96 96z" />
|
|
80
53
|
<glyph unicode="" glyph-name="shift" d="M672 63.996h-320c-17.672 0-32 14.326-32 32v352h-128c-12.942 0-24.612 7.796-29.564 19.754-4.954 11.958-2.214 25.722 6.936 34.874l320 320c12.498 12.496 32.758 12.496 45.254 0l320-320c9.152-9.152 11.89-22.916 6.938-34.874s-16.62-19.754-29.564-19.754h-128v-352c0-17.674-14.326-32-32-32zM384 127.996h256v352c0 17.672 14.326 32 32 32h82.744l-242.744 242.746-242.744-242.746h82.744c17.672 0 32-14.328 32-32v-352z" />
|
|
81
54
|
<glyph unicode="" glyph-name="ctrl" d="M736.014 511.996c-8.908 0-17.77 3.698-24.096 10.928l-199.918 228.478-199.918-228.478c-11.636-13.3-31.856-14.65-45.154-3.010-13.3 11.638-14.648 31.854-3.010 45.154l224 256c6.076 6.944 14.854 10.928 24.082 10.928s18.006-3.984 24.082-10.928l224-256c11.638-13.3 10.292-33.516-3.010-45.154-6.070-5.312-13.582-7.918-21.058-7.918z" />
|
|
@@ -92,7 +65,6 @@
|
|
|
92
65
|
<glyph unicode="" glyph-name="strikethrough" d="M1024 447.996v-64h-234.506c27.504-38.51 42.506-82.692 42.506-128 0-70.878-36.66-139.026-100.58-186.964-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128h-512v64h299.518c-2.338 1.654-4.656 3.324-6.938 5.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 78.978 0 154.054-22.678 212.482-64h299.518z" />
|
|
93
66
|
<glyph unicode="" glyph-name="superscript" d="M817.998 753.996v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM726.001 703.996h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
|
|
94
67
|
<glyph unicode="" glyph-name="subscript" d="M817.999 49.996v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM726.001 703.996h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
|
|
95
|
-
<glyph unicode="" glyph-name="clear-formatting" d="M0 63.996h576v-128h-576zM896 831.996h-302.56l-183.764-704h-132.288l183.762 704h-269.15v128h704zM929.774-64.004l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
|
|
96
68
|
<glyph unicode="" glyph-name="table" d="M0 895.996v-896h1024v896h-1024zM384 319.996v192h256v-192h-256zM640 255.996v-192h-256v192h256zM640 767.996v-192h-256v192h256zM320 767.996v-192h-256v192h256zM64 511.996h256v-192h-256v192zM704 511.996h256v-192h-256v192zM704 575.996v192h256v-192h-256zM64 255.996h256v-192h-256v192zM704 63.996v192h256v-192h-256z" />
|
|
97
69
|
<glyph unicode="" glyph-name="pilcrow" d="M384 960h512v-128h-128v-896h-128v896h-128v-896h-128v512c-141.384 0-256 114.616-256 256s114.616 256 256 256z" />
|
|
98
70
|
<glyph unicode="" glyph-name="ltr" d="M512 959.996c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM0 255.996l256 256-256 256z" />
|
|
@@ -104,5 +76,4 @@
|
|
|
104
76
|
<glyph unicode="" glyph-name="indent-increase" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
|
|
105
77
|
<glyph unicode="" glyph-name="indent-decrease" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
|
|
106
78
|
<glyph unicode="" glyph-name="code" horiz-adv-x="1280" d="M832 223.996l96-96 320 320-320 320-96-96 224-224zM448 671.996l-96 96-320-320 320-320 96 96-224 224zM701.298 809.477l69.468-18.944-191.987-704.026-69.468 18.944 191.987 704.026z" />
|
|
107
|
-
<glyph unicode="" glyph-name="terminal" d="M0 895.996v-896h1024v896h-1024zM960 63.996h-896v768h896v-768zM896 767.996h-768v-640h768v640zM448 447.996h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 319.996h-192v64h192v-64z" />
|
|
108
79
|
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
package/bundles/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.btn[vf-
|
|
1
|
+
.btn[vf-d94b56]{align-items:center;background:none;border:none;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;font-size:inherit;height:28px;outline:none;padding:6px 5px;transition:all .2s}.btn>span[vf-d94b56]{white-space:nowrap}.btn[vf-d94b56]:hover{background:rgba(0,0,0,.1)}.btn-arrow[vf-d94b56]{position:relative;transform:rotate(0);transform-origin:50%;width:1em}.btn.active[vf-d94b56]{background:rgba(0,0,0,.1)}.btn.active .btn-arrow[vf-d94b56]{transform:rotate(180deg)}.btn.highlight[vf-d94b56]{background-color:rgba(41,110,255,.063);color:#296eff}.component-toolbar[vf-ac7e8d]{position:relative;z-index:3}.toolbar[vf-ac7e8d]{background:#fff;border:1px solid #dee0e3;border-radius:5px;bottom:10px;box-shadow:0 4px 8px rgba(0,0,0,.08);box-sizing:border-box;display:flex;font-size:14px;height:36px;opacity:0;padding:0 6px;pointer-events:none;position:absolute;text-align:left;transform:translateY(10px)}.toolbar.active[vf-ac7e8d]{opacity:1;pointer-events:auto;transform:translateY(0);transition-duration:.2s;transition-property:all;transition-timing-function:ease}.divider[vf-ede279]{border-top:1px solid #eee;margin:6px 0}.drag-resize[vf-8abf2c]{position:relative;width:100%}.drag-resize .container[vf-8abf2c]{font-size:0;text-indent:0}.drag-resize .resize-tool[vf-8abf2c]{align-items:center;border:1px dashed #296eff;display:none;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.drag-resize .resize-tool.active[vf-8abf2c]{display:flex}.drag-resize .mask[vf-8abf2c]{background-color:rgba(0,0,0,.8);border-radius:3px;color:#fff;font-size:14px;padding:3px 8px;pointer-events:none;position:relative;text-shadow:1px 2px 3px rgba(0,0,0,.7);user-select:none;white-space:nowrap;z-index:10}.drag-resize .btn-group[vf-8abf2c]{height:100%;left:0;position:absolute;top:0;width:100%}.drag-resize button[vf-8abf2c]{background:#fff;border:2px solid #296eff;border-radius:50%;box-sizing:border-box;cursor:pointer;font-size:0;height:14px;outline:none;padding:0;pointer-events:auto;position:absolute;width:14px}.drag-resize button[vf-8abf2c]:hover{background-color:#fff;box-shadow:0 0 0 3px rgba(18,150,219,.3)}.drag-resize button[vf-8abf2c]:first-child,.drag-resize button[vf-8abf2c]:nth-child(2),.drag-resize button[vf-8abf2c]:nth-child(3){margin-top:-5px;top:0}.drag-resize button[vf-8abf2c]:nth-child(3),.drag-resize button[vf-8abf2c]:nth-child(4),.drag-resize button[vf-8abf2c]:nth-child(5){margin-right:-5px;right:0}.drag-resize button[vf-8abf2c]:nth-child(5),.drag-resize button[vf-8abf2c]:nth-child(6),.drag-resize button[vf-8abf2c]:nth-child(7){bottom:0;margin-bottom:-5px}.drag-resize button[vf-8abf2c]:first-child,.drag-resize button[vf-8abf2c]:nth-child(7),.drag-resize button[vf-8abf2c]:nth-child(8){left:0;margin-left:-5px}.drag-resize button[vf-8abf2c]:nth-child(2),.drag-resize button[vf-8abf2c]:nth-child(6){left:50%;margin-left:-5px}.drag-resize button[vf-8abf2c]:nth-child(4),.drag-resize button[vf-8abf2c]:nth-child(8){margin-top:-5px;top:50%}.drag-resize button[vf-8abf2c]:first-child{cursor:nw-resize}.drag-resize button[vf-8abf2c]:nth-child(2){cursor:n-resize}.drag-resize button[vf-8abf2c]:nth-child(3){cursor:ne-resize}.drag-resize button[vf-8abf2c]:nth-child(4){cursor:e-resize}.drag-resize button[vf-8abf2c]:nth-child(5){cursor:se-resize}.drag-resize button[vf-8abf2c]:nth-child(6){cursor:s-resize}.drag-resize button[vf-8abf2c]:nth-child(7){cursor:sw-resize}.drag-resize button[vf-8abf2c]:nth-child(8){cursor:w-resize}.dropdown[vf-a99c5e]{display:inline-block;position:relative}.dropdown[vf-a99c5e]:hover{z-index:1}.dropdown-btn[vf-a99c5e]{display:flex;width:100%}.dropdown-btn-inner[vf-a99c5e]{flex:1}.dropdown-menu[vf-8a05e9]{background:#fff;border:1px solid #ddd;border-radius:5px;box-shadow:2px 3px 5px rgba(0,0,0,.1);box-sizing:content-box;height:0;left:-10px;max-height:400px;opacity:0;overflow-y:auto;position:absolute;top:100%;transition-duration:0s;transition:transform .3s,opacity .3s;user-select:none;width:200px;z-index:10}.dropdown-menu[vf-8a05e9]:hover::-webkit-scrollbar-thumb{background-color:#80848f}.dropdown-menu[vf-8a05e9]::-webkit-scrollbar-thumb{border:0;border-radius:4px;height:50px;outline:0;outline-offset:0}.dropdown-menu[vf-8a05e9]::-webkit-scrollbar-thumb:hover{background-color:#495060;height:50px}.dropdown-menu[vf-8a05e9]::-webkit-scrollbar{border-radius:3px;height:6px;width:6px}.dropdown-menu-content[vf-8a05e9]{box-sizing:content-box;padding:6px}.keymap[vf-c32a7b]{align-items:center;display:inline-flex;font-family:Microsoft YaHei Mono,Menlo,Monaco,Consolas,Courier New,monospace;font-size:.9em;margin-left:1em;opacity:.6}.keymap[vf-c32a7b] span{margin:0 2px}.menu-heading[vf-acaa5f]{font-size:14px;opacity:.5;padding:10px}.menu-item[vf-c3b9dc]{border-radius:4px;box-sizing:content-box;cursor:pointer;display:flex;font-size:14px;height:26px;justify-content:space-between;line-height:26px;padding:2px 10px;transition:background-color .2s}.menu-item-content[vf-c3b9dc]{display:flex;flex:1;justify-content:space-between}.menu-item.disabled[vf-c3b9dc]{cursor:not-allowed;opacity:.5}.menu-item[vf-c3b9dc]:hover{background:#eee}.menu-item.active[vf-c3b9dc]{background:rgba(0,0,0,.1)}.menu-icon[vf-c3b9dc]{display:inline-block;width:1.8em}.menu-check[vf-c3b9dc]{display:none}.menu-check.checked[vf-c3b9dc]{color:#296eff;display:block}.popup[vf-a23c47]{background:#fff;border:1px solid #ddd;border-radius:5px;box-shadow:2px 3px 5px rgba(0,0,0,.1);overflow:hidden;position:absolute}.toolbar-item[vf-216815]{padding:3px}.heading-icon[vf-2a8a65]{font-size:1.2em;font-weight:700}.heading-icon sub[vf-2a8a65]{font-weight:400}.xnote-source-code.atom-one-dark pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.atom-one-dark code.hljs{padding:3px 5px}.xnote-source-code.atom-one-dark .hljs{background:#282c34;color:#abb2bf}.xnote-source-code.atom-one-dark .hljs-comment,.xnote-source-code.atom-one-dark .hljs-quote{color:#5c6370;font-style:italic}.xnote-source-code.atom-one-dark .hljs-doctag,.xnote-source-code.atom-one-dark .hljs-formula,.xnote-source-code.atom-one-dark .hljs-keyword{color:#c678dd}.xnote-source-code.atom-one-dark .hljs-deletion,.xnote-source-code.atom-one-dark .hljs-name,.xnote-source-code.atom-one-dark .hljs-section,.xnote-source-code.atom-one-dark .hljs-selector-tag,.xnote-source-code.atom-one-dark .hljs-subst{color:#e06c75}.xnote-source-code.atom-one-dark .hljs-literal{color:#56b6c2}.xnote-source-code.atom-one-dark .hljs-addition,.xnote-source-code.atom-one-dark .hljs-attribute,.xnote-source-code.atom-one-dark .hljs-meta .hljs-string,.xnote-source-code.atom-one-dark .hljs-regexp,.xnote-source-code.atom-one-dark .hljs-string{color:#98c379}.xnote-source-code.atom-one-dark .hljs-attr,.xnote-source-code.atom-one-dark .hljs-number,.xnote-source-code.atom-one-dark .hljs-selector-attr,.xnote-source-code.atom-one-dark .hljs-selector-class,.xnote-source-code.atom-one-dark .hljs-selector-pseudo,.xnote-source-code.atom-one-dark .hljs-template-variable,.xnote-source-code.atom-one-dark .hljs-type,.xnote-source-code.atom-one-dark .hljs-variable{color:#d19a66}.xnote-source-code.atom-one-dark .hljs-bullet,.xnote-source-code.atom-one-dark .hljs-link,.xnote-source-code.atom-one-dark .hljs-meta,.xnote-source-code.atom-one-dark .hljs-selector-id,.xnote-source-code.atom-one-dark .hljs-symbol,.xnote-source-code.atom-one-dark .hljs-title{color:#61aeee}.xnote-source-code.atom-one-dark .hljs-built_in,.xnote-source-code.atom-one-dark .hljs-class .hljs-title,.xnote-source-code.atom-one-dark .hljs-title.class_{color:#e6c07b}.xnote-source-code.atom-one-dark .hljs-emphasis{font-style:italic}.xnote-source-code.atom-one-dark .hljs-strong{font-weight:700}.xnote-source-code.atom-one-dark .hljs-link{text-decoration:underline}.xnote-source-code.foundation pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.foundation code.hljs{padding:3px 5px}.xnote-source-code.foundation .hljs{background:#eee;color:#000}.xnote-source-code.foundation .hljs-addition,.xnote-source-code.foundation .hljs-attribute,.xnote-source-code.foundation .hljs-emphasis,.xnote-source-code.foundation .hljs-link{color:#070}.xnote-source-code.foundation .hljs-emphasis{font-style:italic}.xnote-source-code.foundation .hljs-deletion,.xnote-source-code.foundation .hljs-string,.xnote-source-code.foundation .hljs-strong{color:#d14}.xnote-source-code.foundation .hljs-strong{font-weight:700}.xnote-source-code.foundation .hljs-comment,.xnote-source-code.foundation .hljs-quote{color:#998;font-style:italic}.xnote-source-code.foundation .hljs-section,.xnote-source-code.foundation .hljs-title{color:#900}.xnote-source-code.foundation .hljs-class .hljs-title,.xnote-source-code.foundation .hljs-title.class_,.xnote-source-code.foundation .hljs-type{color:#458}.xnote-source-code.foundation .hljs-template-variable,.xnote-source-code.foundation .hljs-variable{color:#369}.xnote-source-code.foundation .hljs-bullet{color:#970}.xnote-source-code.foundation .hljs-meta{color:#34b}.xnote-source-code.foundation .hljs-code,.xnote-source-code.foundation .hljs-keyword,.xnote-source-code.foundation .hljs-literal,.xnote-source-code.foundation .hljs-number,.xnote-source-code.foundation .hljs-selector-tag{color:#099}.xnote-source-code.foundation .hljs-regexp{background-color:#fff0ff;color:#808}.xnote-source-code.foundation .hljs-symbol{color:#990073}.xnote-source-code.foundation .hljs-name,.xnote-source-code.foundation .hljs-selector-class,.xnote-source-code.foundation .hljs-selector-id,.xnote-source-code.foundation .hljs-tag{color:#070}.xnote-source-code.github{
|
|
2
2
|
/*!
|
|
3
3
|
Theme: GitHub
|
|
4
4
|
Description: Light theme as seen on github.com
|
|
@@ -21,4 +21,4 @@
|
|
|
21
21
|
Updated for @stackoverflow/stacks v0.64.0
|
|
22
22
|
Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
|
|
23
23
|
Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
|
|
24
|
-
*/}.xnote-source-code.stackoverflow-light pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.stackoverflow-light code.hljs{padding:3px 5px}.xnote-source-code.stackoverflow-light .hljs{background:#f6f6f6;color:#2f3337}.xnote-source-code.stackoverflow-light .hljs-subst{color:#2f3337}.xnote-source-code.stackoverflow-light .hljs-comment{color:#656e77}.xnote-source-code.stackoverflow-light .hljs-attr,.xnote-source-code.stackoverflow-light .hljs-doctag,.xnote-source-code.stackoverflow-light .hljs-keyword,.xnote-source-code.stackoverflow-light .hljs-meta .hljs-keyword,.xnote-source-code.stackoverflow-light .hljs-section,.xnote-source-code.stackoverflow-light .hljs-selector-tag{color:#015692}.xnote-source-code.stackoverflow-light .hljs-attribute{color:#803378}.xnote-source-code.stackoverflow-light .hljs-name,.xnote-source-code.stackoverflow-light .hljs-number,.xnote-source-code.stackoverflow-light .hljs-quote,.xnote-source-code.stackoverflow-light .hljs-selector-id,.xnote-source-code.stackoverflow-light .hljs-template-tag,.xnote-source-code.stackoverflow-light .hljs-type{color:#b75501}.xnote-source-code.stackoverflow-light .hljs-selector-class{color:#015692}.xnote-source-code.stackoverflow-light .hljs-link,.xnote-source-code.stackoverflow-light .hljs-regexp,.xnote-source-code.stackoverflow-light .hljs-selector-attr,.xnote-source-code.stackoverflow-light .hljs-string,.xnote-source-code.stackoverflow-light .hljs-symbol,.xnote-source-code.stackoverflow-light .hljs-template-variable,.xnote-source-code.stackoverflow-light .hljs-variable{color:#54790d}.xnote-source-code.stackoverflow-light .hljs-meta,.xnote-source-code.stackoverflow-light .hljs-selector-pseudo{color:#015692}.xnote-source-code.stackoverflow-light .hljs-built_in,.xnote-source-code.stackoverflow-light .hljs-literal,.xnote-source-code.stackoverflow-light .hljs-title{color:#b75501}.xnote-source-code.stackoverflow-light .hljs-bullet,.xnote-source-code.stackoverflow-light .hljs-code{color:#535a60}.xnote-source-code.stackoverflow-light .hljs-meta .hljs-string{color:#54790d}.xnote-source-code.stackoverflow-light .hljs-deletion{color:#c02d2e}.xnote-source-code.stackoverflow-light .hljs-addition{color:#2f6f44}.xnote-source-code.stackoverflow-light .hljs-emphasis{font-style:italic}.xnote-source-code.stackoverflow-light .hljs-strong{font-weight:700}.xnote-source-code.vs2015 pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.vs2015 code.hljs{padding:3px 5px}.xnote-source-code.vs2015 .hljs{background:#1e1e1e;color:#dcdcdc}.xnote-source-code.vs2015 .hljs-keyword,.xnote-source-code.vs2015 .hljs-literal,.xnote-source-code.vs2015 .hljs-name,.xnote-source-code.vs2015 .hljs-symbol{color:#569cd6}.xnote-source-code.vs2015 .hljs-link{color:#569cd6;text-decoration:underline}.xnote-source-code.vs2015 .hljs-built_in,.xnote-source-code.vs2015 .hljs-type{color:#4ec9b0}.xnote-source-code.vs2015 .hljs-class,.xnote-source-code.vs2015 .hljs-number{color:#b8d7a3}.xnote-source-code.vs2015 .hljs-meta .hljs-string,.xnote-source-code.vs2015 .hljs-string{color:#d69d85}.xnote-source-code.vs2015 .hljs-regexp,.xnote-source-code.vs2015 .hljs-template-tag{color:#9a5334}.xnote-source-code.vs2015 .hljs-formula,.xnote-source-code.vs2015 .hljs-function,.xnote-source-code.vs2015 .hljs-params,.xnote-source-code.vs2015 .hljs-subst,.xnote-source-code.vs2015 .hljs-title{color:#dcdcdc}.xnote-source-code.vs2015 .hljs-comment,.xnote-source-code.vs2015 .hljs-quote{color:#57a64a;font-style:italic}.xnote-source-code.vs2015 .hljs-doctag{color:#608b4e}.xnote-source-code.vs2015 .hljs-meta,.xnote-source-code.vs2015 .hljs-meta .hljs-keyword,.xnote-source-code.vs2015 .hljs-tag{color:#9b9b9b}.xnote-source-code.vs2015 .hljs-template-variable,.xnote-source-code.vs2015 .hljs-variable{color:#bd63c5}.xnote-source-code.vs2015 .hljs-attr,.xnote-source-code.vs2015 .hljs-attribute{color:#9cdcfe}.xnote-source-code.vs2015 .hljs-section{color:gold}.xnote-source-code.vs2015 .hljs-emphasis{font-style:italic}.xnote-source-code.vs2015 .hljs-strong{font-weight:700}.xnote-source-code.vs2015 .hljs-bullet,.xnote-source-code.vs2015 .hljs-selector-attr,.xnote-source-code.vs2015 .hljs-selector-class,.xnote-source-code.vs2015 .hljs-selector-id,.xnote-source-code.vs2015 .hljs-selector-pseudo,.xnote-source-code.vs2015 .hljs-selector-tag{color:#d7ba7d}.xnote-source-code.vs2015 .hljs-addition{background-color:#144212;display:inline-block;width:100%}.xnote-source-code.vs2015 .hljs-deletion{background-color:#600;display:inline-block;width:100%}.xnote-source-code.xcode .xnote-source-code-container{border:1px solid #eee}.xnote-source-code.xcode .xnote-source-code-line-number-bg{background-color:#fafafa}.xnote-source-code.xcode pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.xcode code.hljs{padding:3px 5px}.xnote-source-code.xcode .hljs{background:#fff;color:#000}.xnote-source-code.xcode .xml .hljs-meta{color:silver}.xnote-source-code.xcode .hljs-comment,.xnote-source-code.xcode .hljs-quote{color:#007400}.xnote-source-code.xcode .hljs-attribute,.xnote-source-code.xcode .hljs-keyword,.xnote-source-code.xcode .hljs-literal,.xnote-source-code.xcode .hljs-name,.xnote-source-code.xcode .hljs-selector-tag,.xnote-source-code.xcode .hljs-tag{color:#aa0d91}.xnote-source-code.xcode .hljs-template-variable,.xnote-source-code.xcode .hljs-variable{color:#3f6e74}.xnote-source-code.xcode .hljs-code,.xnote-source-code.xcode .hljs-meta .hljs-string,.xnote-source-code.xcode .hljs-string{color:#c41a16}.xnote-source-code.xcode .hljs-link,.xnote-source-code.xcode .hljs-regexp{color:#0e0eff}.xnote-source-code.xcode .hljs-bullet,.xnote-source-code.xcode .hljs-number,.xnote-source-code.xcode .hljs-symbol,.xnote-source-code.xcode .hljs-title{color:#1c00cf}.xnote-source-code.xcode .hljs-meta,.xnote-source-code.xcode .hljs-section{color:#643820}.xnote-source-code.xcode .hljs-built_in,.xnote-source-code.xcode .hljs-class .hljs-title,.xnote-source-code.xcode .hljs-params,.xnote-source-code.xcode .hljs-title.class_,.xnote-source-code.xcode .hljs-type{color:#5c2699}.xnote-source-code.xcode .hljs-attr{color:#836c28}.xnote-source-code.xcode .hljs-subst{color:#000}.xnote-source-code.xcode .hljs-formula{background-color:#eee;font-style:italic}.xnote-source-code.xcode .hljs-addition{background-color:#baeeba}.xnote-source-code.xcode .hljs-deletion{background-color:#ffc8bd}.xnote-source-code.xcode .hljs-selector-class,.xnote-source-code.xcode .hljs-selector-id{color:#9b703f}.xnote-source-code.xcode .hljs-doctag,.xnote-source-code.xcode .hljs-strong{font-weight:700}.xnote-source-code.xcode .hljs-emphasis{font-style:italic}.xnote-source-code code{background:none;border:none;border-radius:0;padding:0;vertical-align:inherit}.xnote-source-code{margin-bottom:16px;margin-top:16px;position:relative}.xnote-source-code-container{border-radius:5px;display:flex;line-height:1.418em;overflow:hidden;position:relative}.xnote-source-code-container.xnote-source-code-auto-break .xnote-source-code-line{word-wrap:break-word;white-space:pre-wrap;word-break:break-all}code,kbd,pre,samp{font-family:Microsoft YaHei Mono,Menlo,Monaco,Consolas,Courier New,monospace}.xnote-source-code-line-number-bg{background-color:inherit;display:none;position:relative;width:3em;z-index:2}.xnote-source-code.xnote-source-code-line-number .xnote-source-code-line-number-bg{display:block}.xnote-source-code.xnote-source-code-line-number .xnote-source-code-line{margin-left:-4em}.xnote-source-code-content{counter-reset:codeNum;flex:1;font-size:15px;max-height:450px;overflow:auto;padding:15px 0;position:relative}.xnote-source-code-content-highlight .xnote-source-code-line{opacity:.36}.xnote-source-code-line{display:flex;margin:1px 0}.xnote-source-code-line-content{display:block;padding:0 20px}.xnote-source-code-line-number .xnote-source-code-line-content{padding:0 20px 0 10px}.xnote-source-code-line-number .xnote-source-code-line:before{box-sizing:border-box;content:counter(codeNum);counter-increment:codeNum;left:0;min-width:4em;opacity:.5;overflow:hidden;padding-right:10px;position:sticky;text-align:right;transform:translateX(-4em);white-space:nowrap;z-index:2}.xnote-source-code-content-highlight .xnote-source-code-line-emphasize{opacity:1}.xnote-source-code-lang{font-size:13px;opacity:.5;padding:4px 10px;pointer-events:none;position:absolute;right:0;top:0}.xnote-paragraph p{margin:8px 0}.xnote-todolist{align-items:center;display:flex;margin:8px 0}.xnote-todolist-icon{color:#296eff;cursor:pointer;margin-right:6px}.xnote-todolist-content{min-width:2em}.xnote-todolist-content[style*=text-indent]{text-indent:0!important}.xnote-todolist-content[style*=text-align]{text-align:left!important}.xnote-blockquote{border-left:2px solid #296eff;margin:1em 0;padding:0 15px}.xnote-blockquote>:first-child{margin-top:0}.xnote-blockquote>:last-child{margin-bottom:0}.xnote-list{margin:8px 0;padding:0}.xnote-list>li{display:flex}.xnote-list-content{min-width:2em}ul.xnote-list .xnote-list-type{font-family:initial;font-size:16px}.xnote-list-type{box-sizing:border-box;color:#296eff;text-align:left;text-indent:0;white-space:nowrap;width:24px}.xnote-order-btn{padding-left:5px}.xnote-list-content[style*=text-indent]{text-indent:0!important}.xnote-list-content[style*=text-align]{text-align:left!important}.xnote-highlight-box{background:#fcf5ce;border:1px solid #f5c774;border-radius:4px;display:flex;margin:16px 0}.xnote-highlight-box-left{padding-top:.65em;text-align:center;width:40px}.xnote-highlight-box-content{flex:1}.xnote-highlight-box-icon button{background:none;border:none;border-radius:4px;cursor:pointer;font-size:1.4em;height:30px;padding:0;width:30px}.xnote-highlight-box-icon button:hover{background:rgba(0,0,0,.1)}.xnote-highlight-box-icons{text-align:left}.xnote-highlight-box-icons button{background:none;border:none;border-radius:4px;cursor:pointer;font-size:24px;height:30px;padding:0;width:30px}.xnote-highlight-box-icons button:hover{background:rgba(0,0,0,.1)}.xnote-highlight-box-content{padding:5px}.color-type[vf-1fbbdf]{font-size:13px;padding:5px 0}.text-colors[vf-1fbbdf]{font-size:14px;overflow:hidden}.text-colors div[vf-1fbbdf]{border:1px solid #eee;border-radius:4px;box-sizing:border-box;cursor:pointer;float:left;height:22px;line-height:20px;margin:4px 3px;text-align:center;width:22px}.text-colors div.active[vf-1fbbdf]{box-shadow:0 0 0 2px #296eff}.text-colors div[vf-1fbbdf]:hover{box-shadow:0 0 0 2px rgba(41,110,255,.188)}.background-colors[vf-1fbbdf]{font-size:14px;overflow:hidden}.background-colors div[vf-1fbbdf]{border-radius:4px;color:#fff;cursor:pointer;float:left;height:22px;line-height:22px;margin:4px 3px;text-align:center;width:22px}.background-colors div.active[vf-1fbbdf]{box-shadow:0 0 0 2px #296eff}.background-colors div[vf-1fbbdf]:hover{box-shadow:0 0 0 2px rgba(41,110,255,.188)}.background-colors .no-background[vf-1fbbdf]{border:1px solid #eee;box-sizing:border-box;overflow:hidden;position:relative}.background-colors .no-background[vf-1fbbdf]:before{background:#aaa;content:"";height:1px;left:-28px;position:absolute;top:0;transform:rotate(-45deg);width:100px}.background[vf-1fbbdf]{display:inline-block;height:1em;margin-right:6px;position:relative;text-align:center;width:1em}.background>span[vf-1fbbdf]{border-radius:4px;height:20px;left:-2px;line-height:20px;position:absolute;top:-2px;width:20px}.input-group[vf-269a0b]{display:flex;padding:5px 10px}.input-group input[vf-269a0b]{border:1px solid #ddd;border-radius:4px;margin-right:5px;padding:2px 6px}.input-group input[vf-269a0b]:focus{border-color:#296eff}.input-group button[vf-269a0b]{border:1px solid #ddd;border-radius:4px;font-size:14px}.btn-group[vf-cf8e1c]{font-size:15px;padding:5px 0;text-align:center}.btn-group button[vf-cf8e1c]{margin:2px 5px}.xnote-image{display:inline-block}.xnote-image,.xnote-image img,.xnote-video{max-width:100%}.xnote-video{display:inline-block}.xnote-video video{max-width:100%}.left-toolbar[vf-b05292]{font-size:15px;left:-10px;position:absolute;top:0;z-index:10}.left-toolbar-btn-wrap[vf-b05292]{position:absolute;transition:all .2s}.left-toolbar-btn[vf-b05292]{background:#fff;border:1px solid #ddd;border-radius:5px;cursor:pointer;height:26px}.left-toolbar-btn span[vf-b05292]{align-items:center;display:inline-flex}.btn-group[vf-b05292]{font-size:15px;padding:5px 0;text-align:center}.btn-group button[vf-b05292]{margin:2px 5px}.toolbar[vf-fee98b]{background:#fff;border:1px solid #dee0e3;border-radius:5px;box-shadow:0 4px 8px rgba(0,0,0,.08);box-sizing:border-box;display:flex;font-size:13px;height:36px;opacity:0;padding:0 6px;pointer-events:none;position:absolute;text-align:left;transform:translateX(-50%);transition-duration:.4s;transition-property:all;transition-timing-function:ease;z-index:3}.xnote-root{color:#1f2329}.xnote-root * ::selection{background:rgba(20,99,252,.34)}.xnote-content{font-size:16px;line-height:1.65}.xnote-content:before{content:attr(data-placeholder);opacity:.5;position:absolute}.xnote-table{margin-bottom:16px;margin-top:16px;position:relative}.xnote-table-content{border-collapse:collapse;border-spacing:0}.xnote-table-content.hide-selection * ::selection{background:none}.xnote-table-content td{border:1px solid #ddd;box-sizing:content-box;padding:0 10px}.xnote-table-container,.xnote-table-wrapper{position:relative}.xnote-table-delete-btn{background:#eee;border:none;border-radius:4px;color:#5c6370;cursor:pointer;height:30px;line-height:30px;width:24px}.xnote-table-delete-btn:hover{color:#333}.drag-line[vf-681de2]{border-color:transparent;border-style:solid;border-width:0 5px;bottom:0;box-sizing:content-box;cursor:col-resize;display:none;margin-left:-5px;position:absolute;top:0;width:2px}.drag-line[vf-681de2]:before{background:#296eff;content:"";inset:0;position:absolute}.top-bar[vf-d64cf9]{display:none;left:0;position:absolute;right:0;top:0}.top-bar.active[vf-d64cf9]{display:block}.top-delete-toolbar[vf-d64cf9]{height:0;position:relative;top:-10px}.toolbar-wrapper[vf-d64cf9]{height:60px;left:0;pointer-events:none;position:absolute;right:0;top:-60px}.insert-bar[vf-d64cf9]{box-sizing:content-box;height:30px;margin-left:-10px;margin-right:-10px;overflow:hidden;padding-left:10px;padding-right:10px;padding-top:30px}.insert-bar table[vf-d64cf9]{border-collapse:collapse;border-spacing:0;position:relative;table-layout:fixed;z-index:1}.insert-bar table td[vf-d64cf9]{border:1px solid transparent;box-sizing:border-box;height:18px;position:relative}.insert-bar table .tool-container[vf-d64cf9]{height:18px}.insert-bar table .tool-container>div[vf-d64cf9],.insert-bar table .tool-container>span[vf-d64cf9]{pointer-events:auto}.insert-bar table .insert-btn-wrap[vf-d64cf9]{cursor:pointer;height:21px;position:absolute;right:-11px;top:-2px;width:21px;z-index:1}.insert-bar table .insert-btn-wrap .insert-btn[vf-d64cf9]{background:#ccc;border:none;border-radius:50%;box-shadow:none;color:#fff;cursor:inherit;font-size:16px;height:100%;line-height:20px;padding:0;position:relative;text-align:center;transform:scale(.2);transition:transform .15s;width:100%}.insert-bar table .insert-btn-wrap .insert-btn[vf-d64cf9]:after{background:inherit;content:"";height:10px;left:5.5px;position:absolute;top:12px;transform:rotate(45deg);width:10px;z-index:-1}.insert-bar table .insert-btn-wrap:hover .insert-btn[vf-d64cf9]{background:#296eff;transform:scale(1)}.action-bar[vf-d64cf9]{margin-top:-12px;overflow:hidden;pointer-events:auto;position:relative;z-index:0}.action-bar.active[vf-d64cf9]{display:block}.action-bar table[vf-d64cf9]{border-collapse:collapse;border-spacing:0;overflow:hidden;table-layout:fixed}.action-bar table td[vf-d64cf9]{background:#eee;border:1px solid #ddd;box-sizing:border-box;cursor:pointer;height:12px;position:relative}.action-bar table td[vf-d64cf9]:hover{background:#dedede}.action-bar table td.active[vf-d64cf9]{background:#296eff;border-color:#2358c9}.action-bar table td.active[vf-d64cf9]:before{border-color:inherit;border-style:solid;border-width:0 0 0 1px;bottom:0;content:"";left:-1px;position:absolute;top:-1px}.scroll-container[vf-b1149b]{overflow-y:auto}.scroll-container[vf-b1149b]:before{background-image:linear-gradient(90deg,rgba(0,0,0,.1),transparent);border-left:1px solid #ddd;left:0}.scroll-container[vf-b1149b]:after,.scroll-container[vf-b1149b]:before{bottom:0;content:"";pointer-events:none;position:absolute;top:0;width:12px}.scroll-container[vf-b1149b]:after{background:linear-gradient(90deg,transparent,rgba(0,0,0,.1));border-right:1px solid #ddd;right:0}.scroll-container.left-end[vf-b1149b]:before,.scroll-container.right-end[vf-b1149b]:after{display:none}.left-bar[vf-ef93c0]{display:none;left:0;margin-left:-30px;position:absolute;top:0;width:30px}.left-bar.active[vf-ef93c0]{display:flex}.toolbar-item[vf-ef93c0]{align-items:center;display:flex;inset:0;position:absolute}.insert-bar[vf-ef93c0]{width:18px}.insert-bar table[vf-ef93c0]{border-collapse:collapse;border-spacing:0;table-layout:fixed}.insert-bar table td[vf-ef93c0]{border:1px solid transparent;position:relative}.insert-bar table .insert-btn-wrap[vf-ef93c0]{bottom:-8px;cursor:pointer;height:21px;left:0;position:absolute;width:21px;z-index:1}.insert-bar table .insert-btn-wrap .insert-btn[vf-ef93c0]{background:#ccc;border:none;border-radius:50%;box-shadow:none;color:#fff;cursor:inherit;font-size:16px;height:100%;line-height:20px;padding:0;position:relative;text-align:center;transform:scale(.2);transition:transform .15s;width:100%}.insert-bar table .insert-btn-wrap .insert-btn[vf-ef93c0]:after{background:inherit;content:"";height:10px;left:11px;position:absolute;top:5.5px;transform:rotate(45deg);width:10px;z-index:-1}.insert-bar table .insert-btn-wrap:hover .insert-btn[vf-ef93c0]{background:#296eff;transform:scale(1)}.action-bar[vf-ef93c0]{width:12px}.action-bar table[vf-ef93c0]{border-collapse:collapse;border-spacing:0;table-layout:fixed;width:13px}.action-bar table td[vf-ef93c0]{background:#eee;border:1px solid #ddd;box-sizing:border-box;cursor:pointer;height:12px;position:relative}.action-bar table td[vf-ef93c0]:hover{background:#dedede}.action-bar table td.active[vf-ef93c0]{background:#296eff;border-color:#2358c9}.action-bar table td.active[vf-ef93c0]:before{border-color:inherit;border-style:solid;border-width:1px 0 0;content:"";left:-1px;position:absolute;right:-1px;top:-1px}.drag-line[vf-d4c4a9]{background:#296eff;contain:layout size style;height:2px;left:0;max-width:100%;position:absolute;right:0;z-index:1}.mask[vf-4a5ad1]{background:rgba(41,110,255,.063);border:1px solid #296eff;box-sizing:content-box;display:none;pointer-events:none;position:absolute}.mask.active[vf-4a5ad1]{display:block}@font-face{font-display:block;font-family:textbus;font-style:normal;font-weight:400;src:url(fonts/textbus.ttf?fw0xu0) format("truetype"),url(fonts/textbus.woff?fw0xu0) format("woff"),url(fonts/textbus.svg?fw0xu0#textbus) format("svg")}[class*=" xnote-icon-"],[class^=xnote-icon-]{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:textbus!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.xnote-icon-heading-h1:before{content:"\e925"}.xnote-icon-heading-h2:before{content:"\e926"}.xnote-icon-heading-h3:before{content:"\e927"}.xnote-icon-heading-h4:before{content:"\e928"}.xnote-icon-heading-h5:before{content:"\e929"}.xnote-icon-heading-h6:before{content:"\e92a"}.xnote-icon-heading:before{content:"\e92b"}.xnote-icon-more:before{content:"\e921"}.xnote-icon-text-wrap:before{content:"\e924"}.xnote-icon-checkmark:before{content:"\e922"}.xnote-icon-arrow-left:before{content:"\e900"}.xnote-icon-arrow-right:before{content:"\e901"}.xnote-icon-arrow-top:before{content:"\e902"}.xnote-icon-arrow-bottom:before{content:"\e903"}.xnote-icon-source-code:before{content:"\e904"}.xnote-icon-insert-paragraph-after:before{content:"\e905"}.xnote-icon-insert-paragraph-before:before{content:"\e906"}.xnote-icon-components:before{content:"\e907"}.xnote-icon-table-border:before{content:"\e908"}.xnote-icon-table-remove:before{content:"\e909"}.xnote-icon-device:before{content:"\e90a"}.xnote-icon-paint-bucket:before{content:"\e90b"}.xnote-icon-background-color:before{content:"\e90c"}.xnote-icon-color:before{content:"\e90d"}.xnote-icon-brush:before{content:"\e90e"}.xnote-icon-table-edit:before{content:"\e90f"}.xnote-icon-table-split-columns:before{content:"\e910"}.xnote-icon-table-delete-row-top:before{content:"\e911"}.xnote-icon-table-delete-row-bottom:before{content:"\e912"}.xnote-icon-table-delete-column-right:before{content:"\e913"}.xnote-icon-table-delete-column-left:before{content:"\e914"}.xnote-icon-table-add-row-top:before{content:"\e915"}.xnote-icon-table-add-row-bottom:before{content:"\e916"}.xnote-icon-table-add-column-right:before{content:"\e917"}.xnote-icon-table-add-column-left:before{content:"\e918"}.xnote-icon-image:before{content:"\e919"}.xnote-icon-text-indent:before{content:"\e91a"}.xnote-icon-music:before{content:"\e91b"}.xnote-icon-video:before{content:"\e91c"}.xnote-icon-unlink:before{content:"\e91d"}.xnote-icon-select:before{content:"\e91e"}.xnote-icon-tree:before{content:"\e91f"}.xnote-icon-setting:before{content:"\e920"}.xnote-icon-copy:before{content:"\e92c"}.xnote-icon-paste:before{content:"\e92d"}.xnote-icon-pushpin:before{content:"\e946"}.xnote-icon-upload:before{content:"\e961"}.xnote-icon-history-back:before{content:"\e967"}.xnote-icon-history-forward:before{content:"\e968"}.xnote-icon-quotes-right:before{content:"\e978"}.xnote-icon-loading:before{content:"\e97f"}.xnote-icon-search:before{content:"\e986"}.xnote-icon-enlarge:before{content:"\e989"}.xnote-icon-shrink:before{content:"\e98a"}.xnote-icon-bin:before{content:"\e9ac"}.xnote-icon-list-numbered:before{content:"\e9b9"}.xnote-icon-list:before{content:"\e9bb"}.xnote-icon-link:before{content:"\e9cb"}.xnote-icon-emoji:before{content:"\e9e2"}.xnote-icon-plus:before{content:"\ea0a"}.xnote-icon-command:before{content:"\ea4e"}.xnote-icon-shift:before{content:"\ea4f"}.xnote-icon-ctrl:before{content:"\ea50"}.xnote-icon-opt:before{content:"\ea51"}.xnote-icon-cut:before{content:"\ea5a"}.xnote-icon-line-height:before{content:"\ea5f"}.xnote-icon-letter-spacing:before{content:"\ea60"}.xnote-icon-font-size:before{content:"\ea61"}.xnote-icon-bold:before{content:"\ea62"}.xnote-icon-underline:before{content:"\ea63"}.xnote-icon-italic:before{content:"\ea64"}.xnote-icon-strikethrough:before{content:"\ea65"}.xnote-icon-superscript:before{content:"\ea69"}.xnote-icon-subscript:before{content:"\ea6a"}.xnote-icon-clear-formatting:before{content:"\ea6f"}.xnote-icon-table:before{content:"\ea71"}.xnote-icon-ltr:before{content:"\ea74"}.xnote-icon-rtl:before{content:"\ea75"}.xnote-icon-code:before{content:"\ea80"}.xnote-icon-terminal:before{content:"\ea81"}.xnote-icon-bullhorn:before{content:"\e923"}.xnote-icon-price-tag:before{content:"\e935"}.xnote-icon-pushpin1:before{content:"\e947"}.xnote-icon-warning:before{content:"\ea07"}.xnote-icon-notification:before{content:"\ea08"}.xnote-icon-question:before{content:"\ea09"}.xnote-icon-info:before{content:"\ea0c"}.xnote-icon-cancel-circle:before{content:"\ea0d"}.xnote-icon-blocked:before{content:"\ea0e"}.xnote-icon-checkbox-checked:before{content:"\ea52"}.xnote-icon-checkbox-unchecked:before{content:"\ea53"}.xnote-icon-pilcrow:before{content:"\ea73"}.xnote-icon-paragraph-left:before{content:"\ea77"}.xnote-icon-paragraph-center:before{content:"\ea78"}.xnote-icon-paragraph-right:before{content:"\ea79"}.xnote-icon-paragraph-justify:before{content:"\ea7a"}.xnote-icon-indent-increase:before{content:"\ea7b"}.xnote-icon-indent-decrease:before{content:"\ea7c"}.xnote-h1{font-size:2.2em;font-weight:600}.xnote-h2{font-size:1.8em;font-weight:600}.xnote-h3{font-size:1.4em;font-weight:600}.xnote-h4{font-size:1em;font-weight:600}.xnote-h5{font-size:.9em;font-weight:600}.xnote-h6{font-size:.8em;font-weight:600}.xnote-code{border:1px solid rgba(0,0,0,.2);border-radius:4px;font-family:Microsoft YaHei Mono,Menlo,Monaco,Consolas,Courier New,monospace;margin:0 3px;padding:2px 3px}
|
|
24
|
+
*/}.xnote-source-code.stackoverflow-light pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.stackoverflow-light code.hljs{padding:3px 5px}.xnote-source-code.stackoverflow-light .hljs{background:#f6f6f6;color:#2f3337}.xnote-source-code.stackoverflow-light .hljs-subst{color:#2f3337}.xnote-source-code.stackoverflow-light .hljs-comment{color:#656e77}.xnote-source-code.stackoverflow-light .hljs-attr,.xnote-source-code.stackoverflow-light .hljs-doctag,.xnote-source-code.stackoverflow-light .hljs-keyword,.xnote-source-code.stackoverflow-light .hljs-meta .hljs-keyword,.xnote-source-code.stackoverflow-light .hljs-section,.xnote-source-code.stackoverflow-light .hljs-selector-tag{color:#015692}.xnote-source-code.stackoverflow-light .hljs-attribute{color:#803378}.xnote-source-code.stackoverflow-light .hljs-name,.xnote-source-code.stackoverflow-light .hljs-number,.xnote-source-code.stackoverflow-light .hljs-quote,.xnote-source-code.stackoverflow-light .hljs-selector-id,.xnote-source-code.stackoverflow-light .hljs-template-tag,.xnote-source-code.stackoverflow-light .hljs-type{color:#b75501}.xnote-source-code.stackoverflow-light .hljs-selector-class{color:#015692}.xnote-source-code.stackoverflow-light .hljs-link,.xnote-source-code.stackoverflow-light .hljs-regexp,.xnote-source-code.stackoverflow-light .hljs-selector-attr,.xnote-source-code.stackoverflow-light .hljs-string,.xnote-source-code.stackoverflow-light .hljs-symbol,.xnote-source-code.stackoverflow-light .hljs-template-variable,.xnote-source-code.stackoverflow-light .hljs-variable{color:#54790d}.xnote-source-code.stackoverflow-light .hljs-meta,.xnote-source-code.stackoverflow-light .hljs-selector-pseudo{color:#015692}.xnote-source-code.stackoverflow-light .hljs-built_in,.xnote-source-code.stackoverflow-light .hljs-literal,.xnote-source-code.stackoverflow-light .hljs-title{color:#b75501}.xnote-source-code.stackoverflow-light .hljs-bullet,.xnote-source-code.stackoverflow-light .hljs-code{color:#535a60}.xnote-source-code.stackoverflow-light .hljs-meta .hljs-string{color:#54790d}.xnote-source-code.stackoverflow-light .hljs-deletion{color:#c02d2e}.xnote-source-code.stackoverflow-light .hljs-addition{color:#2f6f44}.xnote-source-code.stackoverflow-light .hljs-emphasis{font-style:italic}.xnote-source-code.stackoverflow-light .hljs-strong{font-weight:700}.xnote-source-code.vs2015 pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.vs2015 code.hljs{padding:3px 5px}.xnote-source-code.vs2015 .hljs{background:#1e1e1e;color:#dcdcdc}.xnote-source-code.vs2015 .hljs-keyword,.xnote-source-code.vs2015 .hljs-literal,.xnote-source-code.vs2015 .hljs-name,.xnote-source-code.vs2015 .hljs-symbol{color:#569cd6}.xnote-source-code.vs2015 .hljs-link{color:#569cd6;text-decoration:underline}.xnote-source-code.vs2015 .hljs-built_in,.xnote-source-code.vs2015 .hljs-type{color:#4ec9b0}.xnote-source-code.vs2015 .hljs-class,.xnote-source-code.vs2015 .hljs-number{color:#b8d7a3}.xnote-source-code.vs2015 .hljs-meta .hljs-string,.xnote-source-code.vs2015 .hljs-string{color:#d69d85}.xnote-source-code.vs2015 .hljs-regexp,.xnote-source-code.vs2015 .hljs-template-tag{color:#9a5334}.xnote-source-code.vs2015 .hljs-formula,.xnote-source-code.vs2015 .hljs-function,.xnote-source-code.vs2015 .hljs-params,.xnote-source-code.vs2015 .hljs-subst,.xnote-source-code.vs2015 .hljs-title{color:#dcdcdc}.xnote-source-code.vs2015 .hljs-comment,.xnote-source-code.vs2015 .hljs-quote{color:#57a64a;font-style:italic}.xnote-source-code.vs2015 .hljs-doctag{color:#608b4e}.xnote-source-code.vs2015 .hljs-meta,.xnote-source-code.vs2015 .hljs-meta .hljs-keyword,.xnote-source-code.vs2015 .hljs-tag{color:#9b9b9b}.xnote-source-code.vs2015 .hljs-template-variable,.xnote-source-code.vs2015 .hljs-variable{color:#bd63c5}.xnote-source-code.vs2015 .hljs-attr,.xnote-source-code.vs2015 .hljs-attribute{color:#9cdcfe}.xnote-source-code.vs2015 .hljs-section{color:gold}.xnote-source-code.vs2015 .hljs-emphasis{font-style:italic}.xnote-source-code.vs2015 .hljs-strong{font-weight:700}.xnote-source-code.vs2015 .hljs-bullet,.xnote-source-code.vs2015 .hljs-selector-attr,.xnote-source-code.vs2015 .hljs-selector-class,.xnote-source-code.vs2015 .hljs-selector-id,.xnote-source-code.vs2015 .hljs-selector-pseudo,.xnote-source-code.vs2015 .hljs-selector-tag{color:#d7ba7d}.xnote-source-code.vs2015 .hljs-addition{background-color:#144212;display:inline-block;width:100%}.xnote-source-code.vs2015 .hljs-deletion{background-color:#600;display:inline-block;width:100%}.xnote-source-code.xcode .xnote-source-code-container{border:1px solid #eee}.xnote-source-code.xcode .xnote-source-code-line-number-bg{background-color:#fafafa}.xnote-source-code.xcode pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.xcode code.hljs{padding:3px 5px}.xnote-source-code.xcode .hljs{background:#fff;color:#000}.xnote-source-code.xcode .xml .hljs-meta{color:silver}.xnote-source-code.xcode .hljs-comment,.xnote-source-code.xcode .hljs-quote{color:#007400}.xnote-source-code.xcode .hljs-attribute,.xnote-source-code.xcode .hljs-keyword,.xnote-source-code.xcode .hljs-literal,.xnote-source-code.xcode .hljs-name,.xnote-source-code.xcode .hljs-selector-tag,.xnote-source-code.xcode .hljs-tag{color:#aa0d91}.xnote-source-code.xcode .hljs-template-variable,.xnote-source-code.xcode .hljs-variable{color:#3f6e74}.xnote-source-code.xcode .hljs-code,.xnote-source-code.xcode .hljs-meta .hljs-string,.xnote-source-code.xcode .hljs-string{color:#c41a16}.xnote-source-code.xcode .hljs-link,.xnote-source-code.xcode .hljs-regexp{color:#0e0eff}.xnote-source-code.xcode .hljs-bullet,.xnote-source-code.xcode .hljs-number,.xnote-source-code.xcode .hljs-symbol,.xnote-source-code.xcode .hljs-title{color:#1c00cf}.xnote-source-code.xcode .hljs-meta,.xnote-source-code.xcode .hljs-section{color:#643820}.xnote-source-code.xcode .hljs-built_in,.xnote-source-code.xcode .hljs-class .hljs-title,.xnote-source-code.xcode .hljs-params,.xnote-source-code.xcode .hljs-title.class_,.xnote-source-code.xcode .hljs-type{color:#5c2699}.xnote-source-code.xcode .hljs-attr{color:#836c28}.xnote-source-code.xcode .hljs-subst{color:#000}.xnote-source-code.xcode .hljs-formula{background-color:#eee;font-style:italic}.xnote-source-code.xcode .hljs-addition{background-color:#baeeba}.xnote-source-code.xcode .hljs-deletion{background-color:#ffc8bd}.xnote-source-code.xcode .hljs-selector-class,.xnote-source-code.xcode .hljs-selector-id{color:#9b703f}.xnote-source-code.xcode .hljs-doctag,.xnote-source-code.xcode .hljs-strong{font-weight:700}.xnote-source-code.xcode .hljs-emphasis{font-style:italic}.xnote-source-code.xnote-dark pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.xnote-dark code.hljs{padding:3px 5px}.xnote-source-code.xnote-dark .hljs{background:#182324;color:#a9aeb2}.xnote-source-code.xnote-dark .hljs-comment,.xnote-source-code.xnote-dark .hljs-quote{color:#5c6d6e;font-style:italic}.xnote-source-code.xnote-dark .hljs-doctag,.xnote-source-code.xnote-dark .hljs-formula,.xnote-source-code.xnote-dark .hljs-keyword{color:#71b155;font-weight:700}.xnote-source-code.xnote-dark .hljs-deletion,.xnote-source-code.xnote-dark .hljs-section,.xnote-source-code.xnote-dark .hljs-selector-tag{color:#e06c75}.xnote-source-code.xnote-dark .hljs-literal{color:#388138}.xnote-source-code.xnote-dark .hljs-addition,.xnote-source-code.xnote-dark .hljs-attribute,.xnote-source-code.xnote-dark .hljs-meta .hljs-string,.xnote-source-code.xnote-dark .hljs-regexp,.xnote-source-code.xnote-dark .hljs-string{color:#dd7600}.xnote-source-code.xnote-dark .hljs-number,.xnote-source-code.xnote-dark .hljs-selector-attr,.xnote-source-code.xnote-dark .hljs-selector-class,.xnote-source-code.xnote-dark .hljs-selector-pseudo,.xnote-source-code.xnote-dark .hljs-template-variable,.xnote-source-code.xnote-dark .hljs-type,.xnote-source-code.xnote-dark .hljs-variable{color:#388138}.xnote-source-code.xnote-dark .hljs-bullet,.xnote-source-code.xnote-dark .hljs-link,.xnote-source-code.xnote-dark .hljs-meta,.xnote-source-code.xnote-dark .hljs-name,.xnote-source-code.xnote-dark .hljs-selector-id,.xnote-source-code.xnote-dark .hljs-subst,.xnote-source-code.xnote-dark .hljs-symbol,.xnote-source-code.xnote-dark .hljs-title{color:#2e89c1}.xnote-source-code.xnote-dark .hljs-built_in,.xnote-source-code.xnote-dark .hljs-class .hljs-title,.xnote-source-code.xnote-dark .hljs-title.class_{color:#e6c07b}.xnote-source-code.xnote-dark .hljs-emphasis{font-style:italic}.xnote-source-code.xnote-dark .hljs-strong{font-weight:700}.xnote-source-code.xnote-dark .hljs-link{text-decoration:underline}.xnote-source-code.xnote-dark-blue pre code.hljs{display:block;overflow-x:auto;padding:1em}.xnote-source-code.xnote-dark-blue code.hljs{padding:3px 5px}.xnote-source-code.xnote-dark-blue .hljs{background:#1c222a;color:#a9aeb2}.xnote-source-code.xnote-dark-blue .hljs-comment,.xnote-source-code.xnote-dark-blue .hljs-quote{color:#5c6d6e;font-style:italic}.xnote-source-code.xnote-dark-blue .hljs-doctag,.xnote-source-code.xnote-dark-blue .hljs-formula,.xnote-source-code.xnote-dark-blue .hljs-keyword{color:#0086b3;font-weight:700}.xnote-source-code.xnote-dark-blue .hljs-deletion,.xnote-source-code.xnote-dark-blue .hljs-section,.xnote-source-code.xnote-dark-blue .hljs-selector-tag{color:#e06c75}.xnote-source-code.xnote-dark-blue .hljs-literal{color:#388138}.xnote-source-code.xnote-dark-blue .hljs-addition,.xnote-source-code.xnote-dark-blue .hljs-attribute,.xnote-source-code.xnote-dark-blue .hljs-meta .hljs-string,.xnote-source-code.xnote-dark-blue .hljs-regexp,.xnote-source-code.xnote-dark-blue .hljs-string{color:#ce5a70}.xnote-source-code.xnote-dark-blue .hljs-number,.xnote-source-code.xnote-dark-blue .hljs-selector-attr,.xnote-source-code.xnote-dark-blue .hljs-selector-class,.xnote-source-code.xnote-dark-blue .hljs-selector-pseudo,.xnote-source-code.xnote-dark-blue .hljs-template-variable,.xnote-source-code.xnote-dark-blue .hljs-type,.xnote-source-code.xnote-dark-blue .hljs-variable{color:#388138}.xnote-source-code.xnote-dark-blue .hljs-bullet,.xnote-source-code.xnote-dark-blue .hljs-link,.xnote-source-code.xnote-dark-blue .hljs-meta,.xnote-source-code.xnote-dark-blue .hljs-name,.xnote-source-code.xnote-dark-blue .hljs-selector-id,.xnote-source-code.xnote-dark-blue .hljs-subst,.xnote-source-code.xnote-dark-blue .hljs-symbol,.xnote-source-code.xnote-dark-blue .hljs-title{color:#2e89c1}.xnote-source-code.xnote-dark-blue .hljs-built_in,.xnote-source-code.xnote-dark-blue .hljs-class .hljs-title,.xnote-source-code.xnote-dark-blue .hljs-title.class_{color:#399fcf}.xnote-source-code.xnote-dark-blue .hljs-emphasis{font-style:italic}.xnote-source-code.xnote-dark-blue .hljs-strong{font-weight:700}.xnote-source-code.xnote-dark-blue .hljs-link{text-decoration:underline}.xnote-source-code code{background:none;border:none;border-radius:0;padding:0;vertical-align:inherit}.xnote-source-code{margin-bottom:16px;margin-top:16px;position:relative}.xnote-source-code-container{border-radius:5px;display:flex;line-height:1.418em;overflow:hidden;position:relative}.xnote-source-code-container.xnote-source-code-auto-break .xnote-source-code-line{word-wrap:break-word;white-space:pre-wrap;word-break:break-all}code,kbd,pre,samp{font-family:Microsoft YaHei Mono,Menlo,Monaco,Consolas,Courier New,monospace}.xnote-source-code-line-number-bg{background-color:inherit;display:none;position:relative;width:3em;z-index:2}.xnote-source-code.xnote-source-code-line-number .xnote-source-code-line-number-bg{display:block}.xnote-source-code.xnote-source-code-line-number .xnote-source-code-line{margin-left:-4em}.xnote-source-code-content{counter-reset:codeNum;flex:1;font-size:15px;margin:0;max-height:450px;overflow:auto;padding:15px 0;position:relative}.xnote-source-code-content:hover::-webkit-scrollbar-thumb{background-color:#80848f}.xnote-source-code-content::-webkit-scrollbar-thumb{border:0;border-radius:4px;height:50px;outline:0;outline-offset:0}.xnote-source-code-content::-webkit-scrollbar-thumb:hover{background-color:#495060;height:50px}.xnote-source-code-content::-webkit-scrollbar{border-radius:3px;height:6px;width:6px}.xnote-source-code-content-highlight .xnote-source-code-line{opacity:.36}.xnote-source-code-line{display:flex;margin:2px 0}.xnote-source-code-line-content{display:block;padding:0 20px}.xnote-source-code-line-number .xnote-source-code-line-content{padding:0 20px 0 10px}.xnote-source-code-line-number .xnote-source-code-line:before{box-sizing:border-box;content:counter(codeNum);counter-increment:codeNum;left:0;min-width:4em;opacity:.5;overflow:hidden;padding-right:10px;position:sticky;text-align:right;transform:translateX(-4em);white-space:nowrap;z-index:2}.xnote-source-code-content-highlight .xnote-source-code-line-emphasize{opacity:1}.xnote-source-code-lang{font-size:13px;opacity:.5;padding:4px 10px;pointer-events:none;position:absolute;right:0;top:0}.xnote-paragraph{margin:8px 0}.xnote-blockquote{border-left:2px solid #296eff;margin:1em 0;padding:0 15px}.xnote-blockquote>:first-child{margin-top:0}.xnote-blockquote>:last-child{margin-bottom:0}.xnote-highlight-box{background:#fcf5ce;border:1px solid #f5c774;border-radius:4px;display:flex;margin:16px 0}.xnote-highlight-box-left{padding-top:.65em;text-align:center;width:40px}.xnote-highlight-box-content{flex:1;width:0}.xnote-highlight-box-icon button{background:none;border:none;border-radius:4px;cursor:pointer;font-size:1.2em;height:30px;padding:0;width:30px}.xnote-highlight-box-icon button:hover{background:rgba(0,0,0,.1)}.xnote-highlight-box-icons{text-align:left}.xnote-highlight-box-icons button{background:none;border:none;border-radius:4px;cursor:pointer;font-size:22px;height:30px;padding:0;width:30px}.xnote-highlight-box-icons button:hover{background:rgba(0,0,0,.1)}.xnote-highlight-box-content{padding:5px}.xnote-highlight-box-heading{font-size:14px;opacity:.8;padding:10px 0 10px 3px}.xnote-todolist{align-items:center;display:flex;margin:8px 0}.xnote-todolist-icon{color:#296eff;cursor:pointer;margin-right:6px}.xnote-todolist-content{min-width:2em}.xnote-todolist-content[style*=text-indent]{text-indent:0!important}.xnote-todolist-content[style*=text-align]{text-align:left!important}.xnote-list{margin:8px 0;padding:0}.xnote-list>li{display:flex}.xnote-list-content{min-width:2em}ul.xnote-list .xnote-list-type{font-family:initial;font-size:16px}.xnote-list-type{box-sizing:border-box;color:#296eff;flex-shrink:0;text-align:left;text-indent:0;white-space:nowrap;width:24px}.xnote-order-btn{padding-left:5px}.xnote-list-content[style*=text-indent]{text-indent:0!important}.xnote-list-content[style*=text-align]{text-align:left!important}.color-type[vf-accb31]{font-size:13px;padding:5px 0}.text-colors[vf-accb31]{font-size:14px;overflow:hidden}.text-colors div[vf-accb31]{border:1px solid #eee;border-radius:4px;box-sizing:border-box;cursor:pointer;float:left;height:22px;line-height:20px;margin:4px 3px;text-align:center;width:22px}.text-colors div.active[vf-accb31]{box-shadow:0 0 0 2px #296eff}.text-colors div[vf-accb31]:hover{box-shadow:0 0 0 2px rgba(41,110,255,.188)}.background-colors[vf-accb31]{font-size:14px;overflow:hidden}.background-colors div[vf-accb31]{border-radius:4px;color:#fff;cursor:pointer;float:left;height:22px;line-height:22px;margin:4px 3px;text-align:center;width:22px}.background-colors div.active[vf-accb31]{box-shadow:0 0 0 2px #296eff}.background-colors div[vf-accb31]:hover{box-shadow:0 0 0 2px rgba(41,110,255,.188)}.no-background[vf-accb31]{border:1px solid #eee;box-sizing:border-box;overflow:hidden;position:relative}.no-background[vf-accb31]:before{background:#aaa;content:"";height:1px;left:-28px;position:absolute;top:0;transform:rotate(-45deg);width:100px}.background[vf-accb31]{display:inline-block;height:1em;margin-right:6px;position:relative;text-align:center;width:1em}.background>span[vf-accb31]{border-radius:4px;height:20px;left:-2px;line-height:20px;position:absolute;top:-2px;width:20px}.input-group[vf-e74208]{display:flex;padding:5px 10px}.input-group input[vf-e74208]{border:1px solid #ddd;border-radius:4px;font-size:14px;margin-right:5px;outline:none;padding:2px 6px}.input-group input[vf-e74208]:focus{border-color:#296eff}.input-group button[vf-e74208]{border:1px solid #ddd;border-radius:4px;font-size:14px}.btn-group[vf-cf8e1c]{font-size:15px;padding:5px 0;text-align:center}.btn-group button[vf-cf8e1c]{margin:2px 5px}.xnote-image{display:inline-block}.xnote-image,.xnote-image img,.xnote-video{max-width:100%}.xnote-video{display:inline-block}.xnote-video video{max-width:100%}@import "~katex/dist/katex.min.css";.katex,.katex-display,.katex-html,.xnote-katex{display:inline-block}.xnote-katex{margin-left:.5em;margin-right:.5em}.xnote-katex-input{inset:0;min-height:300px;position:absolute;width:590px}.xnote-katex-input .xnote-source-code{margin:0;overflow:hidden;user-select:text}.xnote-katex-input .xnote-source-code-container{border:0!important;height:100%}.xnote-katex-input .xnote-source-code-content{box-sizing:border-box;max-height:none;min-height:300px;overflow:hidden}.left-toolbar[vf-b05292]{font-size:15px;left:-10px;position:absolute;top:0;z-index:10}.left-toolbar-btn-wrap[vf-b05292]{position:absolute;transition:all .2s}.left-toolbar-btn[vf-b05292]{background:#fff;border:1px solid #ddd;border-radius:5px;cursor:pointer;height:26px}.left-toolbar-btn span[vf-b05292]{align-items:center;display:inline-flex}.btn-group[vf-b05292]{font-size:15px;padding:5px 0;text-align:center}.btn-group button[vf-b05292]{margin:2px 5px}.link-jump-plugin[vf-3073ba]{background-color:#333;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.3);color:#ddd;font-size:12px;line-height:1em;margin-top:-30px;padding:6px 0;position:absolute;text-align:center;text-decoration:none;transform:translateX(-50%);width:66px}.link-jump-plugin a[vf-3073ba],.link-jump-plugin span[vf-3073ba]{color:inherit;cursor:pointer;margin-left:2px;margin-right:2px;text-decoration:none}.link-jump-plugin a[vf-3073ba]:hover,.link-jump-plugin span[vf-3073ba]:hover{color:#296eff}.link-jump-plugin[vf-3073ba]:after{border:6px solid transparent;border-top-color:#333;content:"";left:50%;margin-left:-6px;pointer-events:none;position:absolute;top:100%}.toolbar[vf-fee98b]{background:#fff;border:1px solid #dee0e3;border-radius:5px;box-shadow:0 4px 8px rgba(0,0,0,.08);box-sizing:border-box;display:flex;font-size:13px;height:36px;opacity:0;padding:0 6px;pointer-events:none;position:absolute;text-align:left;transform:translateX(-50%);transition-duration:.4s;transition-property:all;transition-timing-function:ease;z-index:3}.xnote-at{color:#296eff;display:inline-block;line-height:1em}.xnote-at-complete{background-color:#296eff;border-radius:1em;color:#fff;font-size:.9em;margin-left:2px;margin-right:2px;padding:4px 6px}.xnote-at-input{display:inline-block;min-width:2em}.xnote-at-menu{user-select:none}.xnote-at-member{border-radius:4px;cursor:pointer;display:flex;height:50px;margin:4px 0;overflow:hidden;padding:5px;transition:background-color .2s;width:100%}.xnote-at-member.selected,.xnote-at-member:hover{background:#eee}.xnote-at-member-avatar{align-items:center;display:flex;font-size:12px;text-align:center;width:40px}.xnote-at-member-avatar img,.xnote-at-member-avatar-bg{background:#eee;border-radius:50%;display:inline-block;font-size:.9em;height:36px;line-height:36px;overflow:hidden;width:36px}.xnote-at-member-info{flex:1;font-size:14px;padding-left:10px;width:156px}.xnote-at-member-desc,.xnote-at-member-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.xnote-at-member-desc{font-size:12px;opacity:.7}.xnote-root{color:#1f2329}.xnote-root * ::selection{background:rgba(20,99,252,.34)}.xnote-content{color:initial;font-family:initial;font-size:medium;line-height:1.65}.xnote-content:before{content:attr(data-placeholder);opacity:.5;position:absolute}.xnote-table{margin-bottom:16px;margin-top:16px}.xnote-table-inner{display:inline-block;max-width:100%;position:relative}.xnote-table-content{background:hsla(0,0%,100%,.8);border-collapse:collapse;border-spacing:0;table-layout:fixed;width:0}.xnote-table-content.hide-selection * ::selection{background:none}.xnote-table-content td{border:1px solid #ddd;box-sizing:content-box;padding:0 10px}.xnote-table-container,.xnote-table-wrapper{position:relative}.xnote-table-delete-btn{background:#eee;border:none;border-radius:4px;color:#5c6370;cursor:pointer;height:30px;line-height:30px;width:24px}.xnote-table-delete-btn:hover{color:#333}.drag-line[vf-681de2]{border-color:transparent;border-style:solid;border-width:0 5px;bottom:0;box-sizing:content-box;cursor:col-resize;display:none;margin-left:-5px;position:absolute;top:0;width:2px}.drag-line[vf-681de2]:before{background:#296eff;content:"";inset:0;position:absolute}.top-bar[vf-39cb2c]{display:none;left:0;position:absolute;right:0;top:0}.top-bar.active[vf-39cb2c]{display:block}.top-delete-toolbar[vf-39cb2c]{height:0;position:relative;top:-10px}.toolbar-wrapper[vf-39cb2c]{height:60px;left:0;pointer-events:none;position:absolute;right:0;top:-60px}.insert-bar[vf-39cb2c]{box-sizing:content-box;height:30px;margin-left:-10px;margin-right:-10px;overflow:hidden;padding-left:10px;padding-right:10px;padding-top:30px}.insert-bar table[vf-39cb2c]{border-collapse:collapse;border-spacing:0;position:relative;table-layout:fixed;z-index:1}.insert-bar table td[vf-39cb2c]{border:1px solid transparent;box-sizing:border-box;height:18px;position:relative}.insert-bar table .tool-container[vf-39cb2c]{height:18px}.insert-bar table .tool-container>div[vf-39cb2c],.insert-bar table .tool-container>span[vf-39cb2c]{pointer-events:auto}.insert-bar table .insert-btn-wrap[vf-39cb2c]{cursor:pointer;height:21px;position:absolute;right:-11px;top:-2px;width:21px;z-index:1}.insert-bar table .insert-btn-wrap .insert-btn[vf-39cb2c]{background:#ccc;border:none;border-radius:50%;box-shadow:none;color:#fff;cursor:inherit;font-size:16px;height:100%;line-height:20px;padding:0;position:relative;text-align:center;transform:scale(.2);transition:transform .15s;width:100%}.insert-bar table .insert-btn-wrap .insert-btn[vf-39cb2c]:after{background:inherit;content:"";height:10px;left:5.5px;position:absolute;top:12px;transform:rotate(45deg);width:10px;z-index:-1}.insert-bar table .insert-btn-wrap:hover .insert-btn[vf-39cb2c]{background:#296eff;transform:scale(1)}.action-bar[vf-39cb2c]{margin-top:-12px;overflow:hidden;pointer-events:auto;position:relative;z-index:0}.action-bar.active[vf-39cb2c]{display:block}.action-bar table[vf-39cb2c]{border-collapse:collapse;border-radius:4px 4px 0 0;border-spacing:0;overflow:hidden;table-layout:fixed}.action-bar table td[vf-39cb2c]{background:#eee;border:1px solid #eee;box-sizing:border-box;cursor:pointer;height:12px;position:relative}.action-bar table td[vf-39cb2c]:hover{background:#dedede}.action-bar table td.active[vf-39cb2c]{background:#296eff;border-color:#2358c9}.action-bar table td.active[vf-39cb2c]:before{border-color:inherit;border-style:solid;border-width:0 0 0 1px;bottom:0;content:"";left:-1px;position:absolute;top:-1px}.scroll-container[vf-7bef30]{overflow-x:auto;overflow-y:hidden}.scroll-container[vf-7bef30]:hover::-webkit-scrollbar-thumb{background-color:#80848f}.scroll-container[vf-7bef30]::-webkit-scrollbar-thumb{border:0;border-radius:4px;height:50px;outline:0;outline-offset:0}.scroll-container[vf-7bef30]::-webkit-scrollbar-thumb:hover{background-color:#495060;height:50px}.scroll-container[vf-7bef30]::-webkit-scrollbar{border-radius:3px;height:6px;width:6px}.scroll-container[vf-7bef30]:before{background-image:linear-gradient(90deg,rgba(0,0,0,.1),transparent);border-left:1px solid #ddd;left:0;z-index:1}.scroll-container[vf-7bef30]:after,.scroll-container[vf-7bef30]:before{bottom:6px;content:"";pointer-events:none;position:absolute;top:0;width:12px}.scroll-container[vf-7bef30]:after{background:linear-gradient(90deg,transparent,rgba(0,0,0,.1));border-right:1px solid #ddd;right:0}.scroll-container.left-end[vf-7bef30]:before,.scroll-container.right-end[vf-7bef30]:after{display:none}.left-bar[vf-aaece0]{display:none;left:0;margin-left:-30px;position:absolute;top:0;width:30px}.left-bar.active[vf-aaece0]{display:flex}.toolbar-item[vf-aaece0]{align-items:center;display:flex;inset:0;position:absolute}.insert-bar[vf-aaece0]{width:18px}.insert-bar table[vf-aaece0]{border-collapse:collapse;border-spacing:0;table-layout:fixed}.insert-bar table td[vf-aaece0]{border:1px solid transparent;position:relative}.insert-bar table .insert-btn-wrap[vf-aaece0]{bottom:-8px;cursor:pointer;height:21px;left:0;position:absolute;width:21px;z-index:1}.insert-bar table .insert-btn-wrap .insert-btn[vf-aaece0]{background:#ccc;border:none;border-radius:50%;box-shadow:none;color:#fff;cursor:inherit;font-size:16px;height:100%;line-height:20px;padding:0;position:relative;text-align:center;transform:scale(.2);transition:transform .15s;width:100%}.insert-bar table .insert-btn-wrap .insert-btn[vf-aaece0]:after{background:inherit;content:"";height:10px;left:11px;position:absolute;top:5.5px;transform:rotate(45deg);width:10px;z-index:-1}.insert-bar table .insert-btn-wrap:hover .insert-btn[vf-aaece0]{background:#296eff;transform:scale(1)}.action-bar[vf-aaece0]{width:12px}.action-bar table[vf-aaece0]{border-collapse:collapse;border-radius:4px 0 0 4px;border-spacing:0;overflow:hidden;table-layout:fixed;width:13px}.action-bar table td[vf-aaece0]{background:#eee;border:1px solid #eee;box-sizing:border-box;cursor:pointer;height:12px;position:relative}.action-bar table td[vf-aaece0]:hover{background:#dedede}.action-bar table td.active[vf-aaece0]{background:#296eff;border-color:#2358c9}.action-bar table td.active[vf-aaece0]:before{border-color:inherit;border-style:solid;border-width:1px 0 0;content:"";left:-1px;position:absolute;right:-1px;top:-1px}.drag-line[vf-d4c4a9]{background:#296eff;contain:layout size style;height:2px;left:0;max-width:100%;position:absolute;right:0;z-index:1}.mask[vf-4a5ad1]{background:rgba(41,110,255,.063);border:1px solid #296eff;box-sizing:content-box;display:none;pointer-events:none;position:absolute}.mask.active[vf-4a5ad1]{display:block}@font-face{font-display:block;font-family:textbus;font-style:normal;font-weight:400;src:url(fonts/textbus.ttf?ckj6yl) format("truetype"),url(fonts/textbus.woff?ckj6yl) format("woff"),url(fonts/textbus.svg?ckj6yl#textbus) format("svg")}[class*=" xnote-icon-"],[class^=xnote-icon-]{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:textbus!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.xnote-icon-hightlight-box:before{content:"\e90e"}.xnote-icon-arrow-left:before{content:"\e900"}.xnote-icon-arrow-right:before{content:"\e901"}.xnote-icon-arrow-top:before{content:"\e902"}.xnote-icon-arrow-bottom:before{content:"\e903"}.xnote-icon-source-code:before{content:"\e904"}.xnote-icon-insert-paragraph-after:before{content:"\e905"}.xnote-icon-insert-paragraph-before:before{content:"\e906"}.xnote-icon-table-border:before{content:"\e908"}.xnote-icon-table-remove:before{content:"\e909"}.xnote-icon-paint-bucket:before{content:"\e90b"}.xnote-icon-background-color:before{content:"\e90c"}.xnote-icon-color:before{content:"\e90d"}.xnote-icon-table-edit:before{content:"\e90f"}.xnote-icon-table-split-columns:before{content:"\e910"}.xnote-icon-image:before{content:"\e919"}.xnote-icon-music:before{content:"\e91b"}.xnote-icon-video:before{content:"\e91c"}.xnote-icon-unlink:before{content:"\e91d"}.xnote-icon-select:before{content:"\e91e"}.xnote-icon-tree:before{content:"\e91f"}.xnote-icon-more:before{content:"\e921"}.xnote-icon-checkmark:before{content:"\e922"}.xnote-icon-text-wrap:before{content:"\e924"}.xnote-icon-heading-h1:before{content:"\e925"}.xnote-icon-heading-h2:before{content:"\e926"}.xnote-icon-heading-h3:before{content:"\e927"}.xnote-icon-heading-h4:before{content:"\e928"}.xnote-icon-heading-h5:before{content:"\e929"}.xnote-icon-heading-h6:before{content:"\e92a"}.xnote-icon-heading:before{content:"\e92b"}.xnote-icon-copy:before{content:"\e92c"}.xnote-icon-paste:before{content:"\e92d"}.xnote-icon-history-back:before{content:"\e967"}.xnote-icon-history-forward:before{content:"\e968"}.xnote-icon-quotes-right:before{content:"\e978"}.xnote-icon-bin:before{content:"\e9ac"}.xnote-icon-list-numbered:before{content:"\e9b9"}.xnote-icon-list:before{content:"\e9bb"}.xnote-icon-link:before{content:"\e9cb"}.xnote-icon-command:before{content:"\ea4e"}.xnote-icon-shift:before{content:"\ea4f"}.xnote-icon-ctrl:before{content:"\ea50"}.xnote-icon-opt:before{content:"\ea51"}.xnote-icon-checkbox-checked:before{content:"\ea52"}.xnote-icon-checkbox-unchecked:before{content:"\ea53"}.xnote-icon-cut:before{content:"\ea5a"}.xnote-icon-line-height:before{content:"\ea5f"}.xnote-icon-letter-spacing:before{content:"\ea60"}.xnote-icon-font-size:before{content:"\ea61"}.xnote-icon-bold:before{content:"\ea62"}.xnote-icon-underline:before{content:"\ea63"}.xnote-icon-italic:before{content:"\ea64"}.xnote-icon-strikethrough:before{content:"\ea65"}.xnote-icon-superscript:before{content:"\ea69"}.xnote-icon-subscript:before{content:"\ea6a"}.xnote-icon-table:before{content:"\ea71"}.xnote-icon-pilcrow:before{content:"\ea73"}.xnote-icon-ltr:before{content:"\ea74"}.xnote-icon-rtl:before{content:"\ea75"}.xnote-icon-paragraph-left:before{content:"\ea77"}.xnote-icon-paragraph-center:before{content:"\ea78"}.xnote-icon-paragraph-right:before{content:"\ea79"}.xnote-icon-paragraph-justify:before{content:"\ea7a"}.xnote-icon-indent-increase:before{content:"\ea7b"}.xnote-icon-indent-decrease:before{content:"\ea7c"}.xnote-icon-code:before{content:"\ea80"}.xnote-icon-plus:before{content:"\e907"}.xnote-icon-function:before{content:"\e90a"}.xnote-h1{font-size:2.2em;font-weight:600}.xnote-h2{font-size:1.8em;font-weight:600}.xnote-h3{font-size:1.4em;font-weight:600}.xnote-h4{font-size:1em;font-weight:600}.xnote-h5{font-size:.9em;font-weight:600}.xnote-h6{font-size:.8em;font-weight:600}.xnote-code{border:1px solid rgba(0,0,0,.2);border-radius:4px;font-family:Microsoft YaHei Mono,Menlo,Monaco,Consolas,Courier New,monospace;margin:0 3px;padding:2px 3px}
|