diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-10 15:33:27 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-10 15:33:27 +0000 |
commit | 0f7e32107811195d16593db28b1d8859890b62f1 (patch) | |
tree | af764ad51c2397aaaf03d8f5294daf13dd797779 | |
parent | 6d0eba75e92898c8308a8ed0892d49bd515c45b3 (diff) | |
download | redmine-0f7e32107811195d16593db28b1d8859890b62f1.tar.gz redmine-0f7e32107811195d16593db28b1d8859890b62f1.zip |
Fixes missing key icon SVG on Change password button (#23980, #41724).
Patch by Katsuya HIDAKA (user:hidakatsuya).
git-svn-id: https://svn.redmine.org/redmine/trunk@23231 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/images/icons.svg | 4 | ||||
-rw-r--r-- | config/icon_source.yml | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/images/icons.svg b/app/assets/images/icons.svg index c94249ba8..84d68904a 100644 --- a/app/assets/images/icons.svg +++ b/app/assets/images/icons.svg @@ -247,6 +247,10 @@ <path d="M16 19h6"/> <path d="M19 16v6"/> </symbol> + <symbol viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" id="icon--key"> + <path d="M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z"/> + <path d="M15 9h.01"/> + </symbol> <symbol viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" id="icon--link"> <path d="M9 15l6 -6"/> <path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464"/> diff --git a/config/icon_source.yml b/config/icon_source.yml index 05d024718..a97b4bcb9 100644 --- a/config/icon_source.yml +++ b/config/icon_source.yml @@ -195,3 +195,5 @@ svg: chevrons-right - name: chevrons-left svg: chevrons-left +- name: key + svg: key |