1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 15:38:15 +00:00

12.0 fix icon style (#6115)

* 01 update font

* 02 change icon color

* 03 change icon
This commit is contained in:
Michael An
2024-05-25 15:09:24 +08:00
committed by GitHub
parent 317320d3e9
commit 7f2ce4c8a8
14 changed files with 37 additions and 51 deletions

View File

@@ -637,7 +637,7 @@ class DirentListItem extends React.Component {
<a href="#" className="op-icon sf2-icon-download" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a> <a href="#" className="op-icon sf2-icon-download" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a>
)} )}
{showShareBtn && ( {showShareBtn && (
<a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a> <a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>
)} )}
{(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && ( {(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && (
<a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a> <a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a>
@@ -660,7 +660,7 @@ class DirentListItem extends React.Component {
<a href="#" className="op-icon sf2-icon-download" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a> <a href="#" className="op-icon sf2-icon-download" title={gettext('Download')} role="button" aria-label={gettext('Download')} onClick={this.onItemDownload}></a>
)} )}
{showShareBtn && ( {showShareBtn && (
<a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a> <a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>
)} )}
{(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && ( {(dirent.permission === 'rw' || dirent.permission === 'cloud-edit' || (isCustomPermission && canDelete)) && (
<a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a> <a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDelete}></a>

View File

@@ -497,9 +497,9 @@ class SharedRepoListItem extends React.Component {
} else { } else {
operations = this.generatorOperations(); operations = this.generatorOperations();
} }
const shareOperation = <a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>; const shareOperation = <a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onItemShare}></a>;
const unshareOperation = <a href="#" className="op-icon sf2-icon-x3" title={gettext('Unshare')} role="button" aria-label={gettext('Unshare')} onClick={this.onItemUnshare}></a>; const unshareOperation = <a href="#" className="op-icon sf2-icon-x3" title={gettext('Unshare')} role="button" aria-label={gettext('Unshare')} onClick={this.onItemUnshare}></a>;
const deleteOperation = <a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDeleteToggle}></a>; const deleteOperation = <a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onItemDeleteToggle}></a>;
if (this.isDeparementOnwerGroupMember) { if (this.isDeparementOnwerGroupMember) {
const advancedOperations = this.getAdvancedOperations(); const advancedOperations = this.getAdvancedOperations();

View File

@@ -287,18 +287,26 @@ img[src=""],img:not([src]){ /* for first loading img*/
word-break: keep-all; word-break: keep-all;
max-width: 80%; max-width: 80%;
} }
.path-container a, .path-container span { .path-container a, .path-container span {
max-height: 50px; max-height: 50px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
.path-container span, .path-container a { .path-container span, .path-container a {
flex-shrink: 1; flex-shrink: 1;
} }
.path-container span:first-child, .path-container span:last-child { .path-container span:first-child, .path-container span:last-child {
flex-shrink: 0; flex-shrink: 0;
} }
.path-container span.path-file-name, .path-container span.path-repo-name { .path-container span.path-file-name, .path-container span.path-repo-name {
flex-shrink: 1; flex-shrink: 1;
} }
.path-container .op-btn .sf3-font {
color: #444;
}

View File

@@ -75,6 +75,7 @@
line-height: 2; line-height: 2;
border: 0; border: 0;
border-radius: 2px; border-radius: 2px;
font-weight: normal;
} }
.sf-view-mode-btn:hover { .sf-view-mode-btn:hover {

View File

@@ -351,7 +351,7 @@ class MylibRepoListItem extends React.Component {
<td> <td>
{(repo.repo_name && this.state.isOpIconShow) && ( {(repo.repo_name && this.state.isOpIconShow) && (
<div> <div>
<a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onShareToggle}></a> <a href="#" className="op-icon sf3-font-share sf3-font" title={gettext('Share')} role="button" aria-label={gettext('Share')} onClick={this.onShareToggle}></a>
<a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onDeleteToggle}></a> <a href="#" className="op-icon sf3-font-delete1 sf3-font" title={gettext('Delete')} role="button" aria-label={gettext('Delete')} onClick={this.onDeleteToggle}></a>
<MylibRepoMenu <MylibRepoMenu
isPC={true} isPC={true}

View File

@@ -138,12 +138,12 @@ class HistoryVersion extends React.Component {
> >
<ModalBody className='sdoc-operation-mobile-modal-body'> <ModalBody className='sdoc-operation-mobile-modal-body'>
<div className='option-item'> <div className='option-item'>
<i className='mr-3 sf3-font sf3-font-download'></i> <i className='mr-3 sf3-font sf3-font-download1'></i>
<a href={url} onClick={this.onItemDownLoad}>{gettext('Download')}</a> <a href={url} onClick={this.onItemDownLoad}>{gettext('Download')}</a>
</div> </div>
{(path[0] !== 0 && path[1] !== 0 && path[2] !== 0) && ( {(path[0] !== 0 && path[1] !== 0 && path[2] !== 0) && (
<div className='option-item'> <div className='option-item'>
<i className='mr-3 sf3-font sf3-font-copy'></i> <i className='mr-3 sf3-font sf3-font-copy1'></i>
<span href={url} onClick={this.onItemCopy}>{gettext('Copy')}</span> <span href={url} onClick={this.onItemCopy}>{gettext('Copy')}</span>
</div> </div>
)} )}

View File

@@ -263,7 +263,7 @@ class Item extends Component {
data.icon_title = Utils.getLibIconTitle(data); data.icon_title = Utils.getLibIconTitle(data);
let iconVisibility = this.state.showOpIcon ? '' : ' invisible'; let iconVisibility = this.state.showOpIcon ? '' : ' invisible';
let shareIconClassName = 'op-icon sf2-icon-share repo-share-btn' + iconVisibility; let shareIconClassName = 'op-icon sf3-font-share sf3-font repo-share-btn' + iconVisibility;
let leaveShareIconClassName = 'op-icon sf2-icon-x3' + iconVisibility; let leaveShareIconClassName = 'op-icon sf2-icon-x3' + iconVisibility;
let shareRepoUrl = this.repoURL = `${siteRoot}library/${data.repo_id}/${Utils.encodePath(data.repo_name)}/`; let shareRepoUrl = this.repoURL = `${siteRoot}library/${data.repo_id}/${Utils.encodePath(data.repo_name)}/`;

View File

@@ -192,7 +192,7 @@ a, a:hover { color: #ec8000; }
margin-left: 0.5rem; margin-left: 0.5rem;
vertical-align: middle; vertical-align: middle;
font-style: normal; font-style: normal;
font-size: 0.85rem; font-size: 1rem;
line-height: 1; line-height: 1;
cursor: pointer; cursor: pointer;
color: #999; color: #999;
@@ -360,6 +360,7 @@ a, a:hover { color: #ec8000; }
} }
.op-icon { .op-icon {
font-size: 1rem;
color: #999; color: #999;
} }

View File

@@ -1,11 +1,11 @@
@font-face { @font-face {
font-family: "sf3-font"; /* Project id 1230969 */ font-family: "sf3-font"; /* Project id 1230969 */
src: url('iconfont.eot?t=1715743130302'); /* IE9 */ src: url('iconfont.eot?t=1716614768424'); /* IE9 */
src: url('iconfont.eot?t=1715743130302#iefix') format('embedded-opentype'), /* IE6-IE8 */ src: url('iconfont.eot?t=1716614768424#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff2?t=1715743130302') format('woff2'), url('iconfont.woff2?t=1716614768424') format('woff2'),
url('iconfont.woff?t=1715743130302') format('woff'), url('iconfont.woff?t=1716614768424') format('woff'),
url('iconfont.ttf?t=1715743130302') format('truetype'), url('iconfont.ttf?t=1716614768424') format('truetype'),
url('iconfont.svg?t=1715743130302#sf3-font') format('svg'); url('iconfont.svg?t=1716614768424#sf3-font') format('svg');
} }
.sf3-font { .sf3-font {
@@ -16,6 +16,10 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.sf3-font-share:before {
content: "\e820";
}
.sf3-font-rename:before { .sf3-font-rename:before {
content: "\e65c"; content: "\e65c";
} }
@@ -180,18 +184,10 @@
content: "\e7fa"; content: "\e7fa";
} }
.sf3-font-download:before {
content: "\e7fb";
}
.sf3-font-entry:before { .sf3-font-entry:before {
content: "\e7fc"; content: "\e7fc";
} }
.sf3-font-delete:before {
content: "\e7fd";
}
.sf3-font-files1:before { .sf3-font-files1:before {
content: "\e7fe"; content: "\e7fe";
} }
@@ -204,14 +200,6 @@
content: "\e7f3"; content: "\e7f3";
} }
.sf3-font-copy:before {
content: "\e7f4";
}
.sf3-font-more-level1:before {
content: "\e7f5";
}
.sf3-font-sort1:before { .sf3-font-sort1:before {
content: "\e7f6"; content: "\e7f6";
} }
@@ -248,10 +236,6 @@
content: "\e7d8"; content: "\e7d8";
} }
.sf3-font-more-level:before {
content: "\e7d7";
}
.sf3-font-desktop:before { .sf3-font-desktop:before {
content: "\e720"; content: "\e720";
} }

Binary file not shown.

View File

@@ -14,6 +14,8 @@
/> />
<missing-glyph /> <missing-glyph />
<glyph glyph-name="share" unicode="&#59424;" d="M800 832c-70.4 0-128-54.4-128-128s57.6-128 128-128 128 54.4 128 128-57.6 128-128 128zM224 512c-70.4 0-128-54.4-128-128s57.6-128 128-128 128 54.4 128 128-57.6 128-128 128z m576-320c-70.4 0-128-54.4-128-128s57.6-128 128-128 128 54.4 128 128-60.8 128-128 128z m-425.6 307.2l217.6 134.4 48-83.2-217.6-134.4-48 83.2z m60.8-169.6l220.8-131.2-48-80-220.8 131.2 48 80z" horiz-adv-x="1024" />
<glyph glyph-name="rename" unicode="&#58972;" d="M796.8 873.6L928 742.4c32-32 32-83.2 0-112L336 32l-265.6-19.2 16 262.4L681.6 873.6c28.8 28.8 86.4 28.8 115.2 0z m-204.8-227.2L182.4 233.6l-6.4-115.2 118.4 9.6L704 537.6l-112 108.8z m147.2 147.2l-80-80L768 604.8l80 80-108.8 108.8zM976-128h-928C22.4-128 0-105.6 0-80S22.4-32 48-32h928c25.6 0 48-22.4 48-48s-22.4-48-48-48z" horiz-adv-x="1024" /> <glyph glyph-name="rename" unicode="&#58972;" d="M796.8 873.6L928 742.4c32-32 32-83.2 0-112L336 32l-265.6-19.2 16 262.4L681.6 873.6c28.8 28.8 86.4 28.8 115.2 0z m-204.8-227.2L182.4 233.6l-6.4-115.2 118.4 9.6L704 537.6l-112 108.8z m147.2 147.2l-80-80L768 604.8l80 80-108.8 108.8zM976-128h-928C22.4-128 0-105.6 0-80S22.4-32 48-32h928c25.6 0 48-22.4 48-48s-22.4-48-48-48z" horiz-adv-x="1024" />
<glyph glyph-name="close" unicode="&#58971;" d="M512 454.4L102.4 864 32 793.6 441.6 384 32-25.6l70.4-70.4L512 313.6 921.6-96l70.4 70.4L582.4 384 992 793.6 921.6 864z" horiz-adv-x="1024" /> <glyph glyph-name="close" unicode="&#58971;" d="M512 454.4L102.4 864 32 793.6 441.6 384 32-25.6l70.4-70.4L512 313.6 921.6-96l70.4 70.4L582.4 384 992 793.6 921.6 864z" horiz-adv-x="1024" />
@@ -26,7 +28,7 @@
<glyph glyph-name="grid-view" unicode="&#59411;" d="M428.8 864c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H83.2C54.4 416 32 438.4 32 467.2V812.8C32 841.6 54.4 864 83.2 864h345.6zM384 768H128v-256h256V768zM940.8 864c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H595.2c-28.8 0-51.2 22.4-51.2 51.2V812.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM896 768h-256v-256h256V768zM940.8 352c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H595.2c-28.8 0-51.2 22.4-51.2 51.2V300.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM896 256h-256v-256h256v256zM428.8 352c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H83.2C54.4-96 32-73.6 32-44.8V300.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM384 256H128v-256h256v256z" horiz-adv-x="1024" /> <glyph glyph-name="grid-view" unicode="&#59411;" d="M428.8 864c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H83.2C54.4 416 32 438.4 32 467.2V812.8C32 841.6 54.4 864 83.2 864h345.6zM384 768H128v-256h256V768zM940.8 864c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H595.2c-28.8 0-51.2 22.4-51.2 51.2V812.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM896 768h-256v-256h256V768zM940.8 352c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H595.2c-28.8 0-51.2 22.4-51.2 51.2V300.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM896 256h-256v-256h256v256zM428.8 352c28.8 0 51.2-22.4 51.2-51.2v-348.8c0-28.8-22.4-51.2-51.2-51.2H83.2C54.4-96 32-73.6 32-44.8V300.8c0 28.8 22.4 51.2 51.2 51.2h345.6zM384 256H128v-256h256v256z" horiz-adv-x="1024" />
<glyph glyph-name="download1" unicode="&#59412;" d="M160 192v-160h704v160h96v-192c0-35.2-25.6-60.8-57.6-64H128c-35.2 0-64 28.8-64 64v192h96zM560 832v-521.6l156.8 150.4 80-76.8-278.4-268.8L240 384l80 76.8 144-137.6V832h96z" horiz-adv-x="1024" /> <glyph glyph-name="download1" unicode="&#59412;" d="M160 160v-160h704v160h96v-192c0-35.2-25.6-60.8-57.6-64H128c-35.2 0-64 28.8-64 64v192h96zM560 864v-585.6l156.8 150.4 80-76.8-278.4-268.8L240 352l80 76.8 144-137.6V864h96z" horiz-adv-x="1024" />
<glyph glyph-name="more" unicode="&#59413;" d="M768 384c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-41.6-96-96z m-352 0c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-41.6-96-96z m-352-6.4c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-44.8-96-96z" horiz-adv-x="1024" /> <glyph glyph-name="more" unicode="&#59413;" d="M768 384c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-41.6-96-96z m-352 0c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-41.6-96-96z m-352-6.4c0-54.4 41.6-96 96-96s96 41.6 96 96-41.6 96-96 96-96-44.8-96-96z" horiz-adv-x="1024" />
@@ -34,11 +36,11 @@
<glyph glyph-name="side-bar" unicode="&#59416;" d="M928 864c35.2 0 64-28.8 64-64v-832c0-35.2-28.8-64-64-64H96c-35.2 0-64 28.8-64 64V800c0 35.2 28.8 64 64 64h832zM416 768H160c-19.2 0-32-12.8-32-32v-704c0-19.2 12.8-32 32-32h256V768z m448 0H512v-768h352c19.2 0 32 12.8 32 32V736c0 19.2-12.8 32-32 32zM304 320c25.6 0 48-22.4 48-48S329.6 224 304 224h-64c-25.6 0-48 22.4-48 48S214.4 320 240 320h64z m0 192c25.6 0 48-22.4 48-48S329.6 416 304 416h-64c-25.6 0-48 22.4-48 48S214.4 512 240 512h64z m0 192c25.6 0 48-22.4 48-48S329.6 608 304 608h-64C214.4 608 192 630.4 192 656S214.4 704 240 704h64z" horiz-adv-x="1024" /> <glyph glyph-name="side-bar" unicode="&#59416;" d="M928 864c35.2 0 64-28.8 64-64v-832c0-35.2-28.8-64-64-64H96c-35.2 0-64 28.8-64 64V800c0 35.2 28.8 64 64 64h832zM416 768H160c-19.2 0-32-12.8-32-32v-704c0-19.2 12.8-32 32-32h256V768z m448 0H512v-768h352c19.2 0 32 12.8 32 32V736c0 19.2-12.8 32-32 32zM304 320c25.6 0 48-22.4 48-48S329.6 224 304 224h-64c-25.6 0-48 22.4-48 48S214.4 320 240 320h64z m0 192c25.6 0 48-22.4 48-48S329.6 416 304 416h-64c-25.6 0-48 22.4-48 48S214.4 512 240 512h64z m0 192c25.6 0 48-22.4 48-48S329.6 608 304 608h-64C214.4 608 192 630.4 192 656S214.4 704 240 704h64z" horiz-adv-x="1024" />
<glyph glyph-name="delete1" unicode="&#59417;" d="M352 832h320v-64h256v-96h-64v-672c0-35.2-28.8-64-64-64H224c-35.2 0-64 28.8-64 64V672H96V768h256V832z m416-160H256v-640h512V672z m-304-96v-448h-96V576h96z m192 0v-448h-96V576h96z" horiz-adv-x="1024" /> <glyph glyph-name="delete1" unicode="&#59417;" d="M352 864h320v-96h256v-96h-64v-704c0-35.2-28.8-64-64-64H224c-35.2 0-64 28.8-64 64V672H96V768h256V864z m416-192H256v-672h512V672z m-304-96v-448h-96V576h96z m192 0v-448h-96V576h96z" horiz-adv-x="1024" />
<glyph glyph-name="more-vertical" unicode="&#59418;" d="M512 640c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 41.6-96 96-96z m0-352c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 41.6-96 96-96z m6.4-352c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 44.8-96 96-96z" horiz-adv-x="1024" /> <glyph glyph-name="more-vertical" unicode="&#59418;" d="M512 640c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 41.6-96 96-96z m0-352c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 41.6-96 96-96z m6.4-352c54.4 0 96 41.6 96 96s-41.6 96-96 96-96-41.6-96-96 44.8-96 96-96z" horiz-adv-x="1024" />
<glyph glyph-name="list-view" unicode="&#59419;" d="M256 832h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32V800c0 19.2 12.8 32 32 32zM32 832h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32V800c0 19.2 12.8 32 32 32z m224-384h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m-224 0h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m224-384h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m-224 0h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z" horiz-adv-x="1024" /> <glyph glyph-name="list-view" unicode="&#59419;" d="M256 800h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32V768c0 19.2 12.8 32 32 32zM32 800h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32V768c0 19.2 12.8 32 32 32z m224-352h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m-224 0h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m224-352h736c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H256c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z m-224 0h64c19.2 0 32-12.8 32-32v-64c0-19.2-12.8-32-32-32H32c-19.2 0-32 12.8-32 32v64c0 19.2 12.8 32 32 32z" horiz-adv-x="1024" />
<glyph glyph-name="info" unicode="&#59420;" d="M512 896c281.6 0 512-230.4 512-512s-230.4-512-512-512S0 102.4 0 384 230.4 896 512 896z m0-96C281.6 800 96 614.4 96 384s185.6-416 416-416 416 185.6 416 416c0 108.8-44.8 217.6-121.6 294.4S620.8 800 512 800z m32-352c19.2 0 32-12.8 32-32v-256c0-19.2-12.8-32-32-32h-64c-19.2 0-32 12.8-32 32v256c0 19.2 12.8 32 32 32h64z m-19.2 192c9.6 0 16-3.2 22.4-9.6 3.2-3.2 6.4-6.4 9.6-6.4 25.6-25.6 25.6-64 0-89.6-3.2-3.2-6.4-6.4-9.6-6.4-6.4-3.2-16-6.4-22.4-9.6h-25.6c-9.6 0-16 3.2-22.4 9.6-3.2 3.2-6.4 6.4-9.6 6.4-25.6 25.6-25.6 64 0 89.6 3.2 3.2 6.4 6.4 9.6 6.4 6.4 3.2 16 6.4 22.4 9.6h25.6z" horiz-adv-x="1024" /> <glyph glyph-name="info" unicode="&#59420;" d="M512 896c281.6 0 512-230.4 512-512s-230.4-512-512-512S0 102.4 0 384 230.4 896 512 896z m0-96C281.6 800 96 614.4 96 384s185.6-416 416-416 416 185.6 416 416c0 108.8-44.8 217.6-121.6 294.4S620.8 800 512 800z m32-352c19.2 0 32-12.8 32-32v-256c0-19.2-12.8-32-32-32h-64c-19.2 0-32 12.8-32 32v256c0 19.2 12.8 32 32 32h64z m-19.2 192c9.6 0 16-3.2 22.4-9.6 3.2-3.2 6.4-6.4 9.6-6.4 25.6-25.6 25.6-64 0-89.6-3.2-3.2-6.4-6.4-9.6-6.4-6.4-3.2-16-6.4-22.4-9.6h-25.6c-9.6 0-16 3.2-22.4 9.6-3.2 3.2-6.4 6.4-9.6 6.4-25.6 25.6-25.6 64 0 89.6 3.2 3.2 6.4 6.4 9.6 6.4 6.4 3.2 16 6.4 22.4 9.6h25.6z" horiz-adv-x="1024" />
@@ -96,22 +98,14 @@
<glyph glyph-name="new-library" unicode="&#59386;" d="M889.6-96H134.4c-22.4 0-38.4 16-38.4 38.4V825.6C96 848 112 864 134.4 864h480c16-3.2 54.4-6.4 80-35.2 44.8-51.2 198.4-236.8 204.8-243.2 3.2-3.2 28.8-28.8 28.8-64v-579.2c0-9.6-3.2-19.2-9.6-25.6-6.4-9.6-16-12.8-28.8-12.8zM192 0h640V544h-192V768H192v-768zM560 528V384H704v-96h-144v-144h-96V288H320v96h144v144h96z" horiz-adv-x="1024" /> <glyph glyph-name="new-library" unicode="&#59386;" d="M889.6-96H134.4c-22.4 0-38.4 16-38.4 38.4V825.6C96 848 112 864 134.4 864h480c16-3.2 54.4-6.4 80-35.2 44.8-51.2 198.4-236.8 204.8-243.2 3.2-3.2 28.8-28.8 28.8-64v-579.2c0-9.6-3.2-19.2-9.6-25.6-6.4-9.6-16-12.8-28.8-12.8zM192 0h640V544h-192V768H192v-768zM560 528V384H704v-96h-144v-144h-96V288H320v96h144v144h96z" horiz-adv-x="1024" />
<glyph glyph-name="download" unicode="&#59387;" d="M160 192v-160h704v160h96v-192c0-35.2-25.6-60.8-57.6-64H128c-35.2 0-64 28.8-64 64v192h96zM560 832v-521.6l156.8 150.4 80-76.8-278.4-268.8L240 384l80 76.8 144-137.6V832h96z" horiz-adv-x="1024" />
<glyph glyph-name="entry" unicode="&#59388;" d="M384 352c35.2 0 64-28.8 64-64v-256c0-35.2-28.8-64-64-64H128c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64h256z m0-64H128v-256h256v256z m160 0h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z m0-192h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32zM384 800c35.2 0 64-28.8 64-64v-256c0-35.2-28.8-64-64-64H128c-35.2 0-64 28.8-64 64V736c0 35.2 28.8 64 64 64h256z m0-64H128v-256h256V736z m160 0h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z m0-192h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z" horiz-adv-x="1024" /> <glyph glyph-name="entry" unicode="&#59388;" d="M384 352c35.2 0 64-28.8 64-64v-256c0-35.2-28.8-64-64-64H128c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64h256z m0-64H128v-256h256v256z m160 0h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z m0-192h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32zM384 800c35.2 0 64-28.8 64-64v-256c0-35.2-28.8-64-64-64H128c-35.2 0-64 28.8-64 64V736c0 35.2 28.8 64 64 64h256z m0-64H128v-256h256V736z m160 0h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z m0-192h384c19.2 0 32-12.8 32-32s-12.8-32-32-32H544c-19.2 0-32 12.8-32 32s12.8 32 32 32z" horiz-adv-x="1024" />
<glyph glyph-name="delete" unicode="&#59389;" d="M352 832h320v-64h256v-96h-64v-672c0-35.2-28.8-64-64-64H224c-35.2 0-64 28.8-64 64V672H96V768h256V832z m416-160H256v-640h512V672z m-304-96v-448h-96V576h96z m192 0v-448h-96V576h96z" horiz-adv-x="1024" />
<glyph glyph-name="files1" unicode="&#59390;" d="M832 832c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64H192c-35.2 0-64 28.8-64 64V768c0 35.2 28.8 64 64 64h640z m-192-480H256v-128h384v128z m128 224H256v-128h512v128z" horiz-adv-x="1024" /> <glyph glyph-name="files1" unicode="&#59390;" d="M832 832c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64H192c-35.2 0-64 28.8-64 64V768c0 35.2 28.8 64 64 64h640z m-192-480H256v-128h384v128z m128 224H256v-128h512v128z" horiz-adv-x="1024" />
<glyph glyph-name="sort2" unicode="&#59378;" d="M85.863354 228.173913c22.26087 15.900621 54.062112 12.720497 73.142857-6.360248l136.745342-155.826087V848.298137c0 25.440994 22.26087 47.701863 50.881987 47.701863 28.621118 0 50.881988-22.26087 50.881988-47.701863v-922.236025c0-19.080745-12.720497-38.161491-34.981367-44.521739-3.180124-3.180124-9.540373-3.180124-15.900621-3.180125-15.900621 0-31.801242 6.360248-41.341615 19.080746L76.322981 164.571429c-15.900621 19.080745-12.720497 47.701863 9.540373 63.602484zM658.285714 892.819876c22.26087 6.360248 44.521739 0 57.242236-15.900621L944.496894 609.78882c19.080745-19.080745 12.720497-50.881988-9.540372-66.782609s-54.062112-12.720497-73.142857 6.360249L725.068323 705.192547v-785.490684c0-25.440994-22.26087-47.701863-50.881988-47.701863-28.621118 0-50.881988 22.26087-50.881987 47.701863v922.236025c0 25.440994 15.900621 44.521739 34.981366 50.881988z" horiz-adv-x="1024" /> <glyph glyph-name="sort2" unicode="&#59378;" d="M85.863354 228.173913c22.26087 15.900621 54.062112 12.720497 73.142857-6.360248l136.745342-155.826087V848.298137c0 25.440994 22.26087 47.701863 50.881987 47.701863 28.621118 0 50.881988-22.26087 50.881988-47.701863v-922.236025c0-19.080745-12.720497-38.161491-34.981367-44.521739-3.180124-3.180124-9.540373-3.180124-15.900621-3.180125-15.900621 0-31.801242 6.360248-41.341615 19.080746L76.322981 164.571429c-15.900621 19.080745-12.720497 47.701863 9.540373 63.602484zM658.285714 892.819876c22.26087 6.360248 44.521739 0 57.242236-15.900621L944.496894 609.78882c19.080745-19.080745 12.720497-50.881988-9.540372-66.782609s-54.062112-12.720497-73.142857 6.360249L725.068323 705.192547v-785.490684c0-25.440994-22.26087-47.701863-50.881988-47.701863-28.621118 0-50.881988 22.26087-50.881987 47.701863v922.236025c0 25.440994 15.900621 44.521739 34.981366 50.881988z" horiz-adv-x="1024" />
<glyph glyph-name="new-group" unicode="&#59379;" d="M550.4 32H307.2c-12.8 0-22.4 9.6-32 19.2-6.4 6.4-12.8 22.4-6.4 41.6 48 156.8 163.2 275.2 364.8 272 102.4 0 160-25.6 208-57.6 16-12.8 48-16 73.6 6.4 25.6 19.2 12.8 60.8 0 73.6-22.4 19.2-64 48-112 64 32 32 67.2 99.2 67.2 169.6 0 137.6-108.8 246.4-243.2 246.4S384 752 384 617.6c0-67.2 25.6-124.8 67.2-169.6-118.4-38.4-256-144-288-345.6-6.4-44.8-3.2-92.8 22.4-124.8 25.6-32 80-41.6 118.4-41.6h246.4c22.4 0 51.2 19.2 51.2 48-3.2 32-28.8 48-51.2 48zM489.6 620.8c0 76.8 60.8 137.6 137.6 137.6s137.6-60.8 137.6-137.6-60.8-137.6-137.6-137.6-137.6 60.8-137.6 137.6z m-134.4-144c-3.2 16-19.2 32-28.8 41.6-22.4 32-51.2 134.4-16 195.2 25.6 41.6 86.4 60.8 60.8 108.8-12.8 19.2-38.4 41.6-80 25.6s-112-96-112-185.6 25.6-137.6 38.4-160C112 460.8 32 336 0 198.4c-6.4-19.2 6.4-57.6 38.4-67.2 28.8-6.4 64 16 70.4 35.2 48 156.8 112 214.4 185.6 259.2 28.8 19.2 67.2 28.8 60.8 51.2zM1024 112h-144V256h-96v-144H640v-96h144V-128h96v144H1024V64v48z" horiz-adv-x="1024" /> <glyph glyph-name="new-group" unicode="&#59379;" d="M550.4 32H307.2c-12.8 0-22.4 9.6-32 19.2-6.4 6.4-12.8 22.4-6.4 41.6 48 156.8 163.2 275.2 364.8 272 102.4 0 160-25.6 208-57.6 16-12.8 48-16 73.6 6.4 25.6 19.2 12.8 60.8 0 73.6-22.4 19.2-64 48-112 64 32 32 67.2 99.2 67.2 169.6 0 137.6-108.8 246.4-243.2 246.4S384 752 384 617.6c0-67.2 25.6-124.8 67.2-169.6-118.4-38.4-256-144-288-345.6-6.4-44.8-3.2-92.8 22.4-124.8 25.6-32 80-41.6 118.4-41.6h246.4c22.4 0 51.2 19.2 51.2 48-3.2 32-28.8 48-51.2 48zM489.6 620.8c0 76.8 60.8 137.6 137.6 137.6s137.6-60.8 137.6-137.6-60.8-137.6-137.6-137.6-137.6 60.8-137.6 137.6z m-134.4-144c-3.2 16-19.2 32-28.8 41.6-22.4 32-51.2 134.4-16 195.2 25.6 41.6 86.4 60.8 60.8 108.8-12.8 19.2-38.4 41.6-80 25.6s-112-96-112-185.6 25.6-137.6 38.4-160C112 460.8 32 336 0 198.4c-6.4-19.2 6.4-57.6 38.4-67.2 28.8-6.4 64 16 70.4 35.2 48 156.8 112 214.4 185.6 259.2 28.8 19.2 67.2 28.8 60.8 51.2zM1024 112h-144V256h-96v-144H640v-96h144V-128h96v144H1024V64v48z" horiz-adv-x="1024" />
<glyph glyph-name="copy" unicode="&#59380;" d="M864 704c35.2 0 64-28.8 64-64v-672c0-35.2-28.8-64-64-64H352c-35.2 0-64 28.8-64 64V640c0 35.2 28.8 64 64 64h512z m-32-96H384v-608h448V608z m-160 256c35.2 0 64-28.8 64-64v-32H192v-672H160c-35.2 0-64 28.8-64 64V800c0 35.2 28.8 64 64 64h512z" horiz-adv-x="1024" />
<glyph glyph-name="more-level1" unicode="&#59381;" d="M777.6 384c0 64 54.4 118.4 118.4 118.4s118.4-54.4 118.4-118.4-54.4-118.4-118.4-118.4-118.4 54.4-118.4 118.4zM384 384c0 64 54.4 118.4 118.4 118.4s118.4-54.4 118.4-118.4-54.4-118.4-118.4-118.4S384 320 384 384zM0 384c0 64 41.6 118.4 108.8 118.4s128-54.4 128-118.4-60.8-118.4-128-118.4S0 320 0 384z" horiz-adv-x="1024" />
<glyph glyph-name="sort1" unicode="&#59382;" d="M377.6-64c-16 0-28.8 12.8-28.8 32V726.4l-230.4-236.8c-12.8-12.8-32-12.8-41.6 0-12.8 12.8-12.8 32 0 44.8l281.6 288c9.6 9.6 22.4 12.8 32 6.4 12.8-3.2 19.2-16 19.2-28.8v-832c-3.2-19.2-16-32-32-32z m268.8 0c-3.2 0-6.4 0-12.8 3.2-12.8 3.2-19.2 16-19.2 28.8V800c0 16 12.8 32 28.8 32s28.8-12.8 28.8-32v-761.6l230.4 236.8c12.8 12.8 32 12.8 41.6 0 12.8-12.8 12.8-32 0-44.8l-281.6-288c0-3.2-6.4-6.4-16-6.4z" horiz-adv-x="1024" /> <glyph glyph-name="sort1" unicode="&#59382;" d="M377.6-64c-16 0-28.8 12.8-28.8 32V726.4l-230.4-236.8c-12.8-12.8-32-12.8-41.6 0-12.8 12.8-12.8 32 0 44.8l281.6 288c9.6 9.6 22.4 12.8 32 6.4 12.8-3.2 19.2-16 19.2-28.8v-832c-3.2-19.2-16-32-32-32z m268.8 0c-3.2 0-6.4 0-12.8 3.2-12.8 3.2-19.2 16-19.2 28.8V800c0 16 12.8 32 28.8 32s28.8-12.8 28.8-32v-761.6l230.4 236.8c12.8 12.8 32 12.8 41.6 0 12.8-12.8 12.8-32 0-44.8l-281.6-288c0-3.2-6.4-6.4-16-6.4z" horiz-adv-x="1024" />
<glyph glyph-name="move" unicode="&#59383;" d="M928 736h-307.2c-32 35.2-54.4 57.6-70.4 67.2-35.2 25.6-70.4 28.8-86.4 28.8H96c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h832c35.2 0 64 28.8 64 64V672c0 35.2-28.8 64-64 64z m-32-704H128V640h768v-608zM288 384h336l-134.4 134.4 67.2 67.2 249.6-249.6-249.6-249.6-67.2 67.2 134.4 134.4H288v96z" horiz-adv-x="1024" /> <glyph glyph-name="move" unicode="&#59383;" d="M928 736h-307.2c-32 35.2-54.4 57.6-70.4 67.2-35.2 25.6-70.4 28.8-86.4 28.8H96c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h832c35.2 0 64 28.8 64 64V672c0 35.2-28.8 64-64 64z m-32-704H128V640h768v-608zM288 384h336l-134.4 134.4 67.2 67.2 249.6-249.6-249.6-249.6-67.2 67.2 134.4 134.4H288v96z" horiz-adv-x="1024" />
@@ -130,8 +124,6 @@
<glyph glyph-name="x-01" unicode="&#59352;" d="M512 439.466667L230.4 721.066667l-25.6 25.6-55.466667-55.466667 25.6-25.6 281.6-281.6-281.6-281.6-25.6-25.6 55.466667-55.466667 25.6 25.6 281.6 281.6 281.6-281.6 25.6-25.6 55.466667 55.466667-25.6 25.6-281.6 281.6 281.6 281.6 25.6 25.6-55.466667 55.466667-25.6-25.6z" horiz-adv-x="1024" /> <glyph glyph-name="x-01" unicode="&#59352;" d="M512 439.466667L230.4 721.066667l-25.6 25.6-55.466667-55.466667 25.6-25.6 281.6-281.6-281.6-281.6-25.6-25.6 55.466667-55.466667 25.6 25.6 281.6 281.6 281.6-281.6 25.6-25.6 55.466667 55.466667-25.6 25.6-281.6 281.6 281.6 281.6 25.6 25.6-55.466667 55.466667-25.6-25.6z" horiz-adv-x="1024" />
<glyph glyph-name="more-level" unicode="&#59351;" d="M777.6 384c0 64 54.4 118.4 118.4 118.4S1014.4 448 1014.4 384 960 265.6 896 265.6 777.6 320 777.6 384zM384 384c0 64 54.4 118.4 118.4 118.4S620.8 448 620.8 384s-54.4-118.4-118.4-118.4S384 320 384 384zM0 384c0 64 41.6 118.4 108.8 118.4s128-54.4 128-118.4-60.8-118.4-128-118.4S0 320 0 384z" horiz-adv-x="1024" />
<glyph glyph-name="desktop" unicode="&#59168;" d="M928 832c35.2 0 64-28.8 64-64v-608c0-35.2-28.8-64-64-64H604.8c3.2-25.6 9.6-44.8 16-64h121.6c32 0 57.6-25.6 57.6-57.6s-25.6-57.6-57.6-57.6H281.6c-32 0-57.6 25.6-57.6 57.6S249.6 32 281.6 32h121.6c6.4 19.2 12.8 38.4 19.2 64H96c-35.2 0-64 28.8-64 64V768c0 35.2 28.8 64 64 64h832z m-51.2-112H147.2v-486.4h729.6V720z" horiz-adv-x="1024" /> <glyph glyph-name="desktop" unicode="&#59168;" d="M928 832c35.2 0 64-28.8 64-64v-608c0-35.2-28.8-64-64-64H604.8c3.2-25.6 9.6-44.8 16-64h121.6c32 0 57.6-25.6 57.6-57.6s-25.6-57.6-57.6-57.6H281.6c-32 0-57.6 25.6-57.6 57.6S249.6 32 281.6 32h121.6c6.4 19.2 12.8 38.4 19.2 64H96c-35.2 0-64 28.8-64 64V768c0 35.2 28.8 64 64 64h832z m-51.2-112H147.2v-486.4h729.6V720z" horiz-adv-x="1024" />
<glyph glyph-name="qr-code" unicode="&#59158;" d="M432 345.6c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H102.4c-22.4 0-38.4 16-38.4 38.4V307.2c0 22.4 16 38.4 38.4 38.4h329.6z m524.8-326.4v-41.6c0-22.4-16-38.4-38.4-38.4h-41.6v80h80z m-160 0v-80h-80v80h80z m0 326.4v-163.2h80v163.2h41.6c22.4 0 38.4-16 38.4-38.4v-204.8h-243.2v80h-80v-243.2h-41.6c-22.4 0-38.4 16-38.4 38.4V307.2c0 22.4 16 38.4 38.4 38.4h204.8z m-406.4-83.2H144v-243.2h243.2v243.2z m-147.2-76.8c16 9.6 35.2 9.6 51.2 0s25.6-25.6 25.6-44.8-9.6-35.2-25.6-44.8-35.2-9.6-51.2 0-25.6 25.6-25.6 44.8 9.6 35.2 25.6 44.8zM432 832c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H102.4c-22.4 0-38.4 16-38.4 38.4V793.6C64 816 80 832 102.4 832h329.6z m486.4 0c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H588.8c-22.4 0-38.4 16-38.4 38.4V793.6c0 22.4 16 38.4 38.4 38.4h329.6zM390.4 752H144v-243.2h243.2V752z m486.4 0h-243.2v-243.2h243.2V752zM243.2 672c16 9.6 35.2 9.6 51.2 0s25.6-25.6 25.6-44.8-12.8-32-28.8-41.6c-12.8-9.6-32-9.6-48 0s-25.6 25.6-25.6 41.6 9.6 35.2 25.6 44.8z m512 6.4c28.8 0 51.2-22.4 51.2-51.2s-22.4-51.2-51.2-51.2c-28.8 0-51.2 22.4-51.2 51.2s22.4 51.2 51.2 51.2z" horiz-adv-x="1024" /> <glyph glyph-name="qr-code" unicode="&#59158;" d="M432 345.6c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H102.4c-22.4 0-38.4 16-38.4 38.4V307.2c0 22.4 16 38.4 38.4 38.4h329.6z m524.8-326.4v-41.6c0-22.4-16-38.4-38.4-38.4h-41.6v80h80z m-160 0v-80h-80v80h80z m0 326.4v-163.2h80v163.2h41.6c22.4 0 38.4-16 38.4-38.4v-204.8h-243.2v80h-80v-243.2h-41.6c-22.4 0-38.4 16-38.4 38.4V307.2c0 22.4 16 38.4 38.4 38.4h204.8z m-406.4-83.2H144v-243.2h243.2v243.2z m-147.2-76.8c16 9.6 35.2 9.6 51.2 0s25.6-25.6 25.6-44.8-9.6-35.2-25.6-44.8-35.2-9.6-51.2 0-25.6 25.6-25.6 44.8 9.6 35.2 25.6 44.8zM432 832c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H102.4c-22.4 0-38.4 16-38.4 38.4V793.6C64 816 80 832 102.4 832h329.6z m486.4 0c22.4 0 38.4-16 38.4-38.4v-329.6c0-22.4-16-38.4-38.4-38.4H588.8c-22.4 0-38.4 16-38.4 38.4V793.6c0 22.4 16 38.4 38.4 38.4h329.6zM390.4 752H144v-243.2h243.2V752z m486.4 0h-243.2v-243.2h243.2V752zM243.2 672c16 9.6 35.2 9.6 51.2 0s25.6-25.6 25.6-44.8-12.8-32-28.8-41.6c-12.8-9.6-32-9.6-48 0s-25.6 25.6-25.6 41.6 9.6 35.2 25.6 44.8z m512 6.4c28.8 0 51.2-22.4 51.2-51.2s-22.4-51.2-51.2-51.2c-28.8 0-51.2 22.4-51.2 51.2s22.4 51.2 51.2 51.2z" horiz-adv-x="1024" />

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.