From 417d1827ed89fc9316e6f5e391346ee2f93f4545 Mon Sep 17 00:00:00 2001 From: Aspectis <tobias@aspectis.net> Date: Fri, 19 Feb 2021 19:41:31 +0100 Subject: [PATCH] refs #19080 [fid_bbi] add favicon * add white background to favicons - Improving visibility on dark backgrounds. --- themes/fid_bbi/images/favicon-16x16.png | Bin 0 -> 191 bytes themes/fid_bbi/images/favicon-32x32.png | Bin 0 -> 359 bytes themes/fid_bbi/templates/html-head.phtml | 9 +++------ 3 files changed, 3 insertions(+), 6 deletions(-) create mode 100644 themes/fid_bbi/images/favicon-16x16.png create mode 100644 themes/fid_bbi/images/favicon-32x32.png diff --git a/themes/fid_bbi/images/favicon-16x16.png b/themes/fid_bbi/images/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..c60515d57c72c1c5d31bf4d4fc3ee59311cf8c91 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wBx*Bp9q_EZ7UA+B{txLnJOI|KMlb{p{Ti<}?F` zAL-HCW$rbp6#Tu^b0>JWAk+U>-$W|^ISKvP{l575x!)R0<=^jGHYgQ*xYiu2!L(b> z=EiPe-v`&KR2t8^_np1pqI02k^W%G$HhVDLv)1#A`NQpbp!DjJXaVm9Og!4}_3FA+ qKCJ(J?C;6{|CN7#yZGsK03$>E$!B}k%RUD=kHOQ`&t;ucLK6V(gH$L0 literal 0 HcmV?d00001 diff --git a/themes/fid_bbi/images/favicon-32x32.png b/themes/fid_bbi/images/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..c2655aca2820a146e9fd94a1ace8cfe4f87d2ca2 GIT binary patch literal 359 zcmV-t0hs=YP)<h;3K|Lk000e1NJLTq001BW001Be00000RuLsA0003lNkl<ZILn37 z%}N4s6a{c!us3MyBLo>Pqgu3V5!fRnTFwW~$4x9@Xi7&A7a2oEmV@X_phGy`|7n}y zozC){-|`f&nfTHhXTOWW=ANFOEk|^oN?=vJ+fkSud<lSSOQRHV)t7)ihgtJl^R57H zKEW1M9w30A{*7p0mLUQAqus0o#a1i=09I(ny*ywu!O8*3{Rd13Oz;*m2<A+PhBB}f z6O@w!zyvg9;D8BecO)?Dg9&)QkicLHCSYBZfTNHc`zcN&U;#QMx5l9iruPIyd+Y5W z?xK+q!WwNqtv!s!L#E!Nmk7Y+YpnM}=)&!7YZPX67cb8u(9&u`Fq8naqyE*3Y0-fI z8oQ1HQ#%zw0|2`wB#`;~8@N0c0id3=poAO%VDkE>_yKE&%O3q~G=TsB002ovPDHLk FV1lI8ld=E+ literal 0 HcmV?d00001 diff --git a/themes/fid_bbi/templates/html-head.phtml b/themes/fid_bbi/templates/html-head.phtml index 46ccbaeec5c..d1654f30fea 100644 --- a/themes/fid_bbi/templates/html-head.phtml +++ b/themes/fid_bbi/templates/html-head.phtml @@ -13,6 +13,9 @@ <?=$this->headMeta()?> <?=$this->headTitle()?> + <link rel="icon" type="image/png" sizes="16x16" href="<?=$this->imageLink('favicon-16x16.png')?>"> + <link rel="icon" type="image/png" sizes="32x32" href="<?=$this->imageLink('favicon-32x32.png')?>"> + <?php // Set up OpenSearch link $this->headLink( @@ -25,12 +28,6 @@ ); ?> - <?php - if ($this->layout()->rtl) { - // $this->headLink()->appendStylesheet('vendor/bootstrap-rtl.min.css'); - } - ?> - <?=$this->headLink()?> <?php -- GitLab