diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-28 11:30:36 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-28 18:12:29 +0200 |
commit | 5e8a3eb66c312e46e35824ada4bb4e4642279912 (patch) | |
tree | f5ad8f026c72cecd47ca56ef3baf709623ee73ff /core/templates | |
parent | 7c5bb555e72dc2ebe285d46776dba735a4005a3f (diff) | |
download | nextcloud-server-5e8a3eb66c312e46e35824ada4bb4e4642279912.tar.gz nextcloud-server-5e8a3eb66c312e46e35824ada4bb4e4642279912.zip |
Fix header apps icons
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 4efe072a5bb..40fd13a1000 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -109,7 +109,7 @@ $getUserAvatar = static function (int $size) use ($_): string { <?php if (isset($entry['target']) && $entry['target']): ?> target="_blank" rel="noreferrer noopener"<?php endif; ?> <?php if ($entry['active']): ?> class="active"<?php endif; ?> aria-label="<?php p($entry['name']); ?>"> - <svg width="20" height="20" viewBox="0 0 20 20" alt=""<?php if ($entry['unread'] !== 0) { ?> class="has-unread"<?php } ?>> + <svg width="20" height="20" viewBox="0 0 16 16" alt=""<?php if ($entry['unread'] !== 0) { ?> class="has-unread"<?php } ?>> <defs> <filter id="invertMenuMore-<?php p($entry['id']); ?>"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"></feColorMatrix></filter> <mask id="hole"> |