diff options
author | maprambo <matthes@Matthes-MacBook.local> | 2015-11-02 19:23:35 +0100 |
---|---|---|
committer | maprambo <matthes@Matthes-MacBook.local> | 2015-11-04 19:31:17 +0100 |
commit | edb1fee610490907302930b3af574e9e522eb0ee (patch) | |
tree | a4db8c4ba782a7b32efa2dc9c6772e837b939967 /core/templates | |
parent | 44f4de1526640b195b543805c5052ef62987d81c (diff) | |
download | nextcloud-server-edb1fee610490907302930b3af574e9e522eb0ee.tar.gz nextcloud-server-edb1fee610490907302930b3af574e9e522eb0ee.zip |
Added Safari tabbed pin icon
Added the necessary code and a black and inverted version of the favicon/ touch icon in svg format
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.base.php | 1 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 1 | ||||
-rw-r--r-- | core/templates/layout.user.php | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index b01820a05bb..c635eb09a60 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -13,6 +13,7 @@ <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.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"> <?php foreach ($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen"> <?php endforeach; ?> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 56b762d3266..15535b8fada 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -14,6 +14,7 @@ <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.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"> <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen"> <?php endforeach; ?> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3ffbdd068e2..07fa1451d80 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -25,6 +25,7 @@ <meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>"> <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>"> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>"> + <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="#1d2d44"> <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen"> <?php endforeach; ?> |