@seafile/seafile-editor 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/extension/commons/menu/menu.css +2 -3
- package/dist/extension/commons/tooltip/index.css +5 -5
- package/dist/extension/commons/tooltip/index.js +1 -1
- package/dist/extension/plugins/header/menu/index.js +4 -4
- package/dist/extension/plugins/header/menu/style.css +14 -27
- package/dist/extension/plugins/link/render-elem/link-popover.js +2 -2
- package/dist/extension/plugins/link/render-elem/style.css +2 -3
- package/dist/extension/plugins/list/plugin/shortcut.js +30 -14
- package/package.json +1 -1
- package/public/media/seafile-editor-font/iconfont.eot +0 -0
- package/public/media/seafile-editor-font/iconfont.svg +55 -51
- package/public/media/seafile-editor-font/iconfont.ttf +0 -0
- package/public/media/seafile-editor-font/iconfont.woff +0 -0
- package/public/media/seafile-editor-font/iconfont.woff2 +0 -0
- package/public/media/seafile-editor-font.css +109 -101
|
@@ -32,12 +32,11 @@
|
|
|
32
32
|
color: #eb8205;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
.menu-group .menu-group-item .iconfont
|
|
36
|
-
.sdoc-menu-with-dropdown .sdoc-menu-with-dropdown-icon .iconfont {
|
|
35
|
+
.menu-group .menu-group-item .iconfont {
|
|
37
36
|
font-size: 13px;
|
|
38
37
|
}
|
|
39
38
|
|
|
40
|
-
/*
|
|
39
|
+
/* sf-menu-with-dropdown */
|
|
41
40
|
.menu-group .menu-group-item.sf-menu-with-dropdown {
|
|
42
41
|
width: 36px;
|
|
43
42
|
height: 24px;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
.
|
|
1
|
+
.sf-tooltip .tooltip-inner {
|
|
2
2
|
font-weight: lighter;
|
|
3
3
|
text-align: start;
|
|
4
4
|
background-color: #303133;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.
|
|
7
|
+
.sf-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
|
|
8
8
|
border-bottom-color: #303133;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.
|
|
11
|
+
.sf-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
|
|
12
12
|
border-top-color: #303133;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
.
|
|
15
|
+
.sf-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
|
|
16
16
|
border-right-color: #303133;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
.
|
|
19
|
+
.sf-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
|
|
20
20
|
border-left-color: #303133;
|
|
21
21
|
}
|
|
@@ -9,7 +9,7 @@ const Tooltip = _ref => {
|
|
|
9
9
|
className,
|
|
10
10
|
placement
|
|
11
11
|
} = _ref;
|
|
12
|
-
const popperClassName = classnames('
|
|
12
|
+
const popperClassName = classnames('sf-tooltip', className);
|
|
13
13
|
return /*#__PURE__*/React.createElement(UncontrolledTooltip, {
|
|
14
14
|
popperClassName: popperClassName,
|
|
15
15
|
target: target,
|
|
@@ -52,12 +52,12 @@ const HeaderMenu = _ref => {
|
|
|
52
52
|
return isMac ? MAC_HOTKEYS_TIP_HEADER[type] : WIN_HOTKEYS_EVENT_HEADER[type];
|
|
53
53
|
};
|
|
54
54
|
return /*#__PURE__*/React.createElement("div", {
|
|
55
|
-
className: classnames('header-menu', {
|
|
55
|
+
className: classnames('sf-header-menu', {
|
|
56
56
|
'header-popover-showed': isShowHeaderPopover,
|
|
57
57
|
'header-toggle-disabled': isDisabled
|
|
58
58
|
})
|
|
59
59
|
}, /*#__PURE__*/React.createElement("div", {
|
|
60
|
-
className: classnames('header-toggle', {
|
|
60
|
+
className: classnames('sf-header-toggle', {
|
|
61
61
|
'header-toggle-disabled': isDisabled,
|
|
62
62
|
'header-popover-showed': isShowHeaderPopover
|
|
63
63
|
}),
|
|
@@ -65,10 +65,10 @@ const HeaderMenu = _ref => {
|
|
|
65
65
|
}, /*#__PURE__*/React.createElement("span", {
|
|
66
66
|
className: "active"
|
|
67
67
|
}, t(HEADER_TITLE_MAP[currentHeaderType !== null && currentHeaderType !== void 0 ? currentHeaderType : ELementTypes.PARAGRAPH])), !isDisabled && /*#__PURE__*/React.createElement("span", {
|
|
68
|
-
className: "
|
|
68
|
+
className: "iconfont icon-".concat(isShowHeaderPopover ? 'caret-up' : 'drop-down')
|
|
69
69
|
})), isShowHeaderPopover && /*#__PURE__*/React.createElement("div", {
|
|
70
70
|
ref: headerPopoverRef,
|
|
71
|
-
className: "header-popover
|
|
71
|
+
className: "sf-header-popover"
|
|
72
72
|
}, headerPopoverShowerList.map((item, index) => {
|
|
73
73
|
const id = "".concat(item, "-").concat(index);
|
|
74
74
|
const isSelected = currentHeaderType === item;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.header-menu {
|
|
1
|
+
.sf-header-menu {
|
|
2
2
|
display: flex;
|
|
3
3
|
height: 100%;
|
|
4
4
|
width: 140px;
|
|
@@ -7,20 +7,7 @@
|
|
|
7
7
|
align-items: center;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
.header-menu::after {
|
|
11
|
-
content: '';
|
|
12
|
-
position: absolute;
|
|
13
|
-
top: 12px;
|
|
14
|
-
right: 12px;
|
|
15
|
-
border-top: 6px solid #222428;
|
|
16
|
-
border-bottom: 6px solid transparent;
|
|
17
|
-
border-left: 6px solid transparent;
|
|
18
|
-
border-right: 6px solid transparent;
|
|
19
|
-
scale: 0.6;
|
|
20
|
-
pointer-events: none;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.header-menu.header-toggle-disabled::after {
|
|
10
|
+
.sf-header-menu.header-toggle-disabled::after {
|
|
24
11
|
content: '';
|
|
25
12
|
position: absolute;
|
|
26
13
|
top: 12px;
|
|
@@ -28,7 +15,7 @@
|
|
|
28
15
|
border-top: 6px solid #e5e6e8;
|
|
29
16
|
}
|
|
30
17
|
|
|
31
|
-
.header-menu.header-popover-showed::after {
|
|
18
|
+
.sf-header-menu.sf-header-popover-showed::after {
|
|
32
19
|
content: '';
|
|
33
20
|
position: absolute;
|
|
34
21
|
top: 7px;
|
|
@@ -37,7 +24,7 @@
|
|
|
37
24
|
border-bottom-color: #222428;
|
|
38
25
|
}
|
|
39
26
|
|
|
40
|
-
.header-menu .header-toggle {
|
|
27
|
+
.sf-header-menu .sf-header-toggle {
|
|
41
28
|
flex: 1;
|
|
42
29
|
display: flex;
|
|
43
30
|
justify-content: space-between;
|
|
@@ -48,28 +35,28 @@
|
|
|
48
35
|
}
|
|
49
36
|
|
|
50
37
|
|
|
51
|
-
.header-menu .header-toggle .active {
|
|
38
|
+
.sf-header-menu .sf-header-toggle .active {
|
|
52
39
|
font-size: 14px;
|
|
53
40
|
}
|
|
54
41
|
|
|
55
|
-
.header-menu .header-toggle-disabled {
|
|
42
|
+
.sf-header-menu .header-toggle-disabled {
|
|
56
43
|
color: #BDBDBD;
|
|
57
44
|
cursor: unset;
|
|
58
45
|
}
|
|
59
46
|
|
|
60
47
|
|
|
61
|
-
.header-menu .header-toggle.header-popover-showed {
|
|
48
|
+
.sf-header-menu .sf-header-toggle.sf-header-popover-showed {
|
|
62
49
|
background-color: #f2f2f2;
|
|
63
50
|
border-radius: 2px;
|
|
64
51
|
}
|
|
65
52
|
|
|
66
|
-
.header-menu .header-toggle:not(.header-toggle-disabled):hover {
|
|
53
|
+
.sf-header-menu .sf-header-toggle:not(.header-toggle-disabled):hover {
|
|
67
54
|
background-color: #f2f2f2;
|
|
68
55
|
border-radius: 2px;
|
|
69
56
|
}
|
|
70
57
|
|
|
71
|
-
.header-menu .header-toggle .
|
|
72
|
-
color: #
|
|
58
|
+
.sf-header-menu .sf-header-toggle .iconfont {
|
|
59
|
+
color: #444;
|
|
73
60
|
width: 12px;
|
|
74
61
|
height: 24px;
|
|
75
62
|
margin-left: 8px;
|
|
@@ -80,7 +67,7 @@
|
|
|
80
67
|
cursor: pointer;
|
|
81
68
|
}
|
|
82
69
|
|
|
83
|
-
.header-menu .header-popover {
|
|
70
|
+
.sf-header-menu .sf-header-popover {
|
|
84
71
|
position: absolute;
|
|
85
72
|
top: 32px;
|
|
86
73
|
left: 8px;
|
|
@@ -96,7 +83,7 @@
|
|
|
96
83
|
z-index: 101;
|
|
97
84
|
}
|
|
98
85
|
|
|
99
|
-
.header-menu .header-popover .sf-dropdown-menu-item {
|
|
86
|
+
.sf-header-menu .sf-header-popover .sf-dropdown-menu-item {
|
|
100
87
|
font-size: 14px;
|
|
101
88
|
height: auto;
|
|
102
89
|
padding: 9px 16px 9px 28px;
|
|
@@ -104,11 +91,11 @@
|
|
|
104
91
|
line-height: 1;
|
|
105
92
|
}
|
|
106
93
|
|
|
107
|
-
.header-menu .header-popover .sf-dropdown-menu-item:hover {
|
|
94
|
+
.sf-header-menu .sf-header-popover .sf-dropdown-menu-item:hover {
|
|
108
95
|
background-color: #F2F2F2;
|
|
109
96
|
}
|
|
110
97
|
|
|
111
|
-
.header-menu .header-popover .sf-dropdown-menu-item .sf-check-mark {
|
|
98
|
+
.sf-header-menu .sf-header-popover .sf-dropdown-menu-item .sf-check-mark {
|
|
112
99
|
position: absolute;
|
|
113
100
|
left: 8px;
|
|
114
101
|
transform: scale(.8);
|
|
@@ -65,13 +65,13 @@ const LinkPopover = _ref => {
|
|
|
65
65
|
className: "sf-link-op-icon",
|
|
66
66
|
onClick: onEditLink
|
|
67
67
|
}, /*#__PURE__*/React.createElement("i", {
|
|
68
|
-
className: "iconfont icon-
|
|
68
|
+
className: "iconfont icon-rename"
|
|
69
69
|
})), /*#__PURE__*/React.createElement("span", {
|
|
70
70
|
role: "button",
|
|
71
71
|
className: "sf-link-op-icon",
|
|
72
72
|
onClick: onUnwrapLink
|
|
73
73
|
}, /*#__PURE__*/React.createElement("i", {
|
|
74
|
-
className: "iconfont icon-
|
|
74
|
+
className: "iconfont icon-unlink"
|
|
75
75
|
})))), document.body));
|
|
76
76
|
};
|
|
77
77
|
export default LinkPopover;
|
|
@@ -44,17 +44,16 @@
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.sf-link-op-icon {
|
|
47
|
-
color: #999999;
|
|
48
47
|
padding: 4px;
|
|
49
48
|
border-radius: 2px;
|
|
50
49
|
margin-left: 8px;
|
|
51
50
|
display: flex;
|
|
52
51
|
align-items: center;
|
|
52
|
+
color: #444;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.sf-link-op-icon {
|
|
55
|
+
.sf-link-op-icon .iconfont {
|
|
56
56
|
font-size: 12px;
|
|
57
|
-
color: #444;
|
|
58
57
|
}
|
|
59
58
|
|
|
60
59
|
.sf-link-op-icon:hover {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Editor, Range, Transforms } from 'slate';
|
|
2
2
|
import { getBeforeText, setListType } from '../helpers';
|
|
3
|
-
import { ORDERED_LIST, PARAGRAPH } from '../../../constants/element-types';
|
|
4
|
-
import { focusEditor, getPreviousPath } from '../../../core';
|
|
3
|
+
import { ORDERED_LIST, PARAGRAPH, UNORDERED_LIST } from '../../../constants/element-types';
|
|
4
|
+
import { focusEditor, getNodeEntries, getPreviousPath } from '../../../core';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* @param {Editor} editor
|
|
@@ -17,28 +17,44 @@ export const handleShortcut = (editor, text) => {
|
|
|
17
17
|
let [aboveNode, aboveNodePath] = Editor.above(editor);
|
|
18
18
|
if (aboveNode.type !== PARAGRAPH) return false;
|
|
19
19
|
// Match ordered list shortcut
|
|
20
|
-
const
|
|
20
|
+
const regOrderListShortcut = /^\s*[1]+\.\s*$/;
|
|
21
|
+
const regUnorderedListShortcut = /^\s*\*+\s*$/;
|
|
21
22
|
const {
|
|
22
23
|
beforeText,
|
|
23
24
|
range
|
|
24
25
|
} = getBeforeText(editor);
|
|
25
|
-
const
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
// If the previous node is not an ordered list and is start with `1.`,transforms to ordered list
|
|
34
|
-
if (previousNode.type !== ORDERED_LIST && matchedText === '1.') {
|
|
26
|
+
const matchOrderListResult = beforeText.match(regOrderListShortcut);
|
|
27
|
+
const matchUnorderedListResult = beforeText.match(regUnorderedListShortcut);
|
|
28
|
+
const matchedOrderListText = matchOrderListResult && matchOrderListResult[0];
|
|
29
|
+
const matchedUnorderedListText = matchUnorderedListResult && matchUnorderedListResult[0];
|
|
30
|
+
if (matchUnorderedListResult) {
|
|
31
|
+
// Unordered list shortcut
|
|
32
|
+
if (matchedUnorderedListText !== '*') return false;
|
|
33
|
+
if (matchUnorderedListResult.index !== 0) return false;
|
|
35
34
|
// Delete shortcut key text
|
|
36
35
|
Transforms.delete(editor, {
|
|
37
36
|
at: range
|
|
38
37
|
});
|
|
39
|
-
setListType(editor,
|
|
38
|
+
setListType(editor, UNORDERED_LIST);
|
|
40
39
|
focusEditor(editor);
|
|
41
40
|
return true;
|
|
41
|
+
} else if (matchOrderListResult) {
|
|
42
|
+
// Ordered list shortcut
|
|
43
|
+
// If the match fails or the match is not at the beginning of the line, it is not a shortcut
|
|
44
|
+
if (matchOrderListResult.index !== 0) return false;
|
|
45
|
+
if (matchedOrderListText !== '1.') return false;
|
|
46
|
+
const previousNodePath = getPreviousPath(aboveNodePath);
|
|
47
|
+
const [previousNode] = Editor.node(editor, previousNodePath);
|
|
48
|
+
// If the previous node is not an ordered list and is start with `1.`,transforms to ordered list
|
|
49
|
+
if (previousNode.type !== ORDERED_LIST) {
|
|
50
|
+
// Delete shortcut key text
|
|
51
|
+
Transforms.delete(editor, {
|
|
52
|
+
at: range
|
|
53
|
+
});
|
|
54
|
+
setListType(editor, ORDERED_LIST);
|
|
55
|
+
focusEditor(editor);
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
42
58
|
}
|
|
43
59
|
return false;
|
|
44
60
|
};
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -14,107 +14,111 @@
|
|
|
14
14
|
/>
|
|
15
15
|
<missing-glyph />
|
|
16
16
|
|
|
17
|
-
<glyph glyph-name="
|
|
17
|
+
<glyph glyph-name="edit" unicode="" d="M691.2 640l140.8-140.8c6.4-6.4 6.4-16 0-22.4L489.6 137.6l-144-16c-19.2-3.2-35.2 12.8-32 32l16 144L668.8 640c6.4 3.2 16 3.2 22.4 0z m249.6 35.2L864 752c-22.4 22.4-60.8 22.4-86.4 0l-54.4-54.4c-6.4-6.4-6.4-16 0-22.4l140.8-140.8c6.4-6.4 16-6.4 22.4 0l54.4 54.4c25.6 22.4 25.6 60.8 0 86.4z m-278.4-444.8v-156.8H163.2V569.6h358.4c6.4 0 9.6 3.2 12.8 6.4l60.8 60.8c12.8 12.8 3.2 32-12.8 32H137.6C96 668.8 64 633.6 64 595.2v-547.2c0-41.6 32-73.6 73.6-73.6h547.2c41.6 0 73.6 32 73.6 73.6v246.4c0 16-19.2 25.6-32 12.8l-60.8-60.8c-3.2-6.4-3.2-12.8-3.2-16z" horiz-adv-x="1024" />
|
|
18
18
|
|
|
19
|
-
<glyph glyph-name="-
|
|
19
|
+
<glyph glyph-name="exclamation-triangle" unicode="" d="M583.63328 76.8v108.8c0 6.4-3.2 9.6-6.4 12.8-3.2 3.2-6.4 6.4-12.8 6.4h-108.8c-6.4 0-9.6-3.2-12.8-6.4-3.2-3.2-6.4-9.6-6.4-12.8v-108.8c0-6.4 3.2-9.6 6.4-12.8s6.4-6.4 12.8-6.4h108.8c6.4 0 9.6 3.2 12.8 6.4 3.2 3.2 6.4 9.6 6.4 12.8z m-3.2 214.4l9.6 262.4c0 3.2-3.2 9.6-6.4 9.6-6.4 3.2-9.6 6.4-12.8 6.4h-124.8c-3.2 0-9.6-3.2-12.8-6.4-3.2-3.2-6.4-6.4-6.4-12.8l9.6-262.4c0-3.2 3.2-6.4 6.4-9.6 3.2-3.2 9.6-3.2 12.8-3.2h105.6c6.4 0 9.6 0 12.8 3.2 3.2 3.2 6.4 9.6 6.4 12.8z m-6.4 534.4l438.4-803.2c12.8-25.6 12.8-48 0-70.4-6.4-9.6-16-19.2-25.6-25.6-12.8-6.4-22.4-9.6-35.2-9.6H71.63328c-12.8 0-25.6 3.2-35.2 9.6-9.6 6.4-19.2 16-25.6 25.6-12.8 25.6-16 48 0 70.4L446.03328 825.6c6.4 12.8 16 22.4 25.6 28.8 12.8 6.4 25.6 9.6 38.4 9.6 12.8 0 25.6-3.2 38.4-9.6 12.8-6.4 19.2-16 25.6-28.8z" horiz-adv-x="1025" />
|
|
20
20
|
|
|
21
|
-
<glyph glyph-name="-
|
|
21
|
+
<glyph glyph-name="angle-double-left" unicode="" d="M592 784c0-9.6-3.2-16-9.6-22.4L204.8 384l377.6-377.6c6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4l-48-48c-6.4-6.4-12.8-9.6-22.4-9.6s-16 3.2-22.4 9.6l-448 451.2c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4l448 444.8c6.4 6.4 12.8 9.6 22.4 9.6s16-3.2 22.4-9.6l48-48c3.2-6.4 9.6-12.8 9.6-22.4z m368 0c0-9.6-3.2-16-9.6-22.4L572.8 384l377.6-377.6c6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4l-48-48c-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L412.8 364.8c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4L857.6 854.4c6.4 6.4 16 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l48-48c6.4-6.4 9.6-12.8 9.6-22.4z" horiz-adv-x="1024" />
|
|
22
22
|
|
|
23
|
-
<glyph glyph-name="-
|
|
23
|
+
<glyph glyph-name="eye-slash" unicode="" d="M316.8 172.8l44.8 80A251.84 251.84 0 0 0 256 457.6c0 44.8 12.8 89.6 35.2 128C201.6 540.8 128 467.2 73.6 384c57.6-89.6 144-166.4 243.2-211.2z m224 432c0 16-12.8 28.8-28.8 28.8-96 0-172.8-76.8-172.8-172.8 0-16 12.8-28.8 28.8-28.8s28.8 12.8 28.8 28.8c0 64 54.4 118.4 118.4 118.4 12.8 0 25.6 9.6 25.6 25.6z m204.8 108.8v-6.4c-121.6-214.4-240-432-361.6-646.4l-28.8-51.2c-3.2-6.4-9.6-9.6-16-9.6-9.6 0-64 32-76.8 41.6-3.2 3.2-6.4 9.6-6.4 16 0 9.6 19.2 41.6 25.6 51.2C169.6 160 76.8 246.4 12.8 348.8c-9.6 9.6-12.8 22.4-12.8 38.4 0 12.8 3.2 28.8 12.8 38.4 112 172.8 288 288 499.2 288 35.2 0 70.4-3.2 102.4-9.6l32 54.4c3.2 6.4 9.6 9.6 16 9.6 9.6 0 64-32 76.8-41.6 3.2 0 6.4-6.4 6.4-12.8z m22.4-256c0-105.6-64-201.6-163.2-240l160 288c0-16 3.2-32 3.2-48z m256-70.4c0-16-3.2-25.6-12.8-38.4-19.2-28.8-41.6-57.6-60.8-83.2-112-128-265.6-208-438.4-208l41.6 76.8c166.4 12.8 307.2 115.2 396.8 252.8-41.6 67.2-96 124.8-160 169.6l35.2 64c70.4-48 140.8-118.4 185.6-192 9.6-16 12.8-28.8 12.8-41.6z" horiz-adv-x="1024" />
|
|
24
24
|
|
|
25
|
-
<glyph glyph-name="
|
|
25
|
+
<glyph glyph-name="comment" unicode="" d="M512 800C249.6 800 32 627.2 32 409.6c0-92.8 38.4-176 108.8-246.4-25.6-92.8-102.4-179.2-102.4-179.2-6.4-3.2-6.4-9.6-6.4-16s9.6-9.6 16-9.6c121.6 0 217.6 60.8 262.4 96 60.8-25.6 128-35.2 201.6-35.2 262.4 0 480 172.8 480 390.4S774.4 800 512 800z" horiz-adv-x="1024" />
|
|
26
26
|
|
|
27
|
-
<glyph glyph-name="-
|
|
27
|
+
<glyph glyph-name="caret-up" unicode="" d="M870.4 137.6H153.6c-51.2 0-73.6 60.8-38.4 96L473.6 592c22.4 22.4 57.6 22.4 80 0l358.4-358.4c35.2-38.4 9.6-96-41.6-96z" horiz-adv-x="1024" />
|
|
28
28
|
|
|
29
|
-
<glyph glyph-name="-
|
|
29
|
+
<glyph glyph-name="delete-table" unicode="" d="M752 355.2c115.2 0 208-96 208-208S864-64 752-64 544 32 544 144s92.8 211.2 208 211.2zM835.2 832c35.2 0 64-28.8 64-64v-400c-41.6 28.8-92.8 44.8-150.4 44.8-147.2 0-268.8-121.6-268.8-268.8 0-9.6 0-19.2 3.2-28.8H128c-35.2 0-64 28.8-64 64V768c0 35.2 28.8 64 64 64h707.2z m-32-656h-115.2c-16 0-25.6-12.8-25.6-28.8 0-12.8 12.8-28.8 25.6-28.8h115.2c16 0 25.6 12.8 25.6 28.8 0 12.8-9.6 28.8-25.6 28.8z m-374.4 198.4H192c-16 0-28.8-12.8-32-28.8v-118.4c0-16 12.8-28.8 28.8-32H425.6c16 0 28.8 12.8 32 28.8v118.4c3.2 19.2-12.8 32-28.8 32z m0 256H192c-16 0-28.8-12.8-32-28.8v-118.4c0-16 12.8-28.8 28.8-32H425.6c16 0 28.8 12.8 32 28.8V598.4c3.2 16-12.8 32-28.8 32z m352 0h-233.6c-16 0-28.8-12.8-32-28.8v-118.4c0-16 12.8-28.8 28.8-32H780.8c16 0 28.8 12.8 32 28.8V598.4c0 16-16 32-32 32z" horiz-adv-x="1024" />
|
|
30
30
|
|
|
31
|
-
<glyph glyph-name="-
|
|
31
|
+
<glyph glyph-name="check-circle" unicode="" d="M992 384c0-265.6-214.4-480-480-480S32 118.4 32 384 246.4 864 512 864s480-214.4 480-480z m-534.4-252.8l355.2 355.2c12.8 12.8 12.8 32 0 44.8L768 572.8c-12.8 12.8-32 12.8-44.8 0l-291.2-291.2-137.6 137.6c-12.8 12.8-32 12.8-44.8 0l-44.8-44.8c-12.8-12.8-12.8-32 0-44.8l201.6-201.6c19.2-9.6 38.4-9.6 51.2 3.2z" horiz-adv-x="1024" />
|
|
32
32
|
|
|
33
|
-
<glyph glyph-name="-
|
|
33
|
+
<glyph glyph-name="ellipsis-v" unicode="" d="M512 512c70.4 0 128-57.6 128-128s-57.6-128-128-128-128 57.6-128 128 57.6 128 128 128z m-128 224c0-70.4 57.6-128 128-128s128 57.6 128 128-57.6 128-128 128-128-57.6-128-128z m0-704c0-70.4 57.6-128 128-128s128 57.6 128 128-57.6 128-128 128-128-57.6-128-128z" horiz-adv-x="1024" />
|
|
34
34
|
|
|
35
|
-
<glyph glyph-name="-
|
|
35
|
+
<glyph glyph-name="drop-down" unicode="" d="M563.2 160l345.6 342.4c41.6 38.4 9.6 105.6-51.2 105.6H166.4c-60.8 0-92.8-64-51.2-105.6L460.8 160c28.8-25.6 73.6-25.6 102.4 0z" horiz-adv-x="1024" />
|
|
36
36
|
|
|
37
|
-
<glyph glyph-name="
|
|
37
|
+
<glyph glyph-name="link" unicode="" d="M627.2 499.2c96-96 96-252.8 0-348.8l-108.8-108.8c-96-96-252.8-96-348.8 0s-96 252.8 0 348.8L227.2 448c16 16 44.8 6.4 44.8-16 0-28.8 6.4-57.6 16-86.4 3.2-9.6 0-19.2-6.4-25.6l-22.4-22.4c-44.8-44.8-48-118.4-3.2-166.4 44.8-44.8 121.6-48 166.4 0l108.8 108.8c44.8 44.8 44.8 118.4 0 166.4-6.4 6.4-12.8 9.6-16 12.8-6.4 3.2-9.6 12.8-12.8 19.2 0 16 6.4 35.2 19.2 48l35.2 35.2c9.6 9.6 22.4 9.6 32 3.2 16-6.4 25.6-16 38.4-25.6z m227.2 227.2c-96 96-252.8 96-348.8 0l-108.8-108.8c-96-96-96-249.6 0-348.8 9.6-9.6 22.4-19.2 32-28.8 9.6-6.4 25.6-6.4 32 3.2l35.2 35.2c12.8 12.8 19.2 32 19.2 48 0 9.6-3.2 16-12.8 19.2-3.2 3.2-9.6 6.4-16 12.8-44.8 44.8-44.8 118.4 0 166.4l108.8 108.8c44.8 44.8 121.6 44.8 166.4 0 44.8-44.8 44.8-118.4-3.2-166.4l-19.2-19.2c-6.4-6.4-9.6-16-6.4-25.6 9.6-28.8 16-57.6 16-86.4 0-22.4 28.8-32 44.8-16l60.8 60.8c96 92.8 96 249.6 0 345.6z" horiz-adv-x="1024" />
|
|
38
38
|
|
|
39
|
-
<glyph glyph-name="-
|
|
39
|
+
<glyph glyph-name="center-horizontally" unicode="" d="M748.8 771.2v-73.6c0-16-12.8-28.8-28.8-28.8h-416c-16 0-28.8 12.8-28.8 28.8V771.2c0 16 12.8 28.8 28.8 28.8h416c16 0 28.8-12.8 28.8-28.8zM124.8 435.2H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z m0-467.2H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z m595.2 364.8h-416c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8h416c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8z" horiz-adv-x="1024" />
|
|
40
40
|
|
|
41
|
-
<glyph glyph-name="
|
|
41
|
+
<glyph glyph-name="close" unicode="" d="M668.8 384l236.8 236.8c28.8 28.8 28.8 76.8 0 105.6l-51.2 51.2c-28.8 28.8-76.8 28.8-105.6 0L512 540.8 275.2 777.6c-28.8 28.8-76.8 28.8-105.6 0L118.4 726.4c-28.8-28.8-28.8-76.8 0-105.6l236.8-236.8-236.8-236.8c-28.8-28.8-28.8-76.8 0-105.6l51.2-51.2c28.8-28.8 76.8-28.8 105.6 0l236.8 236.8 236.8-236.8c28.8-28.8 76.8-28.8 105.6 0l51.2 51.2c28.8 28.8 28.8 76.8 0 105.6L668.8 384z" horiz-adv-x="1024" />
|
|
42
42
|
|
|
43
|
-
<glyph glyph-name="
|
|
43
|
+
<glyph glyph-name="enlarge" unicode="" d="M432 860.8C211.2 860.8 32 681.6 32 460.8s179.2-400 400-400c99.2 0 188.8 35.2 256 92.8l217.6-217.6c19.2-19.2 48-19.2 67.2 0s19.2 48 0 67.2L755.2 224c48 67.2 76.8 147.2 76.8 236.8 0 220.8-179.2 400-400 400z m0-99.2c166.4 0 300.8-134.4 300.8-300.8S598.4 160 432 160s-300.8 134.4-300.8 300.8 134.4 300.8 300.8 300.8z m-3.2-124.8c-25.6 0-48-22.4-48-48v-80H300.8c-25.6 0-48-22.4-48-48s22.4-48 48-48h80v-80c0-25.6 22.4-48 48-48s48 22.4 48 48v80h80c25.6 0 48 22.4 48 48s-22.4 48-48 48h-80V588.8c0 25.6-22.4 48-48 48z" horiz-adv-x="1024" />
|
|
44
44
|
|
|
45
|
-
<glyph glyph-name="
|
|
45
|
+
<glyph glyph-name="bell" unicode="" d="M518.4-73.6c0 6.4-3.2 9.6-9.6 9.6-44.8 0-83.2 38.4-83.2 83.2 0 6.4-3.2 9.6-9.6 9.6s-9.6-3.2-9.6-9.6c0-54.4 44.8-99.2 99.2-99.2 9.6-3.2 12.8 3.2 12.8 6.4z m467.2 166.4c0-41.6-32-73.6-73.6-73.6h-256c0-80-67.2-147.2-147.2-147.2s-147.2 67.2-147.2 147.2h-256c-41.6 0-73.6 32-73.6 73.6 83.2 70.4 182.4 198.4 182.4 476.8 0 108.8 89.6 230.4 243.2 252.8-3.2 6.4-3.2 16-3.2 22.4 0 25.6 25.6 51.2 54.4 51.2s54.4-25.6 54.4-54.4c0-9.6-3.2-16-3.2-22.4 150.4-22.4 243.2-140.8 243.2-252.8-3.2-275.2 96-403.2 182.4-473.6z" horiz-adv-x="1024" />
|
|
46
46
|
|
|
47
|
-
<glyph glyph-name="
|
|
47
|
+
<glyph glyph-name="magic" unicode="" d="M713.6 524.8l169.6 169.6-64 64-169.6-169.6 64-64z m262.4 172.8c0-12.8-3.2-22.4-9.6-25.6L211.2-83.2c-6.4-9.6-12.8-12.8-25.6-12.8-9.6 0-19.2 3.2-25.6 12.8L41.6 32c-6.4 6.4-9.6 16-9.6 25.6s3.2 19.2 12.8 25.6L796.8 838.4c6.4 6.4 16 9.6 25.6 9.6s19.2-3.2 25.6-9.6l118.4-118.4c6.4-6.4 9.6-16 9.6-22.4zM185.6 806.4l57.6-19.2-57.6-16-19.2-57.6-16 57.6-57.6 19.2 57.6 16 16 57.6 19.2-57.6z m204.8-96l115.2-35.2L390.4 640 352 524.8l-32 118.4-118.4 32 115.2 35.2L352 825.6c0 3.2 38.4-115.2 38.4-115.2z m544-278.4l57.6-19.2-57.6-16-19.2-57.6-19.2 57.6-57.6 16 57.6 19.2 19.2 57.6 19.2-57.6zM560 806.4l57.6-16-57.6-19.2-19.2-60.8-19.2 57.6-57.6 19.2 57.6 16 19.2 60.8 19.2-57.6z" horiz-adv-x="1024" />
|
|
48
48
|
|
|
49
|
-
<glyph glyph-name="
|
|
49
|
+
<glyph glyph-name="star2" unicode="" d="M944 524.8l-262.4 38.4L563.2 800c-19.2 41.6-80 41.6-102.4 0l-118.4-240-262.4-38.4c-44.8-9.6-67.2-67.2-32-99.2l188.8-182.4L192-19.2c-9.6-44.8 41.6-83.2 83.2-60.8l236.8 124.8 236.8-124.8c41.6-22.4 92.8 12.8 83.2 60.8l-44.8 262.4 188.8 182.4c32 32 12.8 89.6-32 99.2z m-249.6-252.8l41.6-246.4-224 115.2-224-118.4 41.6 246.4-182.4 176 249.6 38.4 115.2 224 112-227.2 249.6-38.4c0 3.2-179.2-169.6-179.2-169.6z" horiz-adv-x="1024" />
|
|
50
50
|
|
|
51
|
-
<glyph glyph-name="-
|
|
51
|
+
<glyph glyph-name="quote-left" unicode="" d="M892.8 384h-147.2v118.4c0 64 54.4 118.4 118.4 118.4h16c25.6 0 44.8 19.2 44.8 44.8V755.2c0 25.6-19.2 44.8-44.8 44.8H864c-163.2 0-297.6-134.4-297.6-297.6v-444.8c0-48 38.4-89.6 89.6-89.6h236.8c48 0 89.6 38.4 89.6 89.6v236.8c0 51.2-38.4 89.6-89.6 89.6z m-534.4 0H211.2v118.4c0 64 54.4 118.4 118.4 118.4h16c25.6 0 44.8 19.2 44.8 44.8V755.2c0 25.6-19.2 44.8-44.8 44.8h-16C166.4 800 32 665.6 32 502.4v-444.8C32 6.4 70.4-32 121.6-32h236.8c48 0 89.6 38.4 89.6 89.6v236.8c0 51.2-38.4 89.6-89.6 89.6z" horiz-adv-x="1024" />
|
|
52
52
|
|
|
53
|
-
<glyph glyph-name="-
|
|
53
|
+
<glyph glyph-name="angle-double-right" unicode="" d="M403.2 784c0 6.4 3.2 16 9.6 22.4l48 48c3.2 6.4 12.8 9.6 19.2 9.6 6.4 0 16-3.2 22.4-9.6l448-448c6.4-6.4 9.6-12.8 9.6-22.4 0-6.4-3.2-16-9.6-22.4l-448-444.8c-6.4-9.6-12.8-12.8-22.4-12.8-9.6 0-16 3.2-22.4 9.6l-48 48c-6.4 6.4-9.6 12.8-9.6 22.4 0 6.4 3.2 16 9.6 22.4L787.2 384 412.8 761.6c-6.4 6.4-9.6 16-9.6 22.4zM32 784c0 6.4 3.2 16 9.6 22.4l48 48c6.4 6.4 16 9.6 22.4 9.6s16-3.2 22.4-9.6l448-448c6.4-6.4 9.6-12.8 9.6-22.4 0-6.4-3.2-16-9.6-22.4l-448-444.8c-6.4-9.6-12.8-12.8-22.4-12.8s-16 3.2-22.4 9.6l-48 48c-6.4 6.4-9.6 12.8-9.6 22.4 0 6.4 3.2 16 9.6 22.4L419.2 384 41.6 761.6C38.4 768 32 777.6 32 784z" horiz-adv-x="1024" />
|
|
54
54
|
|
|
55
|
-
<glyph glyph-name="
|
|
55
|
+
<glyph glyph-name="code" unicode="" d="M448-16l-96 28.8c-9.6 3.2-16 12.8-12.8 22.4l217.6 748.8c0 12.8 9.6 19.2 19.2 16l96-28.8c9.6-3.2 16-12.8 12.8-22.4L467.2 0c0-12.8-9.6-19.2-19.2-16z m-182.4 179.2l70.4 73.6c6.4 6.4 6.4 19.2 0 28.8l-144 128 144 128c9.6 6.4 9.6 19.2 0 28.8L265.6 620.8c-9.6 6.4-19.2 6.4-28.8 0L6.4 406.4c-6.4-9.6-6.4-22.4 0-28.8l230.4-214.4c9.6-9.6 19.2-6.4 28.8 0z m521.6 0l230.4 214.4c9.6 6.4 9.6 19.2 0 28.8l-230.4 214.4c-6.4 6.4-19.2 6.4-25.6 0l-70.4-73.6c-6.4-6.4-6.4-19.2 0-28.8l144-128-144-128c-9.6-6.4-9.6-19.2 0-28.8l70.4-73.6c6.4-3.2 16-6.4 25.6 3.2z" horiz-adv-x="1024" />
|
|
56
56
|
|
|
57
|
-
<glyph glyph-name="
|
|
57
|
+
<glyph glyph-name="pencil" unicode="" d="M278.4 12.8l54.4 54.4L192 204.8l-54.4-54.4v-64h76.8v-76.8h64z m310.4 547.2c0 9.6-3.2 12.8-12.8 12.8-3.2 0-6.4 0-9.6-3.2L243.2 246.4c-3.2-3.2-3.2-6.4-3.2-9.6 0-6.4 3.2-12.8 12.8-12.8 3.2 0 6.4 0 9.6 3.2l323.2 323.2c3.2 3.2 3.2 6.4 3.2 9.6z m-35.2 115.2l246.4-246.4L310.4-64H64v246.4L553.6 675.2zM960 620.8c0-19.2-6.4-38.4-22.4-54.4l-99.2-99.2-246.4 246.4 99.2 96c12.8 16 32 22.4 54.4 22.4 19.2 0 38.4-6.4 54.4-22.4l140.8-140.8c12.8-12.8 19.2-28.8 19.2-48z" horiz-adv-x="1024" />
|
|
58
58
|
|
|
59
|
-
<glyph glyph-name="-
|
|
59
|
+
<glyph glyph-name="clear-format" unicode="" d="M918.4 579.2L640 816c-25.6 22.4-64 22.4-83.2-6.4L112 310.4c-9.6-9.6-16-25.6-16-41.6s9.6-32 22.4-41.6L256 112h326.4l342.4 384c19.2 25.6 19.2 60.8-6.4 83.2z m-384-380.8H300.8L224 268.8c-6.4 6.4-9.6 9.6-9.6 16s0 16 6.4 22.4l185.6 211.2 233.6-201.6-105.6-118.4zM147.2 41.6h739.2c32 0 51.2-22.4 51.2-51.2 0-32-22.4-51.2-51.2-51.2H147.2c-32 0-51.2 22.4-51.2 51.2 0 28.8 22.4 51.2 51.2 51.2z" horiz-adv-x="1024" />
|
|
60
60
|
|
|
61
|
-
<glyph glyph-name="-
|
|
61
|
+
<glyph glyph-name="check-square" unicode="" d="M838.4-32H185.6C134.4-32 96 6.4 96 57.6V710.4C96 761.6 134.4 800 185.6 800h652.8C889.6 800 928 761.6 928 710.4v-652.8c0-51.2-38.4-89.6-89.6-89.6z m-380.8 182.4L800 492.8c12.8 12.8 12.8 32 0 41.6L758.4 576c-12.8 12.8-32 12.8-41.6 0l-278.4-278.4-131.2 131.2c-12.8 12.8-32 12.8-41.6 0L224 384c-12.8-12.8-12.8-32 0-41.6l192-192c12.8-12.8 32-12.8 41.6 0z" horiz-adv-x="1024" />
|
|
62
62
|
|
|
63
|
-
<glyph glyph-name="
|
|
63
|
+
<glyph glyph-name="formula" unicode="" d="M393.6 576.384h89.6v-128h-118.4l-12.8-54.4c-38.4-166.4-54.4-243.2-73.6-307.2-25.6-105.6-105.6-179.2-217.6-179.2h-16c-6.4 0-12.8 6.4-12.8 12.8v92.8c0 9.6 3.2 12.8 12.8 12.8h16c41.6 9.6 67.2 35.2 80 92.8 19.2 64 35.2 140.8 70.4 304l6.4 25.6-172.8-3.2c-6.4 0-12.8 6.4-12.8 12.8v102.4c0 6.4 6.4 12.8 12.8 12.8l198.4 3.2c16 60.8 22.4 89.6 32 128 35.2 137.6 153.6 182.4 326.4 150.4 3.2 0 9.6 0 12.8-3.2 6.4 0 12.8-9.6 9.6-16l-19.2-115.2c0-6.4-9.6-12.8-16-9.6-6.4 0-12.8 3.2-16 3.2-115.2 22.4-137.6 22.4-153.6-41.6-6.4-35.2-16-54.4-25.6-96zM758.4 448.384l140.8 128h83.2c6.4 0 12.8-6.4 12.8-12.8v-105.6c0-6.4-6.4-12.8-12.8-12.8h-25.6l-128-115.2 86.4-124.8h12.8c6.4 0 12.8-6.4 12.8-12.8v-96c0-6.4-6.4-12.8-12.8-12.8h-96l-99.2 144-131.2-144h-92.8c-6.4 0-12.8 6.4-12.8 12.8v96c0 6.4 6.4 12.8 12.8 12.8h19.2l140.8 137.6-70.4 105.6h-124.8v128h204.8l80-128z" horiz-adv-x="1024" />
|
|
64
64
|
|
|
65
|
-
<glyph glyph-name="
|
|
65
|
+
<glyph glyph-name="row" unicode="" d="M32 512V640c0 35.2 32 64 67.2 64h137.6c38.4 0 67.2-28.8 67.2-64v-128c0-35.2-32-64-67.2-64H99.2C64 448 32 476.8 32 512z m342.4 0V640c0 35.2 32 64 67.2 64h137.6c38.4 0 67.2-28.8 67.2-64v-128c0-35.2-32-64-67.2-64h-137.6c-35.2 0-67.2 28.8-67.2 64z m342.4 0V640c0 35.2 32 64 67.2 64h137.6C960 704 992 675.2 992 640v-128c0-35.2-32-64-67.2-64h-137.6c-38.4 0-70.4 28.8-70.4 64zM32 128v128c0 35.2 32 64 67.2 64h137.6c38.4 0 67.2-28.8 67.2-64v-128c0-35.2-32-64-67.2-64H99.2C64 64 32 92.8 32 128z m342.4 0v128c0 35.2 32 64 67.2 64h137.6c38.4 0 67.2-28.8 67.2-64v-128c0-35.2-32-64-67.2-64h-137.6c-35.2 0-67.2 28.8-67.2 64z m342.4 0v128c0 35.2 32 64 67.2 64h137.6c38.4 0 67.2-28.8 67.2-64v-128c0-35.2-32-64-67.2-64h-137.6c-35.2 0-67.2 28.8-67.2 64z" horiz-adv-x="1024" />
|
|
66
66
|
|
|
67
|
-
<glyph glyph-name="-
|
|
67
|
+
<glyph glyph-name="plus-circle" unicode="" d="M512 864C246.4 864 32 649.6 32 384s214.4-480 480-480 480 214.4 480 480S777.6 864 512 864z m278.4-534.4c0-12.8-9.6-25.6-25.6-25.6h-179.2v-179.2c0-12.8-9.6-25.6-25.6-25.6h-108.8c-12.8 0-25.6 9.6-25.6 25.6v179.2H259.2c-12.8 0-25.6 9.6-25.6 25.6v108.8c0 12.8 9.6 25.6 25.6 25.6h179.2V636.8c0 12.8 9.6 25.6 25.6 25.6h108.8c12.8 0 25.6-9.6 25.6-25.6v-179.2h179.2c12.8 0 25.6-9.6 25.6-25.6v-105.6h-12.8z" horiz-adv-x="1024" />
|
|
68
68
|
|
|
69
|
-
<glyph glyph-name="-
|
|
69
|
+
<glyph glyph-name="align-right" unicode="" d="M393.6 697.6V771.2c0 16 12.8 28.8 28.8 28.8h476.8c16 0 28.8-12.8 28.8-28.8v-73.6c0-16-12.8-28.8-28.8-28.8H422.4c-16 0-28.8 12.8-28.8 28.8z m-268.8-262.4H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z m0-467.2H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z m297.6 233.6h476.8c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H422.4c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z" horiz-adv-x="1024" />
|
|
70
70
|
|
|
71
|
-
<glyph glyph-name="
|
|
71
|
+
<glyph glyph-name="star1" unicode="" d="M992 476.8c0-9.6-6.4-16-16-28.8l-211.2-204.8 48-288v-12.8c0-6.4-3.2-16-6.4-19.2-3.2-6.4-9.6-9.6-16-9.6s-16 3.2-22.4 6.4l-259.2 137.6-259.2-137.6c-9.6-3.2-16-6.4-22.4-6.4-9.6 0-12.8 3.2-19.2 9.6-3.2 6.4-6.4 12.8-6.4 19.2v12.8l48 288L41.6 448c-6.4 12.8-9.6 22.4-9.6 28.8 0 12.8 9.6 22.4 32 25.6l291.2 41.6 128 262.4c6.4 19.2 16 25.6 32 25.6 12.8 0 19.2-6.4 28.8-22.4l128-262.4 291.2-41.6c19.2 0 28.8-12.8 28.8-28.8z" horiz-adv-x="1024" />
|
|
72
72
|
|
|
73
|
-
<glyph glyph-name="
|
|
73
|
+
<glyph glyph-name="italic" unicode="" d="M819.2 771.2v-60.8c0-16-12.8-28.8-28.8-28.8H672l-147.2-595.2h86.4c16 0 28.8-12.8 28.8-28.8v-60.8c0-16-12.8-28.8-28.8-28.8H252.8c-16 0-28.8 12.8-28.8 28.8v60.8c0 16 12.8 28.8 28.8 28.8h115.2l150.4 595.2h-86.4c-16 0-28.8 12.8-28.8 28.8V771.2c0 16 12.8 28.8 28.8 28.8h355.2c19.2 0 32-12.8 32-28.8z" horiz-adv-x="1024" />
|
|
74
74
|
|
|
75
|
-
<glyph glyph-name="-
|
|
75
|
+
<glyph glyph-name="list-ol" unicode="" d="M147.2 115.2l32 38.4c6.4 6.4 9.6 16 9.6 25.6v6.4c0 12.8-6.4 22.4-22.4 22.4H60.8c-9.6 0-16-6.4-16-16v-32c0-9.6 6.4-16 16-16h41.6c-6.4-6.4-12.8-16-19.2-22.4l-9.6-12.8c-6.4-9.6-9.6-19.2-6.4-28.8l3.2-3.2c6.4-9.6 12.8-12.8 22.4-12.8h9.6c19.2 0 28.8-3.2 28.8-16 0-9.6-6.4-16-25.6-16-9.6 0-19.2 3.2-28.8 6.4-12.8 6.4-22.4 6.4-28.8-6.4l-9.6-16c-6.4-12.8-6.4-22.4 6.4-28.8 9.6-9.6 35.2-19.2 64-19.2 64 0 89.6 41.6 89.6 83.2 3.2 25.6-16 54.4-51.2 64z m806.4 329.6H358.4c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h595.2c16 0 28.8 12.8 28.8 28.8V416c0 12.8-12.8 28.8-28.8 28.8z m0 294.4H358.4c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h595.2c16 0 28.8 12.8 28.8 28.8V710.4c0 16-12.8 28.8-28.8 28.8z m0-592H358.4c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h595.2c16 0 28.8 12.8 28.8 28.8v60.8c0 16-12.8 28.8-28.8 28.8z m-892.8 416h118.4c9.6 0 16 6.4 16 16V608c0 9.6-6.4 16-16 16h-28.8v160c0 9.6-6.4 16-16 16H92.8c-6.4 0-12.8-3.2-16-9.6l-12.8-28.8c-3.2-3.2-3.2-9.6 0-12.8s6.4-6.4 12.8-6.4h16v-118.4h-32c-6.4-3.2-12.8-9.6-12.8-16v-32c0-6.4 6.4-12.8 12.8-12.8z m-6.4-297.6h124.8c9.6 0 16 6.4 16 16v28.8c0 9.6-6.4 16-16 16H108.8c6.4 19.2 89.6 35.2 89.6 105.6 0 54.4-48 73.6-83.2 73.6-38.4 0-64-19.2-73.6-35.2-9.6-12.8-6.4-22.4 3.2-32l16-12.8c9.6-9.6 19.2-3.2 28.8 3.2 3.2 3.2 9.6 6.4 16 6.4s16-3.2 16-16c0-22.4-96-41.6-96-128v-6.4c6.4-12.8 16-19.2 28.8-19.2z" horiz-adv-x="1024" />
|
|
76
76
|
|
|
77
|
-
<glyph glyph-name="
|
|
77
|
+
<glyph glyph-name="file" unicode="" d="M556.8 579.2V800H230.4C208 800 192 784 192 761.6v-755.2c0-22.4 16-38.4 38.4-38.4h547.2c22.4 0 38.4 16 38.4 38.4V540.8h-220.8c-22.4 0-38.4 16-38.4 38.4z m259.2 22.4v-9.6H608V800h9.6c9.6 0 19.2-3.2 28.8-12.8l160-160c6.4-6.4 9.6-16 9.6-25.6z" horiz-adv-x="1024" />
|
|
78
78
|
|
|
79
|
-
<glyph glyph-name="-
|
|
79
|
+
<glyph glyph-name="left-alignment" unicode="" d="M630.4 771.2v-73.6c0-16-12.8-28.8-28.8-28.8H124.8c-16 0-28.8 12.8-28.8 28.8V771.2c0 16 12.8 28.8 28.8 28.8h476.8c16 0 28.8-12.8 28.8-28.8zM96 537.6v-73.6c0-16 12.8-28.8 28.8-28.8H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8zM124.8-32H896c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8z m476.8 364.8H124.8c-16 0-28.8-12.8-28.8-28.8v-73.6c0-16 12.8-28.8 28.8-28.8h476.8c16 0 28.8 12.8 28.8 28.8v73.6c0 16-12.8 28.8-28.8 28.8z" horiz-adv-x="1024" />
|
|
80
80
|
|
|
81
|
-
<glyph glyph-name="
|
|
81
|
+
<glyph glyph-name="image" unicode="" d="M928 0H96c-54.4 0-96 41.6-96 96V672c0 54.4 41.6 96 96 96h832c54.4 0 96-41.6 96-96v-576c0-54.4-41.6-96-96-96zM224 656c-60.8 0-112-51.2-112-112s51.2-112 112-112 112 51.2 112 112S284.8 656 224 656zM128 128h768v224l-176 176c-9.6 9.6-25.6 9.6-35.2 0L416 256l-112 112c-9.6 9.6-25.6 9.6-35.2 0L128 224v-96z" horiz-adv-x="1024" />
|
|
82
82
|
|
|
83
|
-
<glyph glyph-name="
|
|
83
|
+
<glyph glyph-name="column" unicode="" d="M617.6 803.2h108.8c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8h-112c-32 0-57.6 25.6-57.6 60.8V742.4c3.2 35.2 28.8 60.8 60.8 60.8z m0-297.6h108.8c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8h-112c-32 0-57.6 25.6-57.6 60.8v121.6c3.2 32 28.8 60.8 60.8 60.8z m0-300.8h108.8c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8h-112c-32 0-57.6 25.6-57.6 60.8v121.6c3.2 32 28.8 60.8 60.8 60.8zM278.4 803.2h112c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8H278.4c-32 0-57.6 25.6-57.6 60.8V742.4c3.2 35.2 28.8 60.8 57.6 60.8z m0-297.6h112c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8H278.4c-32 0-57.6 25.6-57.6 60.8v121.6c3.2 32 28.8 60.8 57.6 60.8z m0-300.8h112c32 0 57.6-25.6 57.6-60.8v-121.6c0-32-25.6-60.8-57.6-60.8H278.4c-32 0-57.6 25.6-57.6 60.8v121.6c3.2 32 28.8 60.8 57.6 60.8z" horiz-adv-x="1024" />
|
|
84
84
|
|
|
85
|
-
<glyph glyph-name="-
|
|
85
|
+
<glyph glyph-name="info-circle" unicode="" d="M672 83.2v102.4c0 6.4-3.2 9.6-6.4 12.8s-6.4 6.4-12.8 6.4h-60.8v320c0 6.4-3.2 9.6-6.4 12.8-3.2 3.2-6.4 6.4-12.8 6.4h-198.4c-6.4 0-9.6-3.2-12.8-6.4s-9.6-6.4-9.6-12.8v-102.4c0-6.4 3.2-9.6 6.4-12.8 3.2-3.2 6.4-6.4 12.8-6.4h60.8v-198.4h-60.8c-6.4 0-9.6-3.2-12.8-6.4s-6.4-9.6-6.4-19.2v-102.4c0-6.4 3.2-9.6 6.4-12.8 3.2-3.2 6.4-6.4 12.8-6.4h281.6c6.4 0 9.6 3.2 12.8 6.4 3.2 3.2 6.4 16 6.4 19.2zM592 643.2V745.6c0 6.4-3.2 9.6-6.4 12.8-3.2 3.2-6.4 6.4-12.8 6.4h-118.4c-6.4 0-9.6-3.2-12.8-6.4-3.2-3.2-6.4-6.4-6.4-12.8v-102.4c0-6.4 3.2-9.6 6.4-12.8 3.2-3.2 6.4-6.4 12.8-6.4h118.4c6.4 0 9.6 3.2 12.8 6.4 3.2 3.2 6.4 9.6 6.4 12.8zM992 384c0-86.4-22.4-169.6-64-243.2s-102.4-134.4-176-176c-73.6-41.6-153.6-64-243.2-64s-169.6 22.4-243.2 64-134.4 102.4-176 176S32 297.6 32 384s22.4 169.6 64 243.2S195.2 758.4 268.8 800s153.6 64 243.2 64 169.6-22.4 243.2-64 134.4-102.4 176-176c38.4-70.4 60.8-153.6 60.8-240z" horiz-adv-x="1024" />
|
|
86
86
|
|
|
87
|
-
<glyph glyph-name="-
|
|
87
|
+
<glyph glyph-name="use-help" unicode="" d="M512 864c262.4 0 480-217.6 480-480s-217.6-480-480-480S32 121.6 32 384 249.6 864 512 864z m32-649.6h-64c-9.6 0-16-6.4-16-16v-67.2c0-9.6 6.4-16 16-16h64c9.6 0 16 6.4 16 16v67.2c0 6.4-6.4 16-16 16zM512 652.8c-44.8 0-83.2-16-115.2-38.4-28.8-25.6-48-64-51.2-108.8 0-6.4 0-9.6 3.2-12.8s9.6-6.4 12.8-6.4h64c9.6 0 16 6.4 16 16 9.6 51.2 28.8 73.6 73.6 73.6 22.4 0 38.4-6.4 51.2-19.2s19.2-28.8 19.2-48c0-9.6-3.2-22.4-6.4-25.6s-12.8-19.2-41.6-41.6c-25.6-22.4-44.8-44.8-54.4-64-9.6-22.4-16-51.2-16-92.8 0-9.6 6.4-16 16-16h57.6c9.6 0 16 6.4 16 16 0 32 3.2 51.2 6.4 57.6s16 22.4 44.8 44.8c25.6 25.6 48 44.8 57.6 64 9.6 22.4 16 41.6 16 67.2 3.2 28.8-16 70.4-44.8 96-35.2 25.6-73.6 38.4-124.8 38.4z" horiz-adv-x="1024" />
|
|
88
88
|
|
|
89
|
-
<glyph glyph-name="
|
|
89
|
+
<glyph glyph-name="left" unicode="" d="M412.8 380.8L774.4 742.4c22.4 19.2 22.4 54.4 0 76.8s-57.6 22.4-76.8 0L291.2 419.2c-22.4-22.4-22.4-57.6 0-76.8l406.4-403.2c22.4-22.4 57.6-22.4 76.8 0s22.4 57.6 0 76.8L412.8 380.8z" horiz-adv-x="1024" />
|
|
90
90
|
|
|
91
|
-
<glyph glyph-name="-
|
|
91
|
+
<glyph glyph-name="list-ul" unicode="" d="M121.6 768C73.6 768 32 726.4 32 678.4s41.6-89.6 89.6-89.6 89.6 41.6 89.6 89.6S172.8 768 121.6 768z m0-300.8c-48 0-89.6-38.4-89.6-89.6S73.6 288 121.6 288s89.6 41.6 89.6 89.6-38.4 89.6-89.6 89.6z m0-300.8C73.6 166.4 32 128 32 76.8s41.6-89.6 89.6-89.6 89.6 41.6 89.6 89.6-38.4 89.6-89.6 89.6z m841.6-28.8H361.6c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h601.6c16 0 28.8 12.8 28.8 28.8v60.8c0 16-12.8 28.8-28.8 28.8z m0 601.6H361.6c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h601.6c16 0 28.8 12.8 28.8 28.8V707.2c0 16-12.8 32-28.8 32z m0-300.8H361.6c-16 0-28.8-12.8-28.8-28.8v-60.8c0-16 12.8-28.8 28.8-28.8h601.6c16 0 28.8 12.8 28.8 28.8v60.8c0 16-12.8 28.8-28.8 28.8z" horiz-adv-x="1024" />
|
|
92
92
|
|
|
93
|
-
<glyph glyph-name="-
|
|
93
|
+
<glyph glyph-name="plus-square" unicode="" d="M809.6 345.6v76.8c0 9.6-3.2 19.2-9.6 25.6s-16 9.6-25.6 9.6h-185.6V646.4c0 9.6-3.2 19.2-9.6 25.6-6.4 6.4-16 9.6-25.6 9.6h-76.8c-9.6 0-19.2-3.2-25.6-9.6-6.4-6.4-12.8-16-12.8-25.6v-185.6H249.6c-9.6 0-19.2-3.2-25.6-9.6s-9.6-16-9.6-25.6v-76.8c0-9.6 3.2-19.2 9.6-25.6s16-9.6 25.6-9.6h185.6v-188.8c0-9.6 3.2-19.2 9.6-25.6 6.4-6.4 16-9.6 25.6-9.6h76.8c9.6 0 19.2 3.2 25.6 9.6 6.4 6.4 9.6 16 9.6 25.6v185.6h188.8c9.6 0 19.2 3.2 25.6 9.6 9.6 6.4 12.8 12.8 12.8 25.6z m150.4 320v-560c0-44.8-16-86.4-48-118.4S838.4-64 793.6-64H230.4c-44.8 0-86.4 16-118.4 48S64 54.4 64 99.2V665.6c0 44.8 16 86.4 48 118.4S185.6 832 230.4 832h560c44.8 0 86.4-16 118.4-48S960 710.4 960 665.6z" horiz-adv-x="1024" />
|
|
94
94
|
|
|
95
|
-
<glyph glyph-name="
|
|
95
|
+
<glyph glyph-name="shrink" unicode="" d="M432 860.8C211.2 860.8 32 681.6 32 460.8s179.2-400 400-400c99.2 0 188.8 35.2 256 92.8l217.6-217.6c19.2-19.2 48-19.2 67.2 0s19.2 48 0 67.2L755.2 224c48 67.2 76.8 147.2 76.8 236.8 0 220.8-179.2 400-400 400z m0-99.2c166.4 0 300.8-134.4 300.8-300.8S598.4 160 432 160s-300.8 134.4-300.8 300.8 134.4 300.8 300.8 300.8z m-131.2-252.8c-25.6 0-48-22.4-48-48s22.4-48 48-48h256c25.6 0 48 22.4 48 48s-22.4 48-48 48h-256z" horiz-adv-x="1024" />
|
|
96
96
|
|
|
97
|
-
<glyph glyph-name="
|
|
97
|
+
<glyph glyph-name="delete" unicode="" d="M643.2 832c25.6 0 48-19.2 51.2-44.8l9.6-80h214.4c22.4 0 38.4-16 38.4-35.2s-16-35.2-38.4-35.2h-76.8v-598.4c0-25.6-9.6-51.2-32-70.4s-38.4-32-67.2-32H281.6c-28.8 0-54.4 12.8-73.6 28.8-19.2 19.2-32 44.8-32 70.4V633.6H102.4C80 633.6 64 649.6 64 668.8S80 704 102.4 704h211.2v3.2l9.6 80c6.4 25.6 28.8 44.8 54.4 44.8h265.6z m-32-336c-22.4 0-41.6-19.2-41.6-41.6v-307.2c0-22.4 19.2-41.6 41.6-41.6s41.6 19.2 41.6 41.6v307.2c0 22.4-19.2 41.6-41.6 41.6z m-198.4 0c-22.4 0-41.6-19.2-41.6-41.6v-307.2c0-22.4 19.2-41.6 41.6-41.6s41.6 19.2 41.6 41.6v307.2c0 22.4-16 41.6-41.6 41.6z" horiz-adv-x="1024" />
|
|
98
98
|
|
|
99
|
-
<glyph glyph-name="
|
|
99
|
+
<glyph glyph-name="user" unicode="" d="M947.2 64c0-48-12.8-89.6-44.8-118.4-32-28.8-70.4-41.6-121.6-41.6H233.6c-48 0-89.6 12.8-121.6 41.6C76.8-25.6 64 16 64 64c0 22.4 0 41.6 3.2 64 0 22.4 3.2 44.8 6.4 67.2 6.4 28.8 9.6 48 16 70.4s12.8 41.6 28.8 60.8c12.8 16 25.6 35.2 38.4 48 12.8 12.8 32 25.6 51.2 35.2 25.6 6.4 48 12.8 73.6 12.8 3.2 0 12.8-3.2 28.8-12.8 12.8-9.6 28.8-16 44.8-32 16-9.6 38.4-22.4 67.2-32 28.8-9.6 57.6-12.8 83.2-12.8 28.8 0 57.6 3.2 83.2 12.8 28.8 9.6 48 16 67.2 32 16 9.6 32 22.4 44.8 32s22.4 12.8 28.8 12.8c25.6 0 48-3.2 70.4-12.8 22.4-6.4 38.4-22.4 51.2-35.2 12.8-12.8 28.8-32 38.4-48 9.6-16 22.4-38.4 28.8-60.8 6.4-22.4 9.6-41.6 16-67.2 3.2-25.6 6.4-44.8 6.4-67.2 6.4-19.2 6.4-44.8 6.4-67.2zM748.8 627.2c0-67.2-25.6-121.6-70.4-169.6-44.8-44.8-105.6-70.4-169.6-70.4s-121.6 25.6-169.6 70.4-70.4 105.6-70.4 169.6c0 67.2 25.6 121.6 70.4 169.6S444.8 864 508.8 864c67.2 0 121.6-25.6 169.6-70.4 44.8-44.8 70.4-102.4 70.4-166.4z" horiz-adv-x="1024" />
|
|
100
100
|
|
|
101
|
-
<glyph glyph-name="
|
|
101
|
+
<glyph glyph-name="right" unicode="" d="M640 380.8L278.4 742.4c-22.4 19.2-22.4 54.4 0 76.8s57.6 22.4 76.8 0l406.4-400c22.4-22.4 22.4-57.6 0-76.8L355.2-60.8c-22.4-22.4-57.6-22.4-76.8 0s-22.4 57.6 0 76.8L640 380.8z" horiz-adv-x="1024" />
|
|
102
102
|
|
|
103
|
-
<glyph glyph-name="
|
|
103
|
+
<glyph glyph-name="eye" unicode="" d="M950.4 380.8c-57.6 89.6-131.2 156.8-217.6 201.6 22.4-38.4 35.2-83.2 35.2-128 0-70.4-25.6-131.2-73.6-182.4s-108.8-73.6-182.4-73.6c-70.4 0-131.2 25.6-182.4 73.6S256 380.8 256 451.2c0 44.8 12.8 89.6 35.2 128-86.4-44.8-160-112-217.6-201.6 51.2-76.8 115.2-140.8 192-185.6s160-70.4 249.6-70.4 172.8 22.4 249.6 70.4 134.4 108.8 185.6 188.8zM540.8 598.4c0 6.4-3.2 12.8-6.4 19.2-3.2 6.4-16 9.6-22.4 9.6-48 0-89.6-16-121.6-51.2s-51.2-73.6-51.2-121.6c0-6.4 3.2-12.8 6.4-19.2 6.4-6.4 12.8-6.4 19.2-6.4 6.4 0 12.8 3.2 19.2 6.4 6.4 6.4 6.4 12.8 6.4 19.2 0 32 12.8 60.8 35.2 83.2s51.2 35.2 83.2 35.2c6.4 0 12.8 3.2 19.2 6.4 9.6 6.4 12.8 12.8 12.8 19.2zM1024 380.8c0-12.8-3.2-25.6-12.8-38.4-54.4-86.4-124.8-156.8-214.4-211.2-89.6-51.2-185.6-80-284.8-80s-195.2 25.6-284.8 80C137.6 185.6 64 252.8 12.8 342.4c-9.6 9.6-12.8 25.6-12.8 38.4 0 12.8 3.2 25.6 12.8 38.4C64 505.6 137.6 576 227.2 630.4s185.6 80 284.8 80 195.2-25.6 284.8-80 163.2-121.6 214.4-211.2c9.6-12.8 12.8-25.6 12.8-38.4z" horiz-adv-x="1024" />
|
|
104
104
|
|
|
105
|
-
<glyph glyph-name="
|
|
105
|
+
<glyph glyph-name="rename" unicode="" d="M796.8 873.6L928 742.4c32-32 32-83.2 0-112L336 32 70.4 12.8l16 262.4L681.6 873.6c28.8 28.8 86.4 28.8 115.2 0zM592 646.4L182.4 233.6 176 118.4l118.4 9.6L704 537.6 592 646.4z m147.2 147.2l-80-80L768 604.8l80 80-108.8 108.8zM976-128H48c-25.6 0-48 22.4-48 48s22.4 48 48 48h928c25.6 0 48-22.4 48-48s-22.4-48-48-48z" horiz-adv-x="1024" />
|
|
106
106
|
|
|
107
|
-
<glyph glyph-name="-
|
|
107
|
+
<glyph glyph-name="times-circle" unicode="" d="M512 864C246.4 864 32 649.6 32 384s214.4-480 480-480 480 214.4 480 480S777.6 864 512 864z m236.8-608c9.6-9.6 9.6-25.6 0-35.2L672 144c-9.6-9.6-25.6-9.6-35.2 0L512 275.2l-128-128c-9.6-9.6-25.6-9.6-35.2 0L272 224c-9.6 9.6-9.6 25.6 0 35.2l128 128-128 128c-9.6 9.6-9.6 25.6 0 35.2L352 624c9.6 9.6 25.6 9.6 35.2 0l128-128 128 128c9.6 9.6 25.6 9.6 35.2 0l76.8-76.8c9.6-9.6 9.6-25.6 0-35.2l-134.4-128 128-128z" horiz-adv-x="1024" />
|
|
108
108
|
|
|
109
|
-
<glyph glyph-name="
|
|
109
|
+
<glyph glyph-name="bold" unicode="" d="M745.6 416c28.8 35.2 44.8 76.8 51.2 121.6 12.8 140.8-96 262.4-236.8 262.4H188.8c-16 0-28.8-12.8-28.8-28.8v-89.6c0-16 12.8-28.8 28.8-28.8h57.6v-534.4H188.8c-16 0-28.8-12.8-28.8-28.8V0c0-19.2 12.8-32 28.8-32H576c131.2 0 249.6 96 262.4 227.2 9.6 89.6-28.8 169.6-92.8 220.8zM396.8 652.8h163.2c48 0 89.6-38.4 89.6-89.6s-38.4-89.6-89.6-89.6h-163.2V652.8z m163.2-537.6h-163.2v208h163.2c57.6 0 102.4-48 102.4-105.6s-44.8-102.4-102.4-102.4z" horiz-adv-x="1024" />
|
|
110
110
|
|
|
111
|
-
<glyph glyph-name="-
|
|
111
|
+
<glyph glyph-name="exclamation-circle" unicode="" d="M512 864c86.4 0 169.6-22.4 243.2-64s134.4-102.4 176-176c41.6-73.6 64-153.6 64-243.2s-22.4-169.6-64-243.2-102.4-134.4-176-176c-73.6-41.6-153.6-64-243.2-64s-169.6 22.4-243.2 64-134.4 102.4-176 176S32 297.6 32 384s22.4 169.6 64 243.2S195.2 758.4 268.8 800s156.8 64 243.2 64z m80-780.8v118.4c0 6.4-3.2 9.6-6.4 12.8-3.2 3.2-6.4 6.4-12.8 6.4h-118.4c-6.4 0-9.6-3.2-12.8-6.4-3.2-3.2-6.4-9.6-6.4-12.8v-118.4c0-6.4 3.2-9.6 6.4-12.8 3.2-3.2 9.6-6.4 12.8-6.4h118.4c6.4 0 9.6 3.2 12.8 6.4 3.2 3.2 6.4 9.6 6.4 12.8z m-3.2 217.6l9.6 390.4c0 3.2-3.2 6.4-6.4 9.6-3.2 3.2-9.6 3.2-12.8 3.2h-137.6c-6.4 0-9.6 0-12.8-3.2-3.2-3.2-6.4-6.4-6.4-9.6l9.6-390.4c0-3.2 3.2-6.4 6.4-9.6 3.2-3.2 9.6-3.2 12.8-3.2h115.2c6.4 0 9.6 0 12.8 3.2 9.6 3.2 9.6 6.4 9.6 9.6z" horiz-adv-x="1024" />
|
|
112
112
|
|
|
113
|
-
<glyph glyph-name="
|
|
113
|
+
<glyph glyph-name="unlink" unicode="" d="M940.066 812.066c-111.913 111.912-294.17 111.912-406.083 0l-127.9-127.9 67.147-67.148 127.9 127.9c70.345 70.345 191.85 79.938 271.788 0s70.345-201.443 0-271.788l-127.9-127.9 67.147-67.147 127.9 127.9c111.913 108.715 111.913 290.973 0 406.083zM425.268 25.48c-70.345-70.345-191.85-79.937-271.788 0s-70.345 201.443 0 271.788l127.9 127.9-67.147 67.147-127.9-127.9c-111.913-111.912-111.913-294.17 0-406.082s294.17-111.913 406.082 0l127.9 127.9-67.147 67.147-127.9-127.9zM175.863 786.486c-3.198 3.197-9.593 3.197-15.988 0l-51.16-51.16c-3.197-3.198-3.197-9.593 0-15.988l738.623-738.623c3.198-3.197 9.593-3.197 15.988 0l51.16 51.16c3.197 3.198 3.197 9.593 0 15.988L175.863 786.486z" horiz-adv-x="1024" />
|
|
114
114
|
|
|
115
|
-
<glyph glyph-name="-
|
|
115
|
+
<glyph glyph-name="code-block" unicode="" d="M368 832v-112c-32 0-54.4-3.2-60.8-6.4-12.8 0-19.2-6.4-22.4-16s-9.6-19.2-9.6-41.6v-12.8c0-22.4 0-54.4-3.2-99.2 0-32-3.2-57.6-9.6-76.8-3.2-16-16-35.2-22.4-44.8-16-16-28.8-25.6-44.8-38.4 19.2-12.8 32-22.4 44.8-38.4 9.6-16 19.2-32 25.6-51.2 6.4-19.2 9.6-44.8 9.6-80 3.2-54.4 3.2-83.2 3.2-99.2 0-19.2 3.2-35.2 6.4-41.6 3.2-6.4 9.6-16 22.4-19.2 9.6-3.2 28.8-6.4 60.8-6.4V-64h-19.2c-41.6 0-70.4 3.2-92.8 12.8s-38.4 19.2-51.2 32-25.6 35.2-28.8 57.6c-3.2 22.4-6.4 57.6-6.4 108.8 0 57.6-3.2 96-6.4 112-9.6 22.4-22.4 41.6-35.2 54.4-9.6 12.8-32 16-57.6 19.2v112c22.4 0 35.2 3.2 48 12.8 9.6 6.4 22.4 16 28.8 25.6 6.4 16 16 32 16 51.2C160 544 160 572.8 160 604.8c0 60.8 3.2 102.4 6.4 124.8 6.4 22.4 19.2 41.6 28.8 57.6 16 16 35.2 25.6 60.8 35.2 19.2 9.6 44.8 9.6 76.8 9.6h35.2z m323.2 0c32 0 57.6 0 76.8-6.4 25.6-6.4 48-19.2 60.8-35.2 9.6-16 22.4-35.2 28.8-57.6 3.2-22.4 6.4-64 6.4-124.8 0-35.2 0-60.8 3.2-76.8 0-19.2 6.4-35.2 16-51.2 6.4-12.8 19.2-19.2 28.8-25.6 9.6-6.4 25.6-12.8 48-12.8v-112c-25.6-3.2-48-6.4-57.6-19.2-16-12.8-25.6-32-35.2-54.4-3.2-16-6.4-54.4-6.4-112 0-51.2-3.2-83.2-6.4-108.8-3.2-22.4-16-41.6-28.8-57.6-16-16-32-25.6-54.4-35.2s-57.6-6.4-96-6.4h-22.4v112c32 0 51.2 3.2 60.8 6.4 9.6 3.2 19.2 12.8 22.4 19.2 3.2 6.4 6.4 22.4 6.4 41.6 0 16 0 44.8 3.2 99.2 0 35.2 3.2 60.8 9.6 80 6.4 19.2 16 35.2 25.6 51.2 9.6 16 25.6 25.6 44.8 38.4-16 12.8-28.8 22.4-44.8 38.4-6.4 12.8-19.2 32-22.4 44.8-6.4 19.2-9.6 44.8-9.6 76.8-3.2 44.8-3.2 76.8-3.2 99.2v12.8c0 22.4-3.2 35.2-6.4 41.6s-9.6 16-22.4 16c-6.4 3.2-28.8 6.4-60.8 6.4V832h35.2z" horiz-adv-x="1024" />
|
|
116
116
|
|
|
117
|
-
<glyph glyph-name="
|
|
117
|
+
<glyph glyph-name="fullscreen" unicode="" d="M400 800c19.2 0 38.4-16 38.4-38.4s-16-38.4-38.4-38.4H172.8v-227.2c0-19.2-16-38.4-38.4-38.4S96 476.8 96 496V761.6C96 784 112 800 134.4 800h265.6z m0-755.2c19.2 0 38.4-16 38.4-38.4s-19.2-38.4-38.4-38.4H134.4h-3.2H128c-6.4 0-12.8 6.4-19.2 9.6-6.4 6.4-9.6 12.8-9.6 19.2L96 0v268.8c0 19.2 16 38.4 38.4 38.4s38.4-16 38.4-38.4V96l188.8 188.8c16 16 38.4 16 54.4 0s16-38.4 0-54.4l-188.8-188.8 172.8 3.2zM928 764.8c0-3.2 0-3.2 0 0v-265.6c0-19.2-16-38.4-38.4-38.4s-38.4 16-38.4 38.4V672l-188.8-188.8c-16-16-38.4-16-54.4 0s-16 38.4 0 54.4l192 185.6h-172.8c-19.2 0-38.4 16-38.4 38.4S604.8 800 624 800h275.2c16-3.2 25.6-12.8 28.8-28.8v-6.4z m-38.4-457.6c19.2 0 38.4-16 38.4-38.4v-265.6c0-19.2-16-38.4-38.4-38.4h-265.6c-19.2 0-38.4 16-38.4 38.4s16 38.4 38.4 38.4h227.2v227.2c0 22.4 19.2 38.4 38.4 38.4z" horiz-adv-x="1024" />
|
|
118
|
+
|
|
119
|
+
<glyph glyph-name="table" unicode="" d="M892.8 800H121.6C70.4 800 32 761.6 32 710.4v-652.8C32 6.4 70.4-32 121.6-32h771.2c48 0 89.6 38.4 89.6 89.6V710.4c0 51.2-38.4 89.6-89.6 89.6zM448 86.4H150.4v179.2H448v-179.2z m0 297.6H150.4v179.2H448V384z m416-297.6h-297.6v179.2H864v-179.2z m0 297.6h-297.6v179.2H864V384z" horiz-adv-x="1024" />
|
|
120
|
+
|
|
121
|
+
<glyph glyph-name="users" unicode="" d="M329.6 384c-54.4-3.2-99.2-22.4-131.2-64H131.2c-28.8 0-51.2 6.4-70.4 19.2-19.2 12.8-28.8 35.2-28.8 57.6 0 118.4 19.2 179.2 60.8 179.2 3.2 0 9.6-3.2 22.4-9.6 12.8-9.6 28.8-12.8 48-22.4 19.2-9.6 38.4-9.6 57.6-9.6 22.4 0 44.8 3.2 67.2 9.6v-35.2c0-44.8 12.8-86.4 41.6-124.8zM864 64c0-38.4-9.6-73.6-35.2-96-25.6-22.4-54.4-32-99.2-32H291.2c-38.4 0-73.6 9.6-99.2 32-25.6 22.4-35.2 54.4-35.2 96 0 16 0 32 3.2 51.2 0 16 3.2 32 6.4 54.4s9.6 35.2 12.8 54.4c6.4 16 9.6 32 22.4 48 9.6 12.8 19.2 28.8 32 38.4 9.6 9.6 25.6 19.2 41.6 28.8 16 6.4 35.2 9.6 54.4 9.6 3.2 0 9.6-3.2 22.4-9.6 9.6-9.6 22.4-12.8 35.2-25.6 12.8-9.6 32-16 54.4-25.6 22.4-9.6 44.8-9.6 67.2-9.6s44.8 3.2 67.2 9.6 38.4 12.8 54.4 25.6c12.8 9.6 25.6 16 35.2 25.6 9.6 9.6 16 9.6 22.4 9.6 19.2 0 38.4-3.2 54.4-9.6 16-6.4 32-16 41.6-28.8 9.6-9.6 22.4-25.6 32-38.4 9.6-16 16-32 22.4-48 6.4-16 9.6-32 12.8-54.4 3.2-19.2 6.4-35.2 6.4-54.4 6.4-12.8 6.4-32 6.4-51.2zM352 704c0-35.2-9.6-64-35.2-89.6C288 588.8 259.2 576 224 576s-67.2 12.8-92.8 38.4C108.8 640 96 668.8 96 704s9.6 64 35.2 89.6S188.8 832 224 832s64-9.6 89.6-35.2S352 739.2 352 704z m352-192c0-54.4-19.2-99.2-54.4-134.4s-83.2-54.4-134.4-54.4c-54.4 0-99.2 19.2-134.4 54.4s-54.4 83.2-54.4 134.4c0 54.4 19.2 99.2 54.4 134.4S464 704 512 704c54.4 0 99.2-19.2 134.4-54.4C684.8 611.2 704 566.4 704 512z m288-112c0-25.6-9.6-44.8-28.8-57.6-19.2-12.8-41.6-19.2-70.4-19.2h-67.2c-32 41.6-76.8 60.8-131.2 64 28.8 38.4 38.4 80 38.4 128 0 9.6 0 19.2-3.2 32 22.4-9.6 44.8-9.6 67.2-9.6 19.2 0 38.4 3.2 57.6 9.6 19.2 9.6 35.2 12.8 48 22.4 9.6 6.4 19.2 9.6 22.4 9.6 44.8-3.2 67.2-60.8 67.2-179.2zM928 704c0-35.2-9.6-64-35.2-89.6-25.6-25.6-54.4-35.2-89.6-35.2s-64 9.6-89.6 35.2c-25.6 25.6-38.4 54.4-38.4 89.6s9.6 64 35.2 89.6c25.6 25.6 57.6 35.2 92.8 35.2s64-9.6 89.6-35.2C915.2 768 928 739.2 928 704z" horiz-adv-x="1024" />
|
|
118
122
|
|
|
119
123
|
</font>
|
|
120
124
|
</defs>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -16,207 +16,215 @@
|
|
|
16
16
|
-moz-osx-font-smoothing: grayscale;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
.icon-
|
|
20
|
-
content: "\
|
|
19
|
+
.icon-edit:before {
|
|
20
|
+
content: "\e64b";
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.
|
|
24
|
-
content: "\
|
|
23
|
+
.icon-exclamation-triangle:before {
|
|
24
|
+
content: "\e64c";
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.
|
|
28
|
-
content: "\
|
|
27
|
+
.icon-angle-double-left:before {
|
|
28
|
+
content: "\e64d";
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.
|
|
32
|
-
content: "\
|
|
31
|
+
.icon-eye-slash:before {
|
|
32
|
+
content: "\e64e";
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
.
|
|
36
|
-
content: "\
|
|
35
|
+
.icon-comment:before {
|
|
36
|
+
content: "\e64f";
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
.icon-
|
|
40
|
-
content: "\
|
|
39
|
+
.icon-caret-up:before {
|
|
40
|
+
content: "\e650";
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.icon-
|
|
44
|
-
content: "\
|
|
43
|
+
.icon-delete-table:before {
|
|
44
|
+
content: "\e651";
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.icon-
|
|
48
|
-
content: "\
|
|
47
|
+
.icon-check-circle:before {
|
|
48
|
+
content: "\e652";
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
.icon-
|
|
52
|
-
content: "\
|
|
51
|
+
.icon-ellipsis-v:before {
|
|
52
|
+
content: "\e653";
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.icon-
|
|
56
|
-
content: "\
|
|
55
|
+
.icon-drop-down:before {
|
|
56
|
+
content: "\e654";
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.icon-
|
|
60
|
-
content: "\
|
|
59
|
+
.icon-link:before {
|
|
60
|
+
content: "\e655";
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
.icon-
|
|
64
|
-
content: "\
|
|
63
|
+
.icon-center-horizontally:before {
|
|
64
|
+
content: "\e656";
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
.icon-
|
|
68
|
-
content: "\
|
|
67
|
+
.icon-close:before {
|
|
68
|
+
content: "\e657";
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
.icon-
|
|
72
|
-
content: "\
|
|
71
|
+
.icon-enlarge:before {
|
|
72
|
+
content: "\e658";
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.icon-
|
|
76
|
-
content: "\
|
|
75
|
+
.icon-bell:before {
|
|
76
|
+
content: "\e659";
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
.icon-
|
|
80
|
-
content: "\
|
|
79
|
+
.icon-magic:before {
|
|
80
|
+
content: "\e65a";
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
.icon-
|
|
84
|
-
content: "\
|
|
83
|
+
.icon-star2:before {
|
|
84
|
+
content: "\e65b";
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
.icon-
|
|
88
|
-
content: "\
|
|
87
|
+
.icon-quote-left:before {
|
|
88
|
+
content: "\e65c";
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.icon-
|
|
92
|
-
content: "\
|
|
91
|
+
.icon-angle-double-right:before {
|
|
92
|
+
content: "\e65d";
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
.icon-
|
|
96
|
-
content: "\
|
|
95
|
+
.icon-code:before {
|
|
96
|
+
content: "\e65e";
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
.icon-
|
|
100
|
-
content: "\
|
|
99
|
+
.icon-pencil:before {
|
|
100
|
+
content: "\e65f";
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.icon-
|
|
104
|
-
content: "\
|
|
103
|
+
.icon-clear-format:before {
|
|
104
|
+
content: "\e660";
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
.icon-
|
|
108
|
-
content: "\
|
|
107
|
+
.icon-check-square:before {
|
|
108
|
+
content: "\e661";
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.icon-
|
|
112
|
-
content: "\
|
|
111
|
+
.icon-formula:before {
|
|
112
|
+
content: "\e662";
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
.icon-
|
|
116
|
-
content: "\
|
|
115
|
+
.icon-row:before {
|
|
116
|
+
content: "\e663";
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.icon-plus-circle:before {
|
|
120
|
+
content: "\e664";
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.icon-align-right:before {
|
|
124
|
+
content: "\e665";
|
|
117
125
|
}
|
|
118
126
|
|
|
119
127
|
.icon-star1:before {
|
|
120
|
-
content: "\
|
|
128
|
+
content: "\e666";
|
|
121
129
|
}
|
|
122
130
|
|
|
123
|
-
.icon-
|
|
124
|
-
content: "\
|
|
131
|
+
.icon-italic:before {
|
|
132
|
+
content: "\e667";
|
|
125
133
|
}
|
|
126
134
|
|
|
127
|
-
.icon-
|
|
128
|
-
content: "\
|
|
135
|
+
.icon-list-ol:before {
|
|
136
|
+
content: "\e668";
|
|
129
137
|
}
|
|
130
138
|
|
|
131
|
-
.icon-
|
|
132
|
-
content: "\
|
|
139
|
+
.icon-file:before {
|
|
140
|
+
content: "\e669";
|
|
133
141
|
}
|
|
134
142
|
|
|
135
|
-
.icon-
|
|
136
|
-
content: "\
|
|
143
|
+
.icon-left-alignment:before {
|
|
144
|
+
content: "\e66a";
|
|
137
145
|
}
|
|
138
146
|
|
|
139
|
-
.icon-
|
|
140
|
-
content: "\
|
|
147
|
+
.icon-image:before {
|
|
148
|
+
content: "\e66b";
|
|
141
149
|
}
|
|
142
150
|
|
|
143
|
-
.icon-
|
|
144
|
-
content: "\
|
|
151
|
+
.icon-column:before {
|
|
152
|
+
content: "\e66c";
|
|
145
153
|
}
|
|
146
154
|
|
|
147
|
-
.icon-
|
|
148
|
-
content: "\
|
|
155
|
+
.icon-info-circle:before {
|
|
156
|
+
content: "\e66d";
|
|
149
157
|
}
|
|
150
158
|
|
|
151
|
-
.icon-
|
|
152
|
-
content: "\
|
|
159
|
+
.icon-use-help:before {
|
|
160
|
+
content: "\e66e";
|
|
153
161
|
}
|
|
154
162
|
|
|
155
|
-
.icon-
|
|
156
|
-
content: "\
|
|
163
|
+
.icon-left:before {
|
|
164
|
+
content: "\e66f";
|
|
157
165
|
}
|
|
158
166
|
|
|
159
|
-
.icon-
|
|
160
|
-
content: "\
|
|
167
|
+
.icon-list-ul:before {
|
|
168
|
+
content: "\e670";
|
|
161
169
|
}
|
|
162
170
|
|
|
163
|
-
.icon-
|
|
164
|
-
content: "\
|
|
171
|
+
.icon-plus-square:before {
|
|
172
|
+
content: "\e671";
|
|
165
173
|
}
|
|
166
174
|
|
|
167
|
-
.icon-
|
|
168
|
-
content: "\
|
|
175
|
+
.icon-shrink:before {
|
|
176
|
+
content: "\e672";
|
|
169
177
|
}
|
|
170
178
|
|
|
171
|
-
.icon-
|
|
172
|
-
content: "\
|
|
179
|
+
.icon-delete:before {
|
|
180
|
+
content: "\e673";
|
|
173
181
|
}
|
|
174
182
|
|
|
175
|
-
.icon-
|
|
176
|
-
content: "\
|
|
183
|
+
.icon-user:before {
|
|
184
|
+
content: "\e674";
|
|
177
185
|
}
|
|
178
186
|
|
|
179
|
-
.icon-
|
|
180
|
-
content: "\
|
|
187
|
+
.icon-right:before {
|
|
188
|
+
content: "\e675";
|
|
181
189
|
}
|
|
182
190
|
|
|
183
|
-
.icon-
|
|
184
|
-
content: "\
|
|
191
|
+
.icon-eye:before {
|
|
192
|
+
content: "\e676";
|
|
185
193
|
}
|
|
186
194
|
|
|
187
|
-
.icon-
|
|
188
|
-
content: "\
|
|
195
|
+
.icon-rename:before {
|
|
196
|
+
content: "\e677";
|
|
189
197
|
}
|
|
190
198
|
|
|
191
|
-
.icon-
|
|
192
|
-
content: "\
|
|
199
|
+
.icon-times-circle:before {
|
|
200
|
+
content: "\e678";
|
|
193
201
|
}
|
|
194
202
|
|
|
195
|
-
.icon-
|
|
196
|
-
content: "\
|
|
203
|
+
.icon-bold:before {
|
|
204
|
+
content: "\e679";
|
|
197
205
|
}
|
|
198
206
|
|
|
199
|
-
.icon-
|
|
200
|
-
content: "\
|
|
207
|
+
.icon-exclamation-circle:before {
|
|
208
|
+
content: "\e67a";
|
|
201
209
|
}
|
|
202
210
|
|
|
203
|
-
.icon-
|
|
204
|
-
content: "\
|
|
211
|
+
.icon-unlink:before {
|
|
212
|
+
content: "\e67b";
|
|
205
213
|
}
|
|
206
214
|
|
|
207
|
-
.icon-
|
|
208
|
-
content: "\
|
|
215
|
+
.icon-code-block:before {
|
|
216
|
+
content: "\e67c";
|
|
209
217
|
}
|
|
210
218
|
|
|
211
|
-
.icon-
|
|
212
|
-
content: "\
|
|
219
|
+
.icon-fullscreen:before {
|
|
220
|
+
content: "\e67d";
|
|
213
221
|
}
|
|
214
222
|
|
|
215
|
-
.icon-
|
|
216
|
-
content: "\
|
|
223
|
+
.icon-table:before {
|
|
224
|
+
content: "\e67e";
|
|
217
225
|
}
|
|
218
226
|
|
|
219
|
-
.icon-
|
|
220
|
-
content: "\
|
|
227
|
+
.icon-users:before {
|
|
228
|
+
content: "\e67f";
|
|
221
229
|
}
|
|
222
230
|
|