From dc732d6e450ca32a4b5b48346e02622133250a85 Mon Sep 17 00:00:00 2001 From: Grace Kind Date: Fri, 14 Aug 2026 00:16:41 -0500 Subject: [PATCH] Update icons --- package.json | 2 +- src/css/style.css | 4 ++-- src/img/icons/custom/inbox.svg | 2 +- src/img/icons/custom/message-plus-line.svg | 2 +- src/img/icons/custom/reply.svg | 2 +- src/img/icons/custom/repost.svg | 2 +- src/js/templates/icons/inboxIcon.template.js | 16 ++++++++++++---- .../templates/icons/messagePlusIcon.template.js | 16 ++++++++++++---- src/js/templates/icons/replyIcon.template.js | 9 +++++++-- src/js/templates/icons/repostIcon.template.js | 16 ++++++++++++++-- 10 files changed, 52 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 949411a4..b582033e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "impro", - "version": "0.18.182", + "version": "0.18.183", "type": "module", "scripts": { "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve", diff --git a/src/css/style.css b/src/css/style.css index 8683cc89..870ec5f8 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -1950,7 +1950,7 @@ container-link { } .small-post .repost-label .icon path { - fill: var(--text-color-muted); + stroke: var(--text-color-muted); } .small-post .missing-post-indicator { @@ -3346,7 +3346,7 @@ image-carousel { } .notification-icon .repost-icon path { - fill: var(--highlight-color); + stroke: var(--highlight-color); } .notification-icon.verified-icon svg { diff --git a/src/img/icons/custom/inbox.svg b/src/img/icons/custom/inbox.svg index 888a6bdc..0b8665d3 100644 --- a/src/img/icons/custom/inbox.svg +++ b/src/img/icons/custom/inbox.svg @@ -1 +1 @@ - + diff --git a/src/img/icons/custom/message-plus-line.svg b/src/img/icons/custom/message-plus-line.svg index d8e4c8f1..69134f19 100644 --- a/src/img/icons/custom/message-plus-line.svg +++ b/src/img/icons/custom/message-plus-line.svg @@ -1 +1 @@ - + diff --git a/src/img/icons/custom/reply.svg b/src/img/icons/custom/reply.svg index d5a509aa..a8a3b16d 100644 --- a/src/img/icons/custom/reply.svg +++ b/src/img/icons/custom/reply.svg @@ -1 +1 @@ - + diff --git a/src/img/icons/custom/repost.svg b/src/img/icons/custom/repost.svg index f3620b1d..e759385d 100644 --- a/src/img/icons/custom/repost.svg +++ b/src/img/icons/custom/repost.svg @@ -1 +1 @@ - + diff --git a/src/js/templates/icons/inboxIcon.template.js b/src/js/templates/icons/inboxIcon.template.js index b9adaef8..2a7c12f7 100644 --- a/src/js/templates/icons/inboxIcon.template.js +++ b/src/js/templates/icons/inboxIcon.template.js @@ -11,10 +11,18 @@ export function inboxIconTemplate() { fill="none" > + `; diff --git a/src/js/templates/icons/messagePlusIcon.template.js b/src/js/templates/icons/messagePlusIcon.template.js index 9d8c9eea..97e939ac 100644 --- a/src/js/templates/icons/messagePlusIcon.template.js +++ b/src/js/templates/icons/messagePlusIcon.template.js @@ -11,10 +11,18 @@ export function messagePlusIconTemplate() { fill="none" > + `; diff --git a/src/js/templates/icons/replyIcon.template.js b/src/js/templates/icons/replyIcon.template.js index 5ab7cba5..397ecee4 100644 --- a/src/js/templates/icons/replyIcon.template.js +++ b/src/js/templates/icons/replyIcon.template.js @@ -1,16 +1,21 @@ import { html } from "/js/lib/lit-html.js"; +// Source: src/img/icons/custom/reply.svg export function replyIconTemplate() { return html` `; } diff --git a/src/js/templates/icons/repostIcon.template.js b/src/js/templates/icons/repostIcon.template.js index bd5fe3a2..97e98f0c 100644 --- a/src/js/templates/icons/repostIcon.template.js +++ b/src/js/templates/icons/repostIcon.template.js @@ -1,16 +1,28 @@ import { html } from "/js/lib/lit-html.js"; +// Source: src/img/icons/custom/repost.svg export function repostIconTemplate() { return html` + `; } -- 2.51.2