diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-04 10:25:53 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-09 10:41:18 -0700 |
commit | 893da9c395a5187131f35ca806de70a6d647f187 (patch) | |
tree | 7a01180dfc5f366aadc4faa6a851b5e037489efd /apps | |
parent | 0b15feec7ff5e89acee3d918a38e32387fe2f1ce (diff) | |
download | nextcloud-server-893da9c395a5187131f35ca806de70a6d647f187.tar.gz nextcloud-server-893da9c395a5187131f35ca806de70a6d647f187.zip |
enh: use alarm icon
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/fileactions.js | 2 | ||||
-rw-r--r-- | apps/files_reminders/img/alarm.svg | 5 | ||||
-rw-r--r-- | apps/files_reminders/img/remind.svg | 5 |
3 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index ad4e599c98e..c19440b8209 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -719,7 +719,7 @@ mime: 'all', order: -24, icon: function(_filename, _context) { - return OC.imagePath('files_reminders', 'remind.svg') + return OC.imagePath('files_reminders', 'alarm.svg') }, permissions: OC.PERMISSION_READ, actionHandler: function(_filename, _context) {}, diff --git a/apps/files_reminders/img/alarm.svg b/apps/files_reminders/img/alarm.svg new file mode 100644 index 00000000000..0adc3547203 --- /dev/null +++ b/apps/files_reminders/img/alarm.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"> + <path d="M0 0h24v24H0V0z" fill="none" /> + <path + d="M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" /> +</svg> diff --git a/apps/files_reminders/img/remind.svg b/apps/files_reminders/img/remind.svg deleted file mode 100644 index 23e2d456813..00000000000 --- a/apps/files_reminders/img/remind.svg +++ /dev/null @@ -1,5 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"> - <path d="M0 0h24v24H0V0z" fill="none" /> - <path - d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" /> -</svg> |