diff options
author | Luka Trovic <luka@nextcloud.com> | 2022-06-03 16:07:37 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-06-07 21:54:27 +0200 |
commit | 4404ed649de30f759515b073b5e9bed520403698 (patch) | |
tree | 071a2b72fcacb6aedb4a9724b1d3868ae6d4ede1 | |
parent | 0858d3d51478bf9d16aac56106fd6ffeab022f69 (diff) | |
download | nextcloud-server-4404ed649de30f759515b073b5e9bed520403698.tar.gz nextcloud-server-4404ed649de30f759515b073b5e9bed520403698.zip |
feat: add x-office-form-template and x-office-form icons
Signed-off-by: Luka Trovic <luka@nextcloud.com>
-rw-r--r-- | core/img/filetypes/x-office-form-template.svg | 5 | ||||
-rw-r--r-- | core/img/filetypes/x-office-form.svg | 5 | ||||
-rw-r--r-- | core/js/mimetypelist.js | 2 |
3 files changed, 12 insertions, 0 deletions
diff --git a/core/img/filetypes/x-office-form-template.svg b/core/img/filetypes/x-office-form-template.svg new file mode 100644 index 00000000000..cc8ba8f13ea --- /dev/null +++ b/core/img/filetypes/x-office-form-template.svg @@ -0,0 +1,5 @@ +<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M2.5 1C2.22 1 2 1.22 2 1.5V14.5C2 14.78 2.22 15 2.5 15H13.5C13.78 15 14 14.78 14 14.5V4L11 1H2.5Z" fill="#27ABA3"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M12 6H4V9H12V6ZM11 7H5V8H11V7Z" fill="white"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10H4V13H12V10ZM11 11H5V12H11V11Z" fill="white"/> +</svg> diff --git a/core/img/filetypes/x-office-form.svg b/core/img/filetypes/x-office-form.svg new file mode 100644 index 00000000000..5defac8920b --- /dev/null +++ b/core/img/filetypes/x-office-form.svg @@ -0,0 +1,5 @@ +<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M2.5 1C2.22 1 2 1.22 2 1.5V14.5C2 14.78 2.22 15 2.5 15H13.5C13.78 15 14 14.78 14 14.5V4L11 1H2.5Z" fill="#188079"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M12 6H4V12H12V6ZM3 5V13H13V5H3Z" fill="white" fill-opacity="0.95"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7V8L7 8V10H8V11H5V10H6V8L5 8V7H8Z" fill="white"/> +</svg> diff --git a/core/js/mimetypelist.js b/core/js/mimetypelist.js index 11adeeec8fc..d861695c0ac 100644 --- a/core/js/mimetypelist.js +++ b/core/js/mimetypelist.js @@ -139,6 +139,8 @@ OC.MimeTypeList={ "video", "x-office-document", "x-office-drawing", + "x-office-form", + "x-office-form-template", "x-office-presentation", "x-office-spreadsheet" ], |