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:
authorLukas Winkler <Findus23@users.noreply.github.com>2017-01-21 20:36:20 +0300
committerStefan Giehl <stefan@piwik.org>2017-01-21 20:36:20 +0300
commitc3af0a14f1358276c2ac2f087e2b21cc23515e7c (patch)
treeeeaa1962d7bfc1b5152c4f67c06ed9b6f74d9f52 /plugins/CoreHome/DataTableRowAction/RowEvolution.php
parent8184d554f97b37f93b97c246928a2d92c5b21b6f (diff)
fixed icon size in Row Evolution popup (#11247)
Diffstat (limited to 'plugins/CoreHome/DataTableRowAction/RowEvolution.php')
-rw-r--r--plugins/CoreHome/DataTableRowAction/RowEvolution.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/DataTableRowAction/RowEvolution.php b/plugins/CoreHome/DataTableRowAction/RowEvolution.php
index 2e3632d69e..e7e46820f5 100644
--- a/plugins/CoreHome/DataTableRowAction/RowEvolution.php
+++ b/plugins/CoreHome/DataTableRowAction/RowEvolution.php
@@ -130,7 +130,7 @@ class RowEvolution
$metricsText = Piwik::translate('RowEvolution_AvailableMetrics');
$popoverTitle = '';
if ($this->rowLabel) {
- $icon = $this->rowIcon ? '<img src="' . $this->rowIcon . '" alt="">' : '';
+ $icon = $this->rowIcon ? '<img width="16px" height="16px" src="' . $this->rowIcon . '" alt="">' : '';
$metricsText = sprintf(Piwik::translate('RowEvolution_MetricsFor'), $this->dimension . ': ' . $icon . ' ' . $this->rowLabel);
$popoverTitle = $icon . ' ' . $this->rowLabel;
}