From 75e9f2a0e8bcf79ca7c02d5b6f66d8fe199a40d2 Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Mon, 14 Apr 2025 17:30:21 +0200 Subject: [PATCH] Replace the info icon in the undo bar by the right one (bug 1960523) --- gulpfile.mjs | 1 - web/images/messageBar_info.svg | 3 +++ web/message_bar.css | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 web/images/messageBar_info.svg diff --git a/gulpfile.mjs b/gulpfile.mjs index a99a104bc..60e0c3601 100644 --- a/gulpfile.mjs +++ b/gulpfile.mjs @@ -1170,7 +1170,6 @@ function buildComponents(defines, dir) { "web/images/messageBar_*.svg", "web/images/toolbarButton-{editorHighlight,menuArrow}.svg", "web/images/cursor-*.svg", - "web/images/secondaryToolbarButton-documentProperties.svg", ]; return ordered([ diff --git a/web/images/messageBar_info.svg b/web/images/messageBar_info.svg new file mode 100644 index 000000000..b12b6be4a --- /dev/null +++ b/web/images/messageBar_info.svg @@ -0,0 +1,3 @@ + + + diff --git a/web/message_bar.css b/web/message_bar.css index 000a75ed8..d82b2970b 100644 --- a/web/message_bar.css +++ b/web/message_bar.css @@ -129,7 +129,7 @@ #editorUndoBar { --text-primary-color: #15141a; - --message-bar-icon: url(images/secondaryToolbarButton-documentProperties.svg); + --message-bar-icon: url(images/messageBar_info.svg); --message-bar-icon-color: #0060df; --message-bar-bg-color: #deeafc; --message-bar-fg-color: var(--text-primary-color);