Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@piwik.org>2017-01-05 16:46:10 +0300
committerGitHub <noreply@github.com>2017-01-05 16:46:10 +0300
commit57e33fffc158ad086c6bf7c8fc5ce5e0a6263bb2 (patch)
tree30076ff6dd3e0a55e1ec158e46adccef09ab32b7 /plugins/DevicesDetection/functions.php
parente0ea5d928a31a0baf14eff6c81bec442da20ebb7 (diff)
Improves various icons (#11148)
* updated browser and os icons (#11063) * updated browser-icons from https://github.com/Findus23/device-icons 72d5ffef94a597c4ba226b33344e0badaadc3c35 * added os icons * added previous icons * changed macOS icon * replaced optipng with pngquant (36% size reduction) * center icons vertically * sharpen icons * increased icon size to 48x48 * fixed visitorPopup and realtimemap * revert css change * fixed HTML-Reports * replaced Windows icon https://github.com/piwik/piwik/pull/11063#issuecomment-270221316 * max-width and max-height for datatables * removed submodul (sorry wrong commit) * add explicit max-size for dataTableRowActions * fixed UNK.png * first try at fixing system tests * fixed cookie.gif * updates icons in System tests * updated plugin icons (#11121) * updated plugin icons * increased icon size to 48x48 * updated searchEngine and social icons (#11093) * updated and added searchEngine and social icons * removed unnecessary icons * sharpen icons * increased icon size to 48x48 * fixed promovideo socialicons http://builds-artifacts.piwik.org/piwik/piwik/3.x-dev/21859/UIIntegrationTest_dashboard1.png * fixed xx.png * updates plugin icons in system tests * [tests] RockMelt has it's own icon * updates expected UI test files * submodule update * fix some last tests
Diffstat (limited to 'plugins/DevicesDetection/functions.php')
-rw-r--r--plugins/DevicesDetection/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DevicesDetection/functions.php b/plugins/DevicesDetection/functions.php
index e7ef1fe893..4f59edc8a9 100644
--- a/plugins/DevicesDetection/functions.php
+++ b/plugins/DevicesDetection/functions.php
@@ -80,7 +80,7 @@ function getBrowserName($label)
*/
function getBrowserLogo($short)
{
- $path = 'plugins/DevicesDetection/images/browsers/%s.gif';
+ $path = 'plugins/DevicesDetection/images/browsers/%s.png';
// If name is given instead of short code, try to find matching shortcode
if (strlen($short) > 2) {
@@ -282,7 +282,7 @@ function _mapLegacyOsShortCodes($shortCode)
*/
function getOsLogo($short)
{
- $path = 'plugins/DevicesDetection/images/os/%s.gif';
+ $path = 'plugins/DevicesDetection/images/os/%s.png';
$short = _mapLegacyOsShortCodes($short);