diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-03-27 15:45:56 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-03-27 15:45:56 +0200 |
commit | ea517b489fada272d23fabd95c65e9893c8e69fe (patch) | |
tree | 5f1327cf59e0edabf2473bfafb1ddcbd0d754f4a /core/templates/layout.base.php | |
parent | d9ebc2626f0a56cecbc68da4e29c35bb36f62222 (diff) | |
download | nextcloud-server-ea517b489fada272d23fabd95c65e9893c8e69fe.tar.gz nextcloud-server-ea517b489fada272d23fabd95c65e9893c8e69fe.zip |
use theming colors for favicon on macOS
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/templates/layout.base.php')
-rw-r--r-- | core/templates/layout.base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index d6d70f31362..8f376619a1e 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,7 +11,7 @@ <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> <link rel="icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>"> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>"> - <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="#1d2d44"> + <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="<?php p($theme->getMailHeaderColor()); ?>"> <?php foreach ($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>"> <?php endforeach; ?> |