More attachment type icons in the item tree (#3645)

This commit is contained in:
Tom Najdek 2024-02-23 12:11:40 +01:00 committed by GitHub
parent ae8cbdf3b7
commit b1333d0e9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
53 changed files with 309 additions and 45 deletions

View file

@ -1367,9 +1367,9 @@ var ItemTree = class ItemTree extends LibraryTree {
if (sortField == 'hasAttachment') {
// PDFs at the top
const order = ['pdf', 'snapshot', 'epub', 'other', 'none'];
fieldA = order.indexOf(fieldA.type || 'none') + (fieldA.exists ? 0 : 4);
fieldB = order.indexOf(fieldB.type || 'none') + (fieldB.exists ? 0 : 4);
const order = ['pdf', 'snapshot', 'epub', 'image', 'video', 'other', 'none'];
fieldA = order.indexOf(fieldA.type || 'none') + (fieldA.exists ? 0 : (order.length - 1));
fieldB = order.indexOf(fieldB.type || 'none') + (fieldB.exists ? 0 : (order.length - 1));
return fieldA - fieldB;
}
@ -2654,6 +2654,14 @@ var ItemTree = class ItemTree extends LibraryTree {
icon = getCSSItemTypeIcon('attachmentEPUB', 'attachment-type');
ariaLabel = Zotero.getString('pane.item.attachments.hasEPUB');
}
else if (type == 'image') {
icon = getCSSItemTypeIcon('attachmentImage', 'attachment-type');
ariaLabel = Zotero.getString('pane.item.attachments.hasImage');
}
else if (type == 'video') {
icon = getCSSItemTypeIcon('attachmentVideo', 'attachment-type');
ariaLabel = Zotero.getString('pane.item.attachments.hasVideo');
}
else {
icon = getCSSItemTypeIcon('attachmentFile', 'attachment-type');
ariaLabel = Zotero.getString('pane.item.attachments.has');

View file

@ -2434,6 +2434,20 @@ Zotero.Item.prototype.isEPUBAttachment = function () {
return this.isFileAttachment() && this.attachmentContentType == 'application/epub+zip';
};
/**
* @return {Boolean} - Returns true if item is a stored or linked image attachment
*/
Zotero.Item.prototype.isImageAttachment = function () {
return this.isFileAttachment() && this.attachmentContentType.startsWith('image/');
};
/**
* @return {Boolean} - Returns true if item is a stored or linked video attachment
*/
Zotero.Item.prototype.isVideoAttachment = function () {
return this.isFileAttachment() && this.attachmentContentType.startsWith('video/');
};
/**
* Returns number of child attachments of item
@ -3745,7 +3759,7 @@ Zotero.Item.prototype.getBestAttachments = Zotero.Promise.coroutine(function* ()
/**
* Return state of best attachment (or this item if it's a standalone attachment)
*
* @return {Promise<Object>} - Promise for object with string 'type' ('none'|'pdf'|'snapshot'|'other')
* @return {Promise<Object>} - Promise for object with string 'type' ('none'|'pdf'|'snapshot'|'epub'|'image'|'video'|'other')
* and boolean 'exists'
*/
Zotero.Item.prototype.getBestAttachmentState = async function () {
@ -3770,6 +3784,12 @@ Zotero.Item.prototype.getBestAttachmentState = async function () {
else if (item.isEPUBAttachment()) {
type = 'epub';
}
else if (item.isImageAttachment()) {
type = 'image';
}
else if (item.isVideoAttachment()) {
type = 'video';
}
else {
type = 'other';
}
@ -4388,6 +4408,12 @@ Zotero.Item.prototype.getItemTypeIconName = function () {
itemType += 'EPUB';
}
}
else if (this.isImageAttachment()) {
itemType += linkMode == Zotero.Attachments.LINK_MODE_LINKED_FILE ? 'ImageLink' : 'Image';
}
else if (this.isVideoAttachment()) {
itemType += linkMode == Zotero.Attachments.LINK_MODE_LINKED_FILE ? 'VideoLink' : 'Video';
}
else if (linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_FILE) {
itemType += "File";
}

View file

@ -439,6 +439,8 @@ pane.item.attachments.has = Has attachment
pane.item.attachments.hasPDF = Has PDF attachment
pane.item.attachments.hasSnapshot = Has snapshot
pane.item.attachments.hasEPUB = Has EPUB attachment
pane.item.attachments.hasImage = Has image attachment
pane.item.attachments.hasVideo = Has video attachment
pane.item.attachments.hasLink = Has link
pane.item.attachments.select = Select a File
pane.item.attachments.PDF.installTools.title = PDF Tools Not Installed

View file

@ -0,0 +1,4 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M6.707 0H1V12H11V4.293L6.707 0ZM7 1.707L9.293 4H7V1.707ZM2 11V1H6V5H10V11H2Z" fill="white"/>
<path opacity="0.24" d="M7 1.70703V4.00006H9.293L7 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View file

@ -0,0 +1,5 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="white"/>
<path opacity="0.8" d="M4 5C4.55228 5 5 4.55228 5 4C5 3.44772 4.55228 3 4 3C3.44772 3 3 3.44772 3 4C3 4.55228 3.44772 5 4 5Z" fill="#FF794C"/>
<path opacity="0.51" fill-rule="evenodd" clip-rule="evenodd" d="M5.00004 8.57138L7.5 5L11 10H4L4.00007 9.9999H1L3.5 6.42847L5.00004 8.57138Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1,5 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="white"/>
<path opacity="0.34" fill-rule="evenodd" clip-rule="evenodd" d="M5 4.76782L7.19615 6.03577L5 7.30372V4.76782Z" fill="#66ADFF"/>
<path opacity="0.85" fill-rule="evenodd" clip-rule="evenodd" d="M9.19615 6.03589L4 3.03589V9.03589L9.19615 6.03589ZM7.19615 6.03589L5 4.76794V7.30384L7.19615 6.03589Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 488 B

View file

@ -0,0 +1,6 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M6.707 0H1V12H11V4.293L6.707 0Z" fill="white"/>
<path d="M6.293 1L10 4.707V11H2V1H6.293Z" fill="white"/>
<path opacity="0.2" d="M6.707 0H1V12H11V4.293L6.707 0ZM7 1.707L9.293 4H7V1.707ZM2 11V1H6V5H10V11H2Z" fill="black"/>
<path opacity="0.08" d="M7 1.70703V4H9.293L7 1.70703Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View file

@ -0,0 +1,7 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M12 1H0V11H12V1Z" fill="white"/>
<path opacity="0.2" d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="black"/>
<path d="M11 2H1V10H11V2Z" fill="white"/>
<path d="M4 5C4.55228 5 5 4.55228 5 4C5 3.44772 4.55228 3 4 3C3.44772 3 3 3.44772 3 4C3 4.55228 3.44772 5 4 5Z" fill="#FF794C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.00004 8.57138L7.5 5L11 10H4L4.00007 9.9999H1L3.5 6.42847L5.00004 8.57138Z" fill="#88D9A4"/>
</svg>

After

Width:  |  Height:  |  Size: 546 B

View file

@ -0,0 +1,7 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M12 1H0V11H12V1Z" fill="white"/>
<path opacity="0.2" d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="black"/>
<path d="M11 2H1V10H11V2Z" fill="white"/>
<path d="M9.19615 6.03589L4 9.03589L4 3.03589L9.19615 6.03589Z" fill="#C2DEFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.19615 6.03589L4 3.03589V9.03589L9.19615 6.03589ZM7.19615 6.03589L5 4.76794V7.30384L7.19615 6.03589Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 524 B

View file

@ -0,0 +1,4 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" d="M6.5 0.5V4.5H10.5L6.5 0.5Z" fill="white"/>
<path d="M6.707 0H1V12H11V4.293L6.707 0ZM7 1.707L9.293 4H7V1.707ZM10 11H2V1H6V5H10V11Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 272 B

View file

@ -0,0 +1,5 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="white"/>
<path d="M4 5C4.55228 5 5 4.55228 5 4C5 3.44772 4.55228 3 4 3C3.44772 3 3 3.44772 3 4C3 4.55228 3.44772 5 4 5Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M5.00004 8.57138L7.5 5L11 10H4L4.00007 9.9999H1L3.5 6.42847L5.00004 8.57138Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 444 B

View file

@ -0,0 +1,5 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 2V10H1V2H11ZM12 1H0V11H12V1Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M5 4.76782L7.19615 6.03577L5 7.30372V4.76782Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.19615 6.03589L4 3.03589V9.03589L9.19615 6.03589ZM7.19615 6.03589L5 4.76794V7.30384L7.19615 6.03589Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 454 B

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="white"/>
<path opacity="0.51" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 8L7.50002 10.8571L6.5 9.4285L4 12.9999H6.00005L6 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.634 11.8214 11.7913 11.6616 11.9673 11.5248L9.5 8Z" fill="#39BF68"/>
<path opacity="0.24" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
<path opacity="0.8" d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.8" d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="#FF794C"/>
<path opacity="0.51" fill-rule="evenodd" clip-rule="evenodd" d="M9 8L7.00002 10.8571L6 9.4285L3.5 12.9999H5.50005L5.5 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.551 11.9318 11.6055 11.8666 11.663 11.8043L9 8Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
<path opacity="0.8" d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="#FF794C"/>
<path opacity="0.51" fill-rule="evenodd" clip-rule="evenodd" d="M7.50002 10.8571L9.5 8L13 13H6L6.00005 12.9999H4L6.5 9.4285L7.50002 10.8571Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 613 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.8" d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="#FF794C"/>
<path opacity="0.51" fill-rule="evenodd" clip-rule="evenodd" d="M7.00002 10.8571L9 8L12.5 13H5.5L5.50005 12.9999H3.5L6 9.4285L7.00002 10.8571Z" fill="#39BF68"/>
</svg>

After

Width:  |  Height:  |  Size: 644 B

View file

@ -1,5 +1,5 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70697V5H13.293L10 1.70697Z" fill="white"/>
<path opacity="0.6" d="M6 14H3V1H9V6H14V10H15V5.293L9.707 0L2 0V15H6V14ZM10 1.707L13.293 5H10V1.707Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1,5 +1,5 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="white"/>
<path opacity="0.6" d="M6 14H2.5V1H9V5.5H13.5V10H14.5V4.793L9.707 0H1.5V15H6V14ZM10 1.707L12.793 4.5H10V1.707Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,6 +1,6 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M11 1.70703V4H13.293L11 1.70703Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.36" d="M7 4H1V6H7V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
<g opacity="0.6">

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,6 +1,6 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.24" d="M10.5 1.70703V4.50003H13.293L10.5 1.70703Z" fill="white"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.36" d="M7 4H1V6H7V4Z" fill="#DB2C3A"/>
<path opacity="0.9" d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
<g opacity="0.6">

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.34" fill-rule="evenodd" clip-rule="evenodd" d="M10 9.49987L7 7.76782V11.0505C7.54602 10.4933 8.27683 10.1179 9.09326 10.0234L10 9.49987Z" fill="#66ADFF"/>
<path opacity="0.85" fill-rule="evenodd" clip-rule="evenodd" d="M6 6.03589L12 9.49999L10.7416 10.2265C10.3558 10.0801 9.93724 10 9.5 10C9.36251 10 9.22687 10.0079 9.09352 10.0233L10 9.49999L7 7.76794L7 11.0505C6.50545 11.5551 6.1625 12.2089 6.04484 12.9382L6 12.9641V6.03589Z" fill="#66ADFF"/>
<path opacity="0.24" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.34" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 9.49987L6.5 7.76782V11.2319L7.33449 10.7501C7.59718 10.543 7.89026 10.3727 8.20596 10.247L9.5 9.49987Z" fill="#66ADFF"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.85" fill-rule="evenodd" clip-rule="evenodd" d="M5.5 6.03589L11.5 9.49999L10.4217 10.1226C10.128 10.0426 9.819 10 9.5 10C9.04314 10 8.60673 10.0875 8.20661 10.2467L9.5 9.49999L6.5 7.76794L6.5 11.232L7.33394 10.7506C6.74571 11.2146 6.30999 11.8634 6.1143 12.6094L5.5 12.9641V6.03589Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
<path opacity="0.34" fill-rule="evenodd" clip-rule="evenodd" d="M7 7.76782L10 9.49987L7 11.2319V7.76782Z" fill="#66ADFF"/>
<path opacity="0.85" fill-rule="evenodd" clip-rule="evenodd" d="M12 9.49999L6 6.03589V12.9641L12 9.49999ZM10 9.49999L7 7.76794L7 11.232L10 9.49999Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 590 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.6" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.24" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.34" d="M6.5 7.76782L9.5 9.49987L6.5 11.2319L6.5 7.76782Z" fill="#66ADFF"/>
<path opacity="0.85" fill-rule="evenodd" clip-rule="evenodd" d="M11.5 9.49999L5.5 6.03589V12.9641L11.5 9.49999ZM9.5 9.49999L6.5 7.76794L6.5 11.232L9.5 9.49999Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 581 B

View file

@ -1,4 +1,4 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
@ -6,5 +6,5 @@
<path opacity="0.6" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="white"/>
<path opacity="0.4" d="M11.5 10.632C10.9152 10.2187 10.2161 9.9978 9.5 10C8.74896 10.0027 8.01878 10.2474 7.41771 10.6977C6.96032 11.0403 6.59622 11.4882 6.35414 12H3V9H12V10.3403C11.8257 10.4231 11.6584 10.5207 11.5 10.632Z" fill="#4072E5"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -1,4 +1,4 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M1 2H14V5H1V2ZM2 3H3V4H2V3ZM4 3H5V4H4V3ZM7 3H6V4H7V3Z" fill="white"/>
<path opacity="0.85" d="M3 3H2V4H3V3Z" fill="#E24940"/>
<path opacity="0.85" d="M5 3H4V4H5V3Z" fill="#E0A32A"/>
@ -6,5 +6,5 @@
<path opacity="0.6" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="white"/>
<path opacity="0.4" d="M11.5 10.632C10.9152 10.2187 10.2161 9.9978 9.5 10C8.74896 10.0027 8.01878 10.2474 7.41771 10.6977C6.96032 11.0403 6.59622 11.4882 6.35414 12H3V9H12V10.3403C11.8257 10.4231 11.6584 10.5207 11.5 10.632Z" fill="#4072E5"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path opacity="0.6" d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="white"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -1,7 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.9" d="M13 5.5H12V6.5H13V5.5Z" fill="#DB2C3A"/>
<path opacity="0.6" d="M6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M5 4H14V12H5V4ZM6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5ZM13 5.5H12V6.5H13V5.5Z" fill="white"/>
<path opacity="0.6" d="M15 5.5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8.5C15.2652 8.5 15.5196 8.39464 15.7071 8.20711C15.8946 8.01957 16 7.76522 16 7.5V6.5C16 6.23478 15.8946 5.98043 15.7071 5.79289C15.5196 5.60536 15.2652 5.5 15 5.5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="white"/>
<path opacity="0.9" d="M13 5H12V6H13V5Z" fill="#DB2C3A"/>
<path opacity="0.6" d="M6.5 6H10.5C10.6326 6 10.7598 5.94732 10.8536 5.85355C10.9473 5.75979 11 5.63261 11 5.5C11 5.36739 10.9473 5.24021 10.8536 5.14645C10.7598 5.05268 10.6326 5 10.5 5H6.5C6.36739 5 6.24021 5.05268 6.14645 5.14645C6.05268 5.24021 6 5.36739 6 5.5C6 5.63261 6.05268 5.75979 6.14645 5.85355C6.24021 5.94732 6.36739 6 6.5 6Z" fill="white"/>
<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M5 4H14V12H5V4ZM6.5 6H10.5C10.6326 6 10.7598 5.94732 10.8536 5.85355C10.9473 5.75979 11 5.63261 11 5.5C11 5.36739 10.9473 5.24021 10.8536 5.14645C10.7598 5.05268 10.6326 5 10.5 5H6.5C6.36739 5 6.24021 5.05268 6.14645 5.14645C6.05268 5.24021 6 5.36739 6 5.5C6 5.63261 6.05268 5.75979 6.14645 5.85355C6.24021 5.94732 6.36739 6 6.5 6ZM13 5H12V6H13V5Z" fill="white"/>
<path opacity="0.6" d="M15 5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8C15.2652 8 15.5196 7.89464 15.7071 7.70711C15.8946 7.51957 16 7.26522 16 7V6C16 5.73478 15.8946 5.48043 15.7071 5.29289C15.5196 5.10536 15.2652 5 15 5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="white"/>
<path opacity="0.24" d="M1 10.6901L4 8.95908V7.04208L1 5.30908V10.6901Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.70706L15 5.293V10.3368C14.5454 10.1208 14.0368 10 13.5 10C12.7564 10 12.0669 10.2317 11.5 10.6272C10.9331 10.2317 10.2436 10 9.5 10C7.567 10 6 11.5669 6 13.5C6 14.4794 6.40222 15.3648 7.05047 16H2V0Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 5.707L9.29297 1H3V15H7.49979C7.18594 14.5822 6.99997 14.0628 6.99997 13.5C6.99997 12.1193 8.11926 11 9.49997 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C13.6712 11 13.8384 11.0172 14 11.05V5.707Z" fill="white"/>
<path opacity="0.08" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="black"/>
<path d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="#FF794C"/>
<path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 8L7.50002 10.8571L6.5 9.4285L4 12.9999H6.00005L6 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.634 11.8214 11.7913 11.6616 11.9673 11.5248L9.5 8Z" fill="#88D9A4"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.70706L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10C12.7564 10 12.0669 10.2317 11.5 10.6272C10.9331 10.2317 10.2436 10 9.5 10C7.567 10 6 11.5669 6 13.5C6 14.4794 6.40222 15.3648 7.05047 16H1.5V0Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 5.207L9.293 1H2.50003V15H7.49982C7.18597 14.5822 7 14.0628 7 13.5C7 12.1193 8.11929 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C13.5 11 13.5 11 13.5 11V5.207Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
<path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 8L7.00002 10.8571L6 9.4285L3.5 12.9999H5.50005L5.5 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.551 11.9318 11.6055 11.8666 11.663 11.8043L9 8Z" fill="#88D9A4"/>
<path opacity="0.08" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="black"/>
<path d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="#FF794C"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.70706 0H2V16H15V5.293L9.70706 0Z" fill="white"/>
<path d="M9.293 1L14 5.707V15H3.00003V1H9.293Z" fill="white"/>
<path opacity="0.2" d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="black"/>
<path opacity="0.08" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="black"/>
<path d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="#FF794C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.50002 10.8571L9.5 8L13 13H6L6.00005 12.9999H4L6.5 9.4285L7.50002 10.8571Z" fill="#88D9A4"/>
</svg>

After

Width:  |  Height:  |  Size: 722 B

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.70706 0H1.5V16H14.5V4.793L9.70706 0Z" fill="white"/>
<path d="M9.29295 1L13.5 5.207V15H2.49998V1H9.29295Z" fill="white"/>
<path opacity="0.2" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="black"/>
<path opacity="0.08" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="black"/>
<path d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="#FF794C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.00002 10.8571L9 8L12.5 13H5.5L5.50005 12.9999H3.5L6 9.4285L7.00002 10.8571Z" fill="#88D9A4"/>
</svg>

After

Width:  |  Height:  |  Size: 763 B

View file

@ -1,7 +1,7 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M13.5 11.5C12.3954 11.5 11.5 12.3954 11.5 13.5C11.5 12.3954 10.6046 11.5 9.5 11.5C8.39543 11.5 7.5 12.3954 7.5 13.5C7.5 13.6726 7.52188 13.8402 7.56301 14H6V15H2V0H9.707L15 5.293V10H14V11.563C13.8402 11.5219 13.6726 11.5 13.5 11.5Z" fill="white"/>
<path d="M13.5 11.5C12.3954 11.5 11.5 12.3954 11.5 13.5C11.5 12.3954 10.6046 11.5 9.5 11.5C8.39543 11.5 7.5 12.3954 7.5 13.5C7.5 13.6726 7.52188 13.8402 7.56301 14H3V1H9.293L14 5.707V11.563C13.8402 11.5219 13.6726 11.5 13.5 11.5Z" fill="white"/>
<path opacity="0.08" d="M10 1.70697V5H13.293L10 1.70697Z" fill="black"/>
<path opacity="0.2" d="M6 14H3V1H9V6H14V10H15V5.293L9.707 0H2V15H6V14ZM10 1.707L13.293 5H10V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,7 +1,7 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5V10H14.5V4.793L9.707 0H1.5V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5V5.207L9.293 1H2.5V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M10 1.70697V4.49997H12.793L10 1.70697Z" fill="black"/>
<path opacity="0.2" d="M6 14H2.5V1H9V5.5H13.5V10H14.5V4.793L9.707 0H1.5V15H6V14ZM10 1.707L12.793 4.5H10V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,9 +1,9 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V10H15V4.293L10.707 0H3V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V4.707L10.293 1H4V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M11 1.70703V4H13.293L11 1.70703Z" fill="black"/>
<path opacity="0.2" d="M6 14H4V1H10V5H14V10H15V4.293L10.707 0H3V15H6V14ZM11 1.707L13.293 4H11V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
<path d="M7 4H1V6H7V4Z" fill="#F1ABB0"/>
<path d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -1,9 +1,9 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V10H15V4.793L10.207 0H3V15H6V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V5.207L9.793 1H4V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.08" d="M10.5 1.70703V4.50003H13.293L10.5 1.70703Z" fill="black"/>
<path opacity="0.2" d="M6 14H4V1H9.5V5.5H14V10H15V4.793L10.207 0H3V15H6V14ZM10.5 1.707L13.293 4.5H10.5V1.707Z" fill="black"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
<path d="M7 4H1V6H7V4Z" fill="#F1ABB0"/>
<path d="M7 4V6H1V4H7ZM8 3H0V7H8V3Z" fill="#DB2C3A"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.70706L15 5.293V10.3368C14.5454 10.1208 14.0368 10 13.5 10C12.7564 10 12.0669 10.2317 11.5 10.6272C10.9331 10.2317 10.2436 10 9.5 10C7.567 10 6 11.5669 6 13.5C6 14.4794 6.40222 15.3648 7.05047 16H2V0Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 5.707L9.29297 1H3V15H7.49979C7.18594 14.5822 6.99997 14.0628 6.99997 13.5C6.99997 12.1193 8.11926 11 9.49997 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C13.6712 11 13.8384 11.0172 14 11.05V5.707Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7416 10.2265L12 9.49999L6 6.03589V12.9641L6.04484 12.9382C6.31362 11.2722 7.75823 10 9.5 10C9.93724 10 10.3558 10.0801 10.7416 10.2265Z" fill="#C2DEFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 6.03589L12 9.49999L10.7416 10.2265C10.3558 10.0801 9.93724 10 9.5 10C9.36251 10 9.22687 10.0079 9.09352 10.0233L10 9.49999L7 7.76794L7 11.0505C6.50545 11.5551 6.1625 12.2089 6.04484 12.9382L6 12.9641V6.03589Z" fill="#66ADFF"/>
<path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
<path opacity="0.08" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,9 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.70706L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10C12.7564 10 12.0669 10.2317 11.5 10.6272C10.9331 10.2317 10.2436 10 9.5 10C7.567 10 6 11.5669 6 13.5C6 14.4794 6.40222 15.3648 7.05047 16H1.5V0Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 5.207L9.29297 1H2.5V15H7.49979C7.18594 14.5822 6.99997 14.0628 6.99997 13.5C6.99997 12.1193 8.11926 11 9.49997 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C13.5 11 13.5 11 13.5 11V5.207Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4217 10.1226L11.5 9.49999L5.5 6.03589V12.9641L6.1143 12.6094C6.50822 11.1077 7.87474 10 9.5 10C9.819 10 10.128 10.0426 10.4217 10.1226Z" fill="#C2DEFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 6.03589L11.5 9.49999L10.4217 10.1226C10.128 10.0426 9.819 10 9.5 10C9.04314 10 8.60673 10.0875 8.20661 10.2467L9.5 9.49999L6.5 7.76794V11.232L7.33394 10.7506C6.74571 11.2146 6.30999 11.8634 6.1143 12.6094L5.5 12.9641V6.03589Z" fill="#66ADFF"/>
<path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="black"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
<path opacity="0.08" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.70706 0H2V16H15V5.293L9.70706 0Z" fill="white"/>
<path d="M9.293 1L14 5.707V15H3.00003V1H9.293Z" fill="white"/>
<path opacity="0.2" d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="black"/>
<path opacity="0.08" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="black"/>
<path d="M12 9.49999L6 12.9641L6 6.03589L12 9.49999Z" fill="#C2DEFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9.49999L6 6.03589V12.9641L12 9.49999ZM10 9.49999L7 7.76794L7 11.232L10 9.49999Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 661 B

View file

@ -0,0 +1,8 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.70706 0H1.5V16H14.5V4.793L9.70706 0Z" fill="white"/>
<path d="M9.29297 1L13.5 5.207V15H2.5V1H9.29297Z" fill="white"/>
<path opacity="0.2" d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="black"/>
<path opacity="0.08" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="black"/>
<path d="M11.5 9.49999L5.5 12.9641L5.5 6.03589L11.5 9.49999Z" fill="#C2DEFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 9.49999L5.5 6.03589V12.9641L11.5 9.49999ZM9.5 9.49999L6.5 7.76794L6.5 11.232L9.5 9.49999Z" fill="#66ADFF"/>
</svg>

After

Width:  |  Height:  |  Size: 697 B

View file

@ -1,4 +1,4 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.5 10C10.2161 9.9978 10.9152 10.2187 11.5 10.632C12.0043 10.275 12.5955 10.0604 13.2114 10.011C13.8273 9.96154 14.4452 10.079 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.12289 14.5327 6.00293 14.02 6 13.5C6 12.5717 6.36875 11.6815 7.02513 11.0251C7.6815 10.3687 8.57174 10 9.5 10Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V2H1V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.04" d="M14 2H1V5H14V2Z" fill="black"/>
@ -8,5 +8,5 @@
<path d="M9.5 10C10.2161 9.9978 10.9152 10.2187 11.5 10.632C11.8049 10.4177 12.1426 10.2546 12.5 10.149V8.5H2.5V12.5H6.163C6.37666 11.78 6.81663 11.148 7.41771 10.6977C8.01878 10.2474 8.74896 10.0027 9.5 10Z" fill="#B3C7F5"/>
<path opacity="0.2" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="black"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1,4 +1,4 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" d="M9.5 10C10.2161 9.9978 10.9152 10.2187 11.5 10.632C12.0043 10.275 12.5955 10.0604 13.2114 10.011C13.8273 9.96154 14.4452 10.079 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.12289 14.5327 6.00293 14.02 6 13.5C6 12.5717 6.36875 11.6815 7.02513 11.0251C7.6815 10.3687 8.57174 10 9.5 10Z" fill="white"/>
<path d="M7.5 13.5C7.5 12.9696 7.71071 12.4609 8.08579 12.0858C8.46086 11.7107 8.96957 11.5 9.5 11.5C10.0304 11.5 10.5391 11.7107 10.9142 12.0858C11.2893 12.4609 11.5 12.9696 11.5 13.5C11.5 12.9696 11.7107 12.4609 12.0858 12.0858C12.4609 11.7107 12.9696 11.5 13.5 11.5C13.669 11.5021 13.8371 11.5259 14 11.571V2H1V14H7.571C7.52594 13.8371 7.50207 13.669 7.5 13.5Z" fill="white"/>
<path opacity="0.04" d="M14 2H1V5H14V2Z" fill="black"/>
@ -8,5 +8,5 @@
<path d="M9.5 10C10.2161 9.9978 10.9152 10.2187 11.5 10.632C11.8049 10.4177 12.1426 10.2546 12.5 10.149V8.5H2.5V12.5H6.163C6.37666 11.78 6.81663 11.148 7.41771 10.6977C8.01878 10.2474 8.74896 10.0027 9.5 10Z" fill="#B3C7F5"/>
<path opacity="0.2" d="M6.051 14H1V6H14V10.051C14.3467 10.0995 14.6839 10.2007 15 10.351V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H1C0.734784 1 0.48043 1.10536 0.292893 1.29289C0.105357 1.48043 0 1.73478 0 2L0 15H6.351C6.2007 14.6839 6.09954 14.3467 6.051 14ZM1 2H14V5H1V2Z" fill="black"/>
<path d="M6.351 12H3V9H12V10.342C12.3162 10.1919 12.6534 10.0907 13 10.042V8H2V13H6.051C6.09954 12.6533 6.2007 12.3161 6.351 12Z" fill="#4072E5"/>
<path d="M13.4999 11C13.1105 11.0008 12.7266 11.0929 12.3793 11.269C12.0319 11.4452 11.7307 11.7003 11.4999 12.014C11.1872 11.5909 10.7488 11.2772 10.2474 11.1177C9.74597 10.9582 9.20699 10.9609 8.70722 11.1256C8.20744 11.2902 7.77237 11.6084 7.46395 12.0347C7.15553 12.461 6.9895 12.9738 6.9895 13.5C6.9895 14.0262 7.15553 14.539 7.46395 14.9653C7.77237 15.3917 8.20744 15.7098 8.70722 15.8745C9.20699 16.0391 9.74597 16.0419 10.2474 15.8824C10.7488 15.7228 11.1872 15.4092 11.4999 14.986C11.7539 15.3297 12.0918 15.6024 12.4812 15.7784C12.8706 15.9543 13.2987 16.0274 13.7244 15.9908C14.1502 15.9542 14.5594 15.8091 14.9131 15.5693C15.2668 15.3296 15.5532 15.0031 15.7448 14.6212C15.9365 14.2392 16.027 13.8145 16.0078 13.3877C15.9886 12.9608 15.8603 12.5459 15.6351 12.1827C15.41 11.8195 15.0955 11.5201 14.7217 11.3131C14.3479 11.106 13.9272 10.9982 13.4999 11ZM9.49993 15C9.22467 15.0012 8.9544 14.9265 8.71873 14.7843C8.48305 14.6421 8.29105 14.4378 8.16375 14.1937C8.03646 13.9497 7.97877 13.6753 7.99701 13.4006C8.01526 13.126 8.10872 12.8616 8.26718 12.6366C8.42563 12.4115 8.64297 12.2343 8.89538 12.1245C9.1478 12.0147 9.42556 11.9765 9.69825 12.014C9.97094 12.0516 10.228 12.1634 10.4414 12.3373C10.6548 12.5112 10.8162 12.7405 10.9079 13H9.49993C9.36732 13 9.24014 13.0527 9.14637 13.1465C9.0526 13.2402 8.99993 13.3674 8.99993 13.5C8.99993 13.6326 9.0526 13.7598 9.14637 13.8536C9.24014 13.9473 9.36732 14 9.49993 14H10.9079C10.8049 14.2915 10.6143 14.544 10.3623 14.723C10.1102 14.902 9.80906 14.9987 9.49993 15ZM13.4999 15C13.1908 14.9987 12.8896 14.902 12.6376 14.723C12.3855 14.544 12.195 14.2915 12.0919 14H13.4999C13.6325 14 13.7597 13.9473 13.8535 13.8536C13.9472 13.7598 13.9999 13.6326 13.9999 13.5C13.9999 13.3674 13.9472 13.2402 13.8535 13.1465C13.7597 13.0527 13.6325 13 13.4999 13H12.0919C12.1837 12.7405 12.3451 12.5112 12.5584 12.3373C12.7718 12.1634 13.0289 12.0516 13.3016 12.014C13.5743 11.9765 13.8521 12.0147 14.1045 12.1245C14.3569 12.2343 14.5742 12.4115 14.7327 12.6366C14.8911 12.8616 14.9846 13.126 15.0028 13.4006C15.0211 13.6753 14.9634 13.9497 14.8361 14.1937C14.7088 14.4378 14.5168 14.6421 14.2811 14.7843C14.0454 14.9265 13.7752 15.0012 13.4999 15Z" fill="#888888"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="#888888"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1,7 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 4H5V12H14V4Z" fill="#DADADA"/>
<path d="M4.49992 6.75194L0.707924 4.56294C0.653835 4.53352 0.59687 4.50973 0.537923 4.49194C0.507178 4.55064 0.493985 4.61695 0.499923 4.68294V11.3169C0.50111 11.3783 0.50882 11.4393 0.522923 11.4989H0.531924C0.594658 11.4924 0.654965 11.4712 0.707924 11.4369L4.49992 9.24694V6.75194Z" fill="#B4B4B4"/>
<path d="M13 5.5H12V6.5H13V5.5Z" fill="#DB2C3A"/>
<path d="M6.5 6.5H10.5C10.6326 6.5 10.7598 6.44732 10.8536 6.35355C10.9473 6.25979 11 6.13261 11 6C11 5.86739 10.9473 5.74021 10.8536 5.64645C10.7598 5.55268 10.6326 5.5 10.5 5.5H6.5C6.36739 5.5 6.24021 5.55268 6.14645 5.64645C6.05268 5.74021 6 5.86739 6 6C6 6.13261 6.05268 6.25979 6.14645 6.35355C6.24021 6.44732 6.36739 6.5 6.5 6.5Z" fill="#444444"/>
<path d="M15 5.5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8.5C15.2652 8.5 15.5196 8.39464 15.7071 8.20711C15.8946 8.01957 16 7.76522 16 7.5V6.5C16 6.23478 15.8946 5.98043 15.7071 5.79289C15.5196 5.60536 15.2652 5.5 15 5.5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="#444444"/>
<path d="M13 5H12V6H13V5Z" fill="#DB2C3A"/>
<path d="M6.5 6H10.5C10.6326 6 10.7598 5.94732 10.8536 5.85355C10.9473 5.75979 11 5.63261 11 5.5C11 5.36739 10.9473 5.24021 10.8536 5.14645C10.7598 5.05268 10.6326 5 10.5 5H6.5C6.36739 5 6.24021 5.05268 6.14645 5.14645C6.05268 5.24021 6 5.36739 6 5.5C6 5.63261 6.05268 5.75979 6.14645 5.85355C6.24021 5.94732 6.36739 6 6.5 6Z" fill="#444444"/>
<path d="M15 5V4C15 3.73478 14.8946 3.48043 14.7071 3.29289C14.5196 3.10536 14.2652 3 14 3H5C4.73478 3 4.48043 3.10536 4.29289 3.29289C4.10536 3.48043 4 3.73478 4 4V5.886L0.958 4.13C0.829705 4.05039 0.682882 4.00559 0.532 4C0.217 4 0 4.251 0 4.683V11.317C0 11.749 0.217 12 0.532 12C0.682882 11.9944 0.829705 11.9496 0.958 11.87L4 10.114V12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H14C14.2652 13 14.5196 12.8946 14.7071 12.7071C14.8946 12.5196 15 12.2652 15 12V8C15.2652 8 15.5196 7.89464 15.7071 7.70711C15.8946 7.51957 16 7.26522 16 7V6C16 5.73478 15.8946 5.48043 15.7071 5.29289C15.5196 5.10536 15.2652 5 15 5ZM4 8.959L1 10.69V5.309L4 7.042V8.959ZM14 12H5V4H14V12Z" fill="#444444"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 8L7.50002 10.8571L6.5 9.4285L4 12.9999H6.00005L6 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.634 11.8214 11.7913 11.6616 11.9673 11.5248L9.5 8Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M9 8L7.00002 10.8571L6 9.4285L3.5 12.9999H5.50005L5.5 13H7.05001C7.28164 11.8589 8.29052 11 9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.551 11.9318 11.6055 11.8666 11.663 11.8043L9 8Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="white"/>
<path d="M6.5 8C7.32843 8 8 7.32843 8 6.5C8 5.67157 7.32843 5 6.5 5C5.67157 5 5 5.67157 5 6.5C5 7.32843 5.67157 8 6.5 8Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M7.50002 10.8571L9.5 8L13 13H6L6.00005 12.9999H4L6.5 9.4285L7.50002 10.8571Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 579 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25C7.5 5.55964 6.94036 5 6.25 5C5.55964 5 5 5.55964 5 6.25C5 6.94036 5.55964 7.5 6.25 7.5Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M7.00002 10.8571L9 8L12.5 13H5.5L5.50005 12.9999H3.5L6 9.4285L7.00002 10.8571Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 610 B

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 0H9.707L15 5.293V10.3368C14.6891 10.1891 14.3531 10.0859 14 10.0354V6H9V1H3V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H2V0ZM13.293 5L10 1.707V5H13.293Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M10.7416 10.2265L12 9.49999L6 6.03589V12.9641L6.04484 12.9382C6.31362 11.2722 7.75823 10 9.5 10C9.93724 10 10.3558 10.0801 10.7416 10.2265Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 6.03589L12 9.49999L10.7416 10.2265C10.3558 10.0801 9.93724 10 9.5 10C9.36251 10 9.22687 10.0079 9.09352 10.0233L10 9.49999L7 7.76794L7 11.0505C6.50545 11.5551 6.1625 12.2089 6.04484 12.9382L6 12.9641V6.03589Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,7 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M10.4217 10.1226L11.5 9.49999L5.5 6.03589V12.9641L6.1143 12.6094C6.50822 11.1077 7.87474 10 9.5 10C9.819 10 10.128 10.0426 10.4217 10.1226Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 6.03589L11.5 9.49999L10.4217 10.1226C10.128 10.0426 9.819 10 9.5 10C9.04314 10 8.60673 10.0875 8.20661 10.2467L9.5 9.49999L6.5 7.76794L6.5 11.232L7.33394 10.7506C6.74571 11.2146 6.30999 11.8634 6.1143 12.6094L5.5 12.9641V6.03589Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 11C10.3178 11 11.0439 11.3927 11.5 11.9998C11.9561 11.3927 12.6822 11 13.5 11C14.8807 11 16 12.1193 16 13.5C16 14.8807 14.8807 16 13.5 16C12.6822 16 11.9561 15.6073 11.5 15.0002C11.0439 15.6073 10.3178 16 9.5 16C8.11929 16 7 14.8807 7 13.5C7 12.1193 8.11929 11 9.5 11ZM10.9146 13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H10.9146C10.7087 14.5826 10.1531 15 9.5 15C8.67157 15 8 14.3284 8 13.5C8 12.6716 8.67157 12 9.5 12C10.1531 12 10.7087 12.4174 10.9146 13ZM12.0854 14H13.5C13.7761 14 14 13.7761 14 13.5C14 13.2239 13.7761 13 13.5 13H12.0854C12.2913 12.4174 12.8469 12 13.5 12C14.3284 12 15 12.6716 15 13.5C15 14.3284 14.3284 15 13.5 15C12.8469 15 12.2913 14.5826 12.0854 14Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 0H9.707L14.5 4.793V10.1449C14.1831 10.0506 13.8475 10 13.5 10V5.5H9V1H2.5V15H6.33679C6.51484 15.3748 6.75753 15.7129 7.05047 16H1.5V0ZM12.793 4.5L10 1.707V4.5H12.793Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.707 0H2V16H15V5.293L9.707 0ZM10 1.707L13.293 5H10V1.707ZM3 15V1H9V6H14V15H3Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V5.00006H13.293L10 1.70703Z" fill="white"/>
<path opacity="0.4" d="M12 9.49999L6 12.9641L6 6.03589L12 9.49999Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 9.49999L6 6.03589V12.9641L12 9.49999ZM10 9.49999L7 7.76794L7 11.232L10 9.49999Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 518 B

View file

@ -0,0 +1,6 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.707 0H1.5V16H14.5V4.793L9.707 0ZM10 1.707L12.793 4.5H10V1.707ZM2.5 15V1H9V5.5H13.5V15H2.5Z" fill="white"/>
<path opacity="0.4" d="M10 1.70703V4.5H12.793L10 1.70703Z" fill="white"/>
<path opacity="0.4" d="M11.5 9.49999L5.5 12.9641L5.5 6.03589L11.5 9.49999Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 9.49999L5.5 6.03589V12.9641L11.5 9.49999ZM9.5 9.49999L6.5 7.76794L6.5 11.232L9.5 9.49999Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 548 B

View file

@ -1,5 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M14 4H5V12H14V4Z" fill="white"/>
<path opacity="0.4" d="M4.5 6.75194L0.708 4.56294C0.606 4.50394 0.547 4.49994 0.538 4.49194C0.528 4.50294 0.5 4.56094 0.5 4.68194V11.3169C0.5 11.4379 0.528 11.4969 0.523 11.4989C0.523 11.4989 0.526 11.4989 0.532 11.4989C0.548 11.4989 0.607 11.4939 0.708 11.4369L4.5 9.24694V6.75194Z" fill="white"/>
<path d="M12 5.49998H13V6.49998H12V5.49998ZM6.5 6.49998H10.5C10.776 6.49998 11 6.27598 11 5.99998C11 5.72398 10.776 5.49998 10.5 5.49998H6.5C6.224 5.49998 6 5.72398 6 5.99998C6 6.27598 6.224 6.49998 6.5 6.49998ZM16 6.49998V7.49998C16 8.05198 15.552 8.49998 15 8.49998V12C15 12.552 14.552 13 14 13H5C4.448 13 4 12.552 4 12V10.114L0.958 11.871C0.805 11.959 0.661 12.001 0.533 12.001C0.217 12 0 11.749 0 11.317V4.68198C0 4.25098 0.217 3.99998 0.532 3.99998C0.66 3.99998 0.805 4.04198 0.957 4.12998L3.999 5.88698V4.00098C3.999 3.44898 4.447 3.00098 4.999 3.00098H13.999C14.551 3.00098 14.999 3.44898 14.999 4.00098V5.50098C15.551 5.50098 15.999 5.94898 15.999 6.50098L16 6.49998ZM4 7.04198L1.001 5.30998V10.691L4 8.95898V7.04198ZM14 3.99998H5V12H14V3.99998Z" fill="white"/>
<path d="M12 5H13V6H12V5ZM6.5 6H10.5C10.776 6 11 5.776 11 5.5C11 5.224 10.776 5 10.5 5H6.5C6.224 5 6 5.224 6 5.5C6 5.776 6.224 6 6.5 6ZM16 6V7C16 7.552 15.552 8 15 8V12C15 12.552 14.552 13 14 13H5C4.448 13 4 12.552 4 12V10.114L0.958 11.871C0.805 11.959 0.661 12.001 0.533 12.001C0.217 12 0 11.749 0 11.317V4.68198C0 4.25098 0.217 3.99998 0.532 3.99998C0.66 3.99998 0.805 4.04198 0.957 4.12998L3.999 5.88698V4.00098C3.999 3.44898 4.447 3.00098 4.999 3.00098H13.999C14.551 3.00098 14.999 3.44898 14.999 4.00098V5.001C15.551 5.001 15.999 5.449 15.999 6.001L16 6ZM4 7.04198L1.001 5.30998V10.691L4 8.95898V7.04198ZM14 3.99998H5V12H14V3.99998Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -203,6 +203,10 @@ $-itemTypesIcons: (
attachment-pdf,
attachment-snapshot,
attachment-web-link,
attachment-image,
attachment-image-link,
attachment-video,
attachment-video-link,
audio-recording,
bill,
blog-post,
@ -255,6 +259,9 @@ $-attachmentIcons: (
attachment-pdf,
attachment-snapshot,
attachment-web-link,
attachment-file,
attachment-image,
attachment-video
);
.icon-item-type {
@ -289,13 +296,6 @@ $-attachmentIcons: (
.icon-item-type[data-item-type=#{$itemType}] {
@include svgicon($itemTypeIcon, $color, "16", "item-type", true);
}
@if index($-attachmentIcons, $itemTypeIcon) != false {
.icon-attachment-type[data-item-type=#{$itemType}] {
@include svgicon($itemTypeIcon, $color, "12", "item-type", false);
background-origin: content-box;
}
}
}
}
@ -306,5 +306,13 @@ $-attachmentIcons: (
.virtualized-table .row {
@include focus-states using($color) {
@include -icon-item-type-rules($color);
@each $itemAttachmentIcon in $-attachmentIcons {
$itemType: camelCase(str-replace(str-replace($itemAttachmentIcon, "pdf", "PDF"), "epub", "EPUB"));
.icon-attachment-type[data-item-type=#{$itemType}] {
@include svgicon($itemAttachmentIcon, $color, "12", "item-type", false);
background-origin: content-box;
}
}
}
}

View file

@ -1219,7 +1219,7 @@ describe("Zotero.Item", function () {
yield parentItem.getBestAttachmentState();
assert.deepEqual(
parentItem.getBestAttachmentStateCached(),
{ type: 'other', exists: true }
{ type: 'image', exists: true }
);
})
@ -1236,7 +1236,7 @@ describe("Zotero.Item", function () {
yield parentItem.getBestAttachmentState();
assert.deepEqual(
parentItem.getBestAttachmentStateCached(),
{ type: 'other', exists: false }
{ type: 'image', exists: false }
);
})