diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-03-20 12:49:58 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-03-20 15:50:52 -0700 |
commit | 8862fbaf4dc872da1ce9e4193d977a535d8a0159 (patch) | |
tree | 75cba297e8ae9f57b4379d9f14f1badee350d56b /core/img | |
parent | 4816542ab2813e6142fe6e8839938a6298e332db (diff) | |
download | nextcloud-server-8862fbaf4dc872da1ce9e4193d977a535d8a0159.tar.gz nextcloud-server-8862fbaf4dc872da1ce9e4193d977a535d8a0159.zip |
fix: Use default grey for text as background-image url svgs do not support CSS variables
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/img')
-rw-r--r-- | core/img/filetypes/text.svg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/img/filetypes/text.svg b/core/img/filetypes/text.svg index 5dbb85462fd..1b2345a3b55 100644 --- a/core/img/filetypes/text.svg +++ b/core/img/filetypes/text.svg @@ -1,5 +1,5 @@ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000"> <path d="M0 0h24v24H0z" fill="none" /> - <path fill="var(--color-text-maxcontrast)" + <path fill="#969696" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" /> </svg> |